blob: 1ccc308d5f6641115210919a0ae5f48646634246 [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
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008 * chip. When an event is received, it is mapped to an irq and sent
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07009 * 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
Joe Perches283c0972013-06-28 03:21:41 -070024#define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
25
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070026#include <linux/linkage.h>
27#include <linux/interrupt.h>
28#include <linux/irq.h>
Paul Gortmaker59aa56b2016-02-21 19:06:04 -050029#include <linux/moduleparam.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070030#include <linux/string.h>
Christophe Saout28e08862009-01-11 11:46:23 -080031#include <linux/bootmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -040033#include <linux/irqnr.h>
Qing Hef731e3ef2010-10-11 15:30:09 +010034#include <linux/pci.h>
Juergen Gross61d359d2020-09-07 15:47:27 +020035#include <linux/spinlock.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070036
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000037#ifdef CONFIG_X86
Sheng Yang38e20b02010-05-14 12:40:51 +010038#include <asm/desc.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070039#include <asm/ptrace.h>
40#include <asm/irq.h>
Konrad Rzeszutek Wilk0794bfc2010-10-18 10:41:08 -040041#include <asm/io_apic.h>
Boris Ostrovskyb4ff8382015-11-20 11:25:04 -050042#include <asm/i8259.h>
Stefano Stabellini42a1de52010-06-24 16:42:04 +010043#include <asm/xen/pci.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000044#endif
45#include <asm/sync_bitops.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070046#include <asm/xen/hypercall.h>
Adrian Bunk8d1b8752007-07-20 00:31:44 -070047#include <asm/xen/hypervisor.h>
Julien Gralla001c9d2015-05-05 16:37:30 +010048#include <xen/page.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070049
Sheng Yang38e20b02010-05-14 12:40:51 +010050#include <xen/xen.h>
51#include <xen/hvm.h>
Isaku Yamahatae04d0d02008-04-02 10:53:55 -070052#include <xen/xen-ops.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070053#include <xen/events.h>
54#include <xen/interface/xen.h>
55#include <xen/interface/event_channel.h>
Sheng Yang38e20b02010-05-14 12:40:51 +010056#include <xen/interface/hvm/hvm_op.h>
57#include <xen/interface/hvm/params.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000058#include <xen/interface/physdev.h>
59#include <xen/interface/sched.h>
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -040060#include <xen/interface/vcpu.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000061#include <asm/hw_irq.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070062
David Vrabel9a489f42013-03-13 15:29:25 +000063#include "events_internal.h"
64
David Vrabelab9a1cc2013-03-14 12:49:19 +000065const struct evtchn_ops *evtchn_ops;
66
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070067/*
68 * This lock protects updates to the following mapping and reference-count
69 * arrays. The lock does not need to be acquired to read the mapping tables.
70 */
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -040071static DEFINE_MUTEX(irq_mapping_update_lock);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070072
Juergen Gross61d359d2020-09-07 15:47:27 +020073/*
74 * Lock protecting event handling loop against removing event channels.
75 * Adding of event channels is no issue as the associated IRQ becomes active
76 * only after everything is setup (before request_[threaded_]irq() the handler
77 * can't be entered for an event, as the event channel will be unmasked only
78 * then).
79 */
80static DEFINE_RWLOCK(evtchn_rwlock);
81
82/*
83 * Lock hierarchy:
84 *
85 * irq_mapping_update_lock
86 * evtchn_rwlock
87 * IRQ-desc lock
88 */
89
Ian Campbell6cb65372011-03-10 16:08:11 +000090static LIST_HEAD(xen_irq_list_head);
91
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070092/* IRQ <-> VIRQ mapping. */
Tejun Heo204fba42009-06-24 15:13:45 +090093static DEFINE_PER_CPU(int [NR_VIRQS], virq_to_irq) = {[0 ... NR_VIRQS-1] = -1};
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070094
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070095/* IRQ <-> IPI mapping */
Tejun Heo204fba42009-06-24 15:13:45 +090096static DEFINE_PER_CPU(int [XEN_NR_IPIS], ipi_to_irq) = {[0 ... XEN_NR_IPIS-1] = -1};
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070097
David Vrabeld0b075f2013-10-17 15:23:15 +010098int **evtchn_to_irq;
Ian Campbellbf86ad82012-10-17 09:39:12 +010099#ifdef CONFIG_X86
Stefano Stabellini9846ff12012-01-30 16:21:48 +0000100static unsigned long *pirq_eoi_map;
Ian Campbellbf86ad82012-10-17 09:39:12 +0100101#endif
Stefano Stabellini9846ff12012-01-30 16:21:48 +0000102static bool (*pirq_needs_eoi)(unsigned irq);
Jeremy Fitzhardinge3b32f572009-08-13 12:50:37 -0700103
David Vrabeld0b075f2013-10-17 15:23:15 +0100104#define EVTCHN_ROW(e) (e / (PAGE_SIZE/sizeof(**evtchn_to_irq)))
105#define EVTCHN_COL(e) (e % (PAGE_SIZE/sizeof(**evtchn_to_irq)))
106#define EVTCHN_PER_ROW (PAGE_SIZE / sizeof(**evtchn_to_irq))
107
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700108/* Xen will never allocate port zero for any purpose. */
109#define VALID_EVTCHN(chn) ((chn) != 0)
110
Juergen Gross82856cd2020-09-30 11:16:14 +0200111static struct irq_info *legacy_info_ptrs[NR_IRQS_LEGACY];
112
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700113static struct irq_chip xen_dynamic_chip;
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -0700114static struct irq_chip xen_percpu_chip;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400115static struct irq_chip xen_pirq_chip;
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100116static void enable_dynirq(struct irq_data *data);
117static void disable_dynirq(struct irq_data *data);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700118
David Vrabeld0b075f2013-10-17 15:23:15 +0100119static void clear_evtchn_to_irq_row(unsigned row)
120{
121 unsigned col;
122
123 for (col = 0; col < EVTCHN_PER_ROW; col++)
Juergen Gross61d359d2020-09-07 15:47:27 +0200124 WRITE_ONCE(evtchn_to_irq[row][col], -1);
David Vrabeld0b075f2013-10-17 15:23:15 +0100125}
126
127static void clear_evtchn_to_irq_all(void)
128{
129 unsigned row;
130
131 for (row = 0; row < EVTCHN_ROW(xen_evtchn_max_channels()); row++) {
132 if (evtchn_to_irq[row] == NULL)
133 continue;
134 clear_evtchn_to_irq_row(row);
135 }
136}
137
138static int set_evtchn_to_irq(unsigned evtchn, unsigned irq)
139{
140 unsigned row;
141 unsigned col;
142
143 if (evtchn >= xen_evtchn_max_channels())
144 return -EINVAL;
145
146 row = EVTCHN_ROW(evtchn);
147 col = EVTCHN_COL(evtchn);
148
149 if (evtchn_to_irq[row] == NULL) {
150 /* Unallocated irq entries return -1 anyway */
151 if (irq == -1)
152 return 0;
153
154 evtchn_to_irq[row] = (int *)get_zeroed_page(GFP_KERNEL);
155 if (evtchn_to_irq[row] == NULL)
156 return -ENOMEM;
157
158 clear_evtchn_to_irq_row(row);
159 }
160
Juergen Gross61d359d2020-09-07 15:47:27 +0200161 WRITE_ONCE(evtchn_to_irq[row][col], irq);
David Vrabeld0b075f2013-10-17 15:23:15 +0100162 return 0;
163}
164
165int get_evtchn_to_irq(unsigned evtchn)
166{
167 if (evtchn >= xen_evtchn_max_channels())
168 return -1;
169 if (evtchn_to_irq[EVTCHN_ROW(evtchn)] == NULL)
170 return -1;
Juergen Gross61d359d2020-09-07 15:47:27 +0200171 return READ_ONCE(evtchn_to_irq[EVTCHN_ROW(evtchn)][EVTCHN_COL(evtchn)]);
David Vrabeld0b075f2013-10-17 15:23:15 +0100172}
173
Ian Campbell9158c352011-03-10 16:08:09 +0000174/* Get info for IRQ */
David Vrabel9a489f42013-03-13 15:29:25 +0000175struct irq_info *info_for_irq(unsigned irq)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700176{
Juergen Gross82856cd2020-09-30 11:16:14 +0200177 if (irq < nr_legacy_irqs())
178 return legacy_info_ptrs[irq];
179 else
180 return irq_get_chip_data(irq);
181}
182
183static void set_info_for_irq(unsigned int irq, struct irq_info *info)
184{
185 if (irq < nr_legacy_irqs())
186 legacy_info_ptrs[irq] = info;
187 else
188 irq_set_chip_data(irq, info);
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800189}
190
Ian Campbell9158c352011-03-10 16:08:09 +0000191/* Constructors for packed IRQ information. */
David Vrabel96d4c5882013-03-18 15:50:17 +0000192static int xen_irq_info_common_setup(struct irq_info *info,
Ian Campbell3d4cfa32011-03-10 16:08:10 +0000193 unsigned irq,
Ian Campbell9158c352011-03-10 16:08:09 +0000194 enum xen_irq_type type,
David Vrabeld0b075f2013-10-17 15:23:15 +0100195 unsigned evtchn,
Ian Campbell9158c352011-03-10 16:08:09 +0000196 unsigned short cpu)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800197{
David Vrabeld0b075f2013-10-17 15:23:15 +0100198 int ret;
Ian Campbell9158c352011-03-10 16:08:09 +0000199
200 BUG_ON(info->type != IRQT_UNBOUND && info->type != type);
201
202 info->type = type;
Ian Campbell6cb65372011-03-10 16:08:11 +0000203 info->irq = irq;
Ian Campbell9158c352011-03-10 16:08:09 +0000204 info->evtchn = evtchn;
205 info->cpu = cpu;
Ian Campbell3d4cfa32011-03-10 16:08:10 +0000206
David Vrabeld0b075f2013-10-17 15:23:15 +0100207 ret = set_evtchn_to_irq(evtchn, irq);
208 if (ret < 0)
209 return ret;
Julien Grall934f5852013-04-30 18:29:13 +0100210
211 irq_clear_status_flags(irq, IRQ_NOREQUEST|IRQ_NOAUTOEN);
David Vrabel96d4c5882013-03-18 15:50:17 +0000212
David Vrabel08385872013-03-18 16:54:57 +0000213 return xen_evtchn_port_setup(info);
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800214}
215
David Vrabel96d4c5882013-03-18 15:50:17 +0000216static int xen_irq_info_evtchn_setup(unsigned irq,
David Vrabeld0b075f2013-10-17 15:23:15 +0100217 unsigned evtchn)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800218{
Ian Campbell9158c352011-03-10 16:08:09 +0000219 struct irq_info *info = info_for_irq(irq);
220
David Vrabel96d4c5882013-03-18 15:50:17 +0000221 return xen_irq_info_common_setup(info, irq, IRQT_EVTCHN, evtchn, 0);
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800222}
223
David Vrabel96d4c5882013-03-18 15:50:17 +0000224static int xen_irq_info_ipi_setup(unsigned cpu,
Ian Campbell3d4cfa32011-03-10 16:08:10 +0000225 unsigned irq,
David Vrabeld0b075f2013-10-17 15:23:15 +0100226 unsigned evtchn,
Ian Campbell9158c352011-03-10 16:08:09 +0000227 enum ipi_vector ipi)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800228{
Ian Campbell9158c352011-03-10 16:08:09 +0000229 struct irq_info *info = info_for_irq(irq);
230
Ian Campbell9158c352011-03-10 16:08:09 +0000231 info->u.ipi = ipi;
Ian Campbell3d4cfa32011-03-10 16:08:10 +0000232
233 per_cpu(ipi_to_irq, cpu)[ipi] = irq;
David Vrabel96d4c5882013-03-18 15:50:17 +0000234
235 return xen_irq_info_common_setup(info, irq, IRQT_IPI, evtchn, 0);
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800236}
237
David Vrabel96d4c5882013-03-18 15:50:17 +0000238static int xen_irq_info_virq_setup(unsigned cpu,
Ian Campbell3d4cfa32011-03-10 16:08:10 +0000239 unsigned irq,
David Vrabeld0b075f2013-10-17 15:23:15 +0100240 unsigned evtchn,
241 unsigned virq)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800242{
Ian Campbell9158c352011-03-10 16:08:09 +0000243 struct irq_info *info = info_for_irq(irq);
244
Ian Campbell9158c352011-03-10 16:08:09 +0000245 info->u.virq = virq;
Ian Campbell3d4cfa32011-03-10 16:08:10 +0000246
247 per_cpu(virq_to_irq, cpu)[virq] = irq;
David Vrabel96d4c5882013-03-18 15:50:17 +0000248
249 return xen_irq_info_common_setup(info, irq, IRQT_VIRQ, evtchn, 0);
Ian Campbell9158c352011-03-10 16:08:09 +0000250}
251
David Vrabel96d4c5882013-03-18 15:50:17 +0000252static int xen_irq_info_pirq_setup(unsigned irq,
David Vrabeld0b075f2013-10-17 15:23:15 +0100253 unsigned evtchn,
254 unsigned pirq,
255 unsigned gsi,
Konrad Rzeszutek Wilkbeafbdc2011-04-14 11:17:36 -0400256 uint16_t domid,
Ian Campbell9158c352011-03-10 16:08:09 +0000257 unsigned char flags)
258{
259 struct irq_info *info = info_for_irq(irq);
260
Ian Campbell9158c352011-03-10 16:08:09 +0000261 info->u.pirq.pirq = pirq;
262 info->u.pirq.gsi = gsi;
Konrad Rzeszutek Wilkbeafbdc2011-04-14 11:17:36 -0400263 info->u.pirq.domid = domid;
Ian Campbell9158c352011-03-10 16:08:09 +0000264 info->u.pirq.flags = flags;
David Vrabel96d4c5882013-03-18 15:50:17 +0000265
266 return xen_irq_info_common_setup(info, irq, IRQT_PIRQ, evtchn, 0);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700267}
268
David Vrabeld0b075f2013-10-17 15:23:15 +0100269static void xen_irq_info_cleanup(struct irq_info *info)
270{
271 set_evtchn_to_irq(info->evtchn, -1);
272 info->evtchn = 0;
273}
274
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700275/*
276 * Accessors for packed IRQ information.
277 */
David Vrabel9a489f42013-03-13 15:29:25 +0000278unsigned int evtchn_from_irq(unsigned irq)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700279{
Juergen Gross61d359d2020-09-07 15:47:27 +0200280 const struct irq_info *info = NULL;
281
282 if (likely(irq < nr_irqs))
283 info = info_for_irq(irq);
284 if (!info)
Joe Jin110e7c72011-01-07 14:50:12 +0800285 return 0;
286
Juergen Gross61d359d2020-09-07 15:47:27 +0200287 return info->evtchn;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700288}
289
Ian Campbelld4c04532009-02-06 19:20:31 -0800290unsigned irq_from_evtchn(unsigned int evtchn)
291{
David Vrabeld0b075f2013-10-17 15:23:15 +0100292 return get_evtchn_to_irq(evtchn);
Ian Campbelld4c04532009-02-06 19:20:31 -0800293}
294EXPORT_SYMBOL_GPL(irq_from_evtchn);
295
David Vrabel9a489f42013-03-13 15:29:25 +0000296int irq_from_virq(unsigned int cpu, unsigned int virq)
297{
298 return per_cpu(virq_to_irq, cpu)[virq];
299}
300
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800301static enum ipi_vector ipi_from_irq(unsigned irq)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700302{
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800303 struct irq_info *info = info_for_irq(irq);
304
305 BUG_ON(info == NULL);
306 BUG_ON(info->type != IRQT_IPI);
307
308 return info->u.ipi;
309}
310
311static unsigned virq_from_irq(unsigned irq)
312{
313 struct irq_info *info = info_for_irq(irq);
314
315 BUG_ON(info == NULL);
316 BUG_ON(info->type != IRQT_VIRQ);
317
318 return info->u.virq;
319}
320
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100321static unsigned pirq_from_irq(unsigned irq)
322{
323 struct irq_info *info = info_for_irq(irq);
324
325 BUG_ON(info == NULL);
326 BUG_ON(info->type != IRQT_PIRQ);
327
328 return info->u.pirq.pirq;
329}
330
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800331static enum xen_irq_type type_from_irq(unsigned irq)
332{
333 return info_for_irq(irq)->type;
334}
335
David Vrabel9a489f42013-03-13 15:29:25 +0000336unsigned cpu_from_irq(unsigned irq)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800337{
338 return info_for_irq(irq)->cpu;
339}
340
David Vrabel9a489f42013-03-13 15:29:25 +0000341unsigned int cpu_from_evtchn(unsigned int evtchn)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800342{
David Vrabeld0b075f2013-10-17 15:23:15 +0100343 int irq = get_evtchn_to_irq(evtchn);
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800344 unsigned ret = 0;
345
346 if (irq != -1)
347 ret = cpu_from_irq(irq);
348
349 return ret;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700350}
351
Ian Campbellbf86ad82012-10-17 09:39:12 +0100352#ifdef CONFIG_X86
Stefano Stabellini9846ff12012-01-30 16:21:48 +0000353static bool pirq_check_eoi_map(unsigned irq)
354{
Stefano Stabellini521394e2012-04-25 16:11:38 +0100355 return test_bit(pirq_from_irq(irq), pirq_eoi_map);
Stefano Stabellini9846ff12012-01-30 16:21:48 +0000356}
Ian Campbellbf86ad82012-10-17 09:39:12 +0100357#endif
Stefano Stabellini9846ff12012-01-30 16:21:48 +0000358
359static bool pirq_needs_eoi_flag(unsigned irq)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400360{
361 struct irq_info *info = info_for_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400362 BUG_ON(info->type != IRQT_PIRQ);
363
364 return info->u.pirq.flags & PIRQ_NEEDS_EOI;
365}
366
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700367static void bind_evtchn_to_cpu(unsigned int chn, unsigned int cpu)
368{
David Vrabeld0b075f2013-10-17 15:23:15 +0100369 int irq = get_evtchn_to_irq(chn);
David Vrabel9a489f42013-03-13 15:29:25 +0000370 struct irq_info *info = info_for_irq(irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700371
372 BUG_ON(irq == -1);
373#ifdef CONFIG_SMP
Jiang Liuc149e4c2015-06-03 11:46:22 +0800374 cpumask_copy(irq_get_affinity_mask(irq), cpumask_of(cpu));
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700375#endif
David Vrabel9a489f42013-03-13 15:29:25 +0000376 xen_evtchn_port_bind_to_cpu(info, cpu);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700377
David Vrabel9a489f42013-03-13 15:29:25 +0000378 info->cpu = cpu;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700379}
380
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700381/**
382 * notify_remote_via_irq - send event to remote end of event channel via irq
383 * @irq: irq of event channel to send event to
384 *
385 * Unlike notify_remote_via_evtchn(), this is safe to use across
386 * save/restore. Notifications on a broken connection are silently
387 * dropped.
388 */
389void notify_remote_via_irq(int irq)
390{
391 int evtchn = evtchn_from_irq(irq);
392
393 if (VALID_EVTCHN(evtchn))
394 notify_remote_via_evtchn(evtchn);
395}
396EXPORT_SYMBOL_GPL(notify_remote_via_irq);
397
Ian Campbell6cb65372011-03-10 16:08:11 +0000398static void xen_irq_init(unsigned irq)
399{
400 struct irq_info *info;
Konrad Rzeszutek Wilkb5328cd2011-06-15 14:24:29 -0400401#ifdef CONFIG_SMP
Ian Campbell6cb65372011-03-10 16:08:11 +0000402 /* By default all event channels notify CPU#0. */
Jiang Liuc149e4c2015-06-03 11:46:22 +0800403 cpumask_copy(irq_get_affinity_mask(irq), cpumask_of(0));
Konrad Rzeszutek Wilk44626e42011-03-15 16:40:33 -0400404#endif
Ian Campbell6cb65372011-03-10 16:08:11 +0000405
Ian Campbellca62ce82011-03-10 16:08:12 +0000406 info = kzalloc(sizeof(*info), GFP_KERNEL);
407 if (info == NULL)
408 panic("Unable to allocate metadata for IRQ%d\n", irq);
Ian Campbell6cb65372011-03-10 16:08:11 +0000409
410 info->type = IRQT_UNBOUND;
Daniel De Graaf420eb552011-10-27 17:58:47 -0400411 info->refcnt = -1;
Ian Campbell6cb65372011-03-10 16:08:11 +0000412
Juergen Gross82856cd2020-09-30 11:16:14 +0200413 set_info_for_irq(irq, info);
Ian Campbellca62ce82011-03-10 16:08:12 +0000414
Ian Campbell6cb65372011-03-10 16:08:11 +0000415 list_add_tail(&info->list, &xen_irq_list_head);
416}
417
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100418static int __must_check xen_allocate_irqs_dynamic(int nvec)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700419{
Thomas Gleixnerd07c9f12014-05-07 15:44:10 +0000420 int i, irq = irq_alloc_descs(-1, 0, nvec, -1);
Ian Campbell89911502011-03-03 11:57:44 -0500421
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100422 if (irq >= 0) {
423 for (i = 0; i < nvec; i++)
424 xen_irq_init(irq + i);
425 }
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800426
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700427 return irq;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400428}
429
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100430static inline int __must_check xen_allocate_irq_dynamic(void)
431{
432
433 return xen_allocate_irqs_dynamic(1);
434}
435
Ian Campbell7bee9762011-03-10 16:08:15 +0000436static int __must_check xen_allocate_irq_gsi(unsigned gsi)
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000437{
438 int irq;
439
Ian Campbell89911502011-03-03 11:57:44 -0500440 /*
441 * A PV guest has no concept of a GSI (since it has no ACPI
442 * nor access to/knowledge of the physical APICs). Therefore
443 * all IRQs are dynamically allocated from the entire IRQ
444 * space.
445 */
446 if (xen_pv_domain() && !xen_initial_domain())
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000447 return xen_allocate_irq_dynamic();
448
449 /* Legacy IRQ descriptors are already allocated by the arch. */
Boris Ostrovskyb4ff8382015-11-20 11:25:04 -0500450 if (gsi < nr_legacy_irqs())
Ian Campbell6cb65372011-03-10 16:08:11 +0000451 irq = gsi;
452 else
453 irq = irq_alloc_desc_at(gsi, -1);
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000454
Ian Campbell6cb65372011-03-10 16:08:11 +0000455 xen_irq_init(irq);
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000456
457 return irq;
458}
459
460static void xen_free_irq(unsigned irq)
461{
Juergen Gross82856cd2020-09-30 11:16:14 +0200462 struct irq_info *info = info_for_irq(irq);
Juergen Gross61d359d2020-09-07 15:47:27 +0200463 unsigned long flags;
Ian Campbell6cb65372011-03-10 16:08:11 +0000464
Konrad Rzeszutek Wilk94032c52013-04-16 10:55:18 -0400465 if (WARN_ON(!info))
466 return;
467
Juergen Gross61d359d2020-09-07 15:47:27 +0200468 write_lock_irqsave(&evtchn_rwlock, flags);
469
Ian Campbell6cb65372011-03-10 16:08:11 +0000470 list_del(&info->list);
Ian Campbell9158c352011-03-10 16:08:09 +0000471
Juergen Gross82856cd2020-09-30 11:16:14 +0200472 set_info_for_irq(irq, NULL);
Ian Campbellca62ce82011-03-10 16:08:12 +0000473
Daniel De Graaf420eb552011-10-27 17:58:47 -0400474 WARN_ON(info->refcnt > 0);
475
Juergen Gross61d359d2020-09-07 15:47:27 +0200476 write_unlock_irqrestore(&evtchn_rwlock, flags);
477
Ian Campbellca62ce82011-03-10 16:08:12 +0000478 kfree(info);
479
Ian Campbell72146102011-02-03 09:49:35 +0000480 /* Legacy IRQ descriptors are managed by the arch. */
Boris Ostrovskyb4ff8382015-11-20 11:25:04 -0500481 if (irq < nr_legacy_irqs())
Ian Campbell72146102011-02-03 09:49:35 +0000482 return;
483
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000484 irq_free_desc(irq);
485}
486
David Vrabeld0b075f2013-10-17 15:23:15 +0100487static void xen_evtchn_close(unsigned int port)
488{
489 struct evtchn_close close;
490
491 close.port = port;
492 if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
493 BUG();
David Vrabeld0b075f2013-10-17 15:23:15 +0100494}
495
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400496static void pirq_query_unmask(int irq)
497{
498 struct physdev_irq_status_query irq_status;
499 struct irq_info *info = info_for_irq(irq);
500
501 BUG_ON(info->type != IRQT_PIRQ);
502
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100503 irq_status.irq = pirq_from_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400504 if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status))
505 irq_status.flags = 0;
506
507 info->u.pirq.flags &= ~PIRQ_NEEDS_EOI;
508 if (irq_status.flags & XENIRQSTAT_needs_eoi)
509 info->u.pirq.flags |= PIRQ_NEEDS_EOI;
510}
511
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100512static void eoi_pirq(struct irq_data *data)
513{
514 int evtchn = evtchn_from_irq(data->irq);
515 struct physdev_eoi eoi = { .irq = pirq_from_irq(data->irq) };
516 int rc = 0;
517
Boris Ostrovskyff1e22e2016-03-18 10:11:07 -0400518 if (!VALID_EVTCHN(evtchn))
519 return;
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100520
Ross Lagerwallf0f39382016-05-10 16:11:00 +0100521 if (unlikely(irqd_is_setaffinity_pending(data)) &&
522 likely(!irqd_irq_disabled(data))) {
Boris Ostrovskyff1e22e2016-03-18 10:11:07 -0400523 int masked = test_and_set_mask(evtchn);
524
525 clear_evtchn(evtchn);
526
527 irq_move_masked_irq(data);
528
529 if (!masked)
530 unmask_evtchn(evtchn);
531 } else
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100532 clear_evtchn(evtchn);
533
534 if (pirq_needs_eoi(data->irq)) {
535 rc = HYPERVISOR_physdev_op(PHYSDEVOP_eoi, &eoi);
536 WARN_ON(rc);
537 }
538}
539
540static void mask_ack_pirq(struct irq_data *data)
541{
542 disable_dynirq(data);
543 eoi_pirq(data);
544}
545
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +0000546static unsigned int __startup_pirq(unsigned int irq)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400547{
548 struct evtchn_bind_pirq bind_pirq;
549 struct irq_info *info = info_for_irq(irq);
550 int evtchn = evtchn_from_irq(irq);
Konrad Rzeszutek Wilk15ebbb82010-10-04 13:43:27 -0400551 int rc;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400552
553 BUG_ON(info->type != IRQT_PIRQ);
554
555 if (VALID_EVTCHN(evtchn))
556 goto out;
557
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100558 bind_pirq.pirq = pirq_from_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400559 /* NB. We are happy to share unless we are probing. */
Konrad Rzeszutek Wilk15ebbb82010-10-04 13:43:27 -0400560 bind_pirq.flags = info->u.pirq.flags & PIRQ_SHAREABLE ?
561 BIND_PIRQ__WILL_SHARE : 0;
562 rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_pirq, &bind_pirq);
563 if (rc != 0) {
Thomas Gleixner02893af2014-02-23 21:40:20 +0000564 pr_warn("Failed to obtain physical IRQ %d\n", irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400565 return 0;
566 }
567 evtchn = bind_pirq.port;
568
569 pirq_query_unmask(irq);
570
David Vrabeld0b075f2013-10-17 15:23:15 +0100571 rc = set_evtchn_to_irq(evtchn, irq);
Juergen Gross85e40b02015-02-26 06:52:05 +0100572 if (rc)
573 goto err;
574
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400575 info->evtchn = evtchn;
Boris Ostrovsky16e6bd52015-04-29 17:10:15 -0400576 bind_evtchn_to_cpu(evtchn, 0);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400577
Juergen Gross85e40b02015-02-26 06:52:05 +0100578 rc = xen_evtchn_port_setup(info);
579 if (rc)
580 goto err;
581
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400582out:
583 unmask_evtchn(evtchn);
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100584 eoi_pirq(irq_get_irq_data(irq));
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400585
586 return 0;
Juergen Gross85e40b02015-02-26 06:52:05 +0100587
588err:
589 pr_err("irq%d: Failed to set port to irq mapping (%d)\n", irq, rc);
590 xen_evtchn_close(evtchn);
591 return 0;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400592}
593
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +0000594static unsigned int startup_pirq(struct irq_data *data)
595{
596 return __startup_pirq(data->irq);
597}
598
599static void shutdown_pirq(struct irq_data *data)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400600{
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +0000601 unsigned int irq = data->irq;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400602 struct irq_info *info = info_for_irq(irq);
David Vrabeld0b075f2013-10-17 15:23:15 +0100603 unsigned evtchn = evtchn_from_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400604
605 BUG_ON(info->type != IRQT_PIRQ);
606
607 if (!VALID_EVTCHN(evtchn))
608 return;
609
610 mask_evtchn(evtchn);
David Vrabeld0b075f2013-10-17 15:23:15 +0100611 xen_evtchn_close(evtchn);
612 xen_irq_info_cleanup(info);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400613}
614
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +0000615static void enable_pirq(struct irq_data *data)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400616{
Liu Shuo020db9d2017-07-30 00:59:57 +0800617 enable_dynirq(data);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400618}
619
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +0000620static void disable_pirq(struct irq_data *data)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400621{
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100622 disable_dynirq(data);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400623}
624
Stefano Stabellini68c2c392012-05-21 16:54:10 +0100625int xen_irq_from_gsi(unsigned gsi)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400626{
Ian Campbell6cb65372011-03-10 16:08:11 +0000627 struct irq_info *info;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400628
Ian Campbell6cb65372011-03-10 16:08:11 +0000629 list_for_each_entry(info, &xen_irq_list_head, list) {
630 if (info->type != IRQT_PIRQ)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400631 continue;
632
Ian Campbell6cb65372011-03-10 16:08:11 +0000633 if (info->u.pirq.gsi == gsi)
634 return info->irq;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400635 }
636
637 return -1;
638}
Stefano Stabellini68c2c392012-05-21 16:54:10 +0100639EXPORT_SYMBOL_GPL(xen_irq_from_gsi);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400640
David Vrabel96d4c5882013-03-18 15:50:17 +0000641static void __unbind_from_irq(unsigned int irq)
642{
David Vrabel96d4c5882013-03-18 15:50:17 +0000643 int evtchn = evtchn_from_irq(irq);
Juergen Gross82856cd2020-09-30 11:16:14 +0200644 struct irq_info *info = info_for_irq(irq);
David Vrabel96d4c5882013-03-18 15:50:17 +0000645
646 if (info->refcnt > 0) {
647 info->refcnt--;
648 if (info->refcnt != 0)
649 return;
650 }
651
652 if (VALID_EVTCHN(evtchn)) {
David Vrabeld0b075f2013-10-17 15:23:15 +0100653 unsigned int cpu = cpu_from_irq(irq);
654
655 xen_evtchn_close(evtchn);
David Vrabel96d4c5882013-03-18 15:50:17 +0000656
657 switch (type_from_irq(irq)) {
658 case IRQT_VIRQ:
David Vrabeld0b075f2013-10-17 15:23:15 +0100659 per_cpu(virq_to_irq, cpu)[virq_from_irq(irq)] = -1;
David Vrabel96d4c5882013-03-18 15:50:17 +0000660 break;
661 case IRQT_IPI:
David Vrabeld0b075f2013-10-17 15:23:15 +0100662 per_cpu(ipi_to_irq, cpu)[ipi_from_irq(irq)] = -1;
David Vrabel96d4c5882013-03-18 15:50:17 +0000663 break;
664 default:
665 break;
666 }
667
David Vrabeld0b075f2013-10-17 15:23:15 +0100668 xen_irq_info_cleanup(info);
David Vrabel96d4c5882013-03-18 15:50:17 +0000669 }
670
David Vrabel96d4c5882013-03-18 15:50:17 +0000671 xen_free_irq(irq);
672}
673
Ian Campbell653378a2011-03-10 16:08:04 +0000674/*
675 * Do not make any assumptions regarding the relationship between the
676 * IRQ number returned here and the Xen pirq argument.
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100677 *
678 * Note: We don't assign an event channel until the irq actually started
679 * up. Return an existing irq if we've already got one for the gsi.
Stefano Stabellinie5ac0bd2011-05-25 12:33:23 +0100680 *
681 * Shareable implies level triggered, not shareable implies edge
682 * triggered here.
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400683 */
Ian Campbellf4d06352011-03-10 16:08:07 +0000684int xen_bind_pirq_gsi_to_irq(unsigned gsi,
685 unsigned pirq, int shareable, char *name)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400686{
Ian Campbella0e18112011-03-10 16:08:03 +0000687 int irq = -1;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400688 struct physdev_irq irq_op;
David Vrabel96d4c5882013-03-18 15:50:17 +0000689 int ret;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400690
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400691 mutex_lock(&irq_mapping_update_lock);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400692
Stefano Stabellini68c2c392012-05-21 16:54:10 +0100693 irq = xen_irq_from_gsi(gsi);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400694 if (irq != -1) {
Joe Perches283c0972013-06-28 03:21:41 -0700695 pr_info("%s: returning irq %d for gsi %u\n",
696 __func__, irq, gsi);
Daniel De Graaf420eb552011-10-27 17:58:47 -0400697 goto out;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400698 }
699
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000700 irq = xen_allocate_irq_gsi(gsi);
Ian Campbell7bee9762011-03-10 16:08:15 +0000701 if (irq < 0)
702 goto out;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400703
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400704 irq_op.irq = irq;
Alex Nixonb5401a92010-03-18 16:31:34 -0400705 irq_op.vector = 0;
706
707 /* Only the privileged domain can do this. For non-priv, the pcifront
708 * driver provides a PCI bus that does the call to do exactly
709 * this in the priv domain. */
710 if (xen_initial_domain() &&
711 HYPERVISOR_physdev_op(PHYSDEVOP_alloc_irq_vector, &irq_op)) {
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000712 xen_free_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400713 irq = -ENOSPC;
714 goto out;
715 }
716
David Vrabel96d4c5882013-03-18 15:50:17 +0000717 ret = xen_irq_info_pirq_setup(irq, 0, pirq, gsi, DOMID_SELF,
Ian Campbell9158c352011-03-10 16:08:09 +0000718 shareable ? PIRQ_SHAREABLE : 0);
David Vrabel96d4c5882013-03-18 15:50:17 +0000719 if (ret < 0) {
720 __unbind_from_irq(irq);
721 irq = ret;
722 goto out;
723 }
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400724
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100725 pirq_query_unmask(irq);
726 /* We try to use the handler with the appropriate semantic for the
Stefano Stabellinie5ac0bd2011-05-25 12:33:23 +0100727 * type of interrupt: if the interrupt is an edge triggered
728 * interrupt we use handle_edge_irq.
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100729 *
Stefano Stabellinie5ac0bd2011-05-25 12:33:23 +0100730 * On the other hand if the interrupt is level triggered we use
731 * handle_fasteoi_irq like the native code does for this kind of
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100732 * interrupts.
Stefano Stabellinie5ac0bd2011-05-25 12:33:23 +0100733 *
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100734 * Depending on the Xen version, pirq_needs_eoi might return true
735 * not only for level triggered interrupts but for edge triggered
736 * interrupts too. In any case Xen always honors the eoi mechanism,
737 * not injecting any more pirqs of the same kind if the first one
738 * hasn't received an eoi yet. Therefore using the fasteoi handler
739 * is the right choice either way.
740 */
Stefano Stabellinie5ac0bd2011-05-25 12:33:23 +0100741 if (shareable)
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100742 irq_set_chip_and_handler_name(irq, &xen_pirq_chip,
743 handle_fasteoi_irq, name);
744 else
745 irq_set_chip_and_handler_name(irq, &xen_pirq_chip,
746 handle_edge_irq, name);
747
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400748out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400749 mutex_unlock(&irq_mapping_update_lock);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400750
751 return irq;
752}
753
Qing Hef731e3ef2010-10-11 15:30:09 +0100754#ifdef CONFIG_PCI_MSI
Ian Campbellbf480d92011-02-18 16:43:32 +0000755int xen_allocate_pirq_msi(struct pci_dev *dev, struct msi_desc *msidesc)
Ian Campbellcbf6aa82011-01-11 17:20:14 +0000756{
Ian Campbell5cad61a2011-02-18 16:43:31 +0000757 int rc;
Ian Campbellcbf6aa82011-01-11 17:20:14 +0000758 struct physdev_get_free_pirq op_get_free_pirq;
Ian Campbell5cad61a2011-02-18 16:43:31 +0000759
Ian Campbellbf480d92011-02-18 16:43:32 +0000760 op_get_free_pirq.type = MAP_PIRQ_TYPE_MSI;
Ian Campbellcbf6aa82011-01-11 17:20:14 +0000761 rc = HYPERVISOR_physdev_op(PHYSDEVOP_get_free_pirq, &op_get_free_pirq);
Ian Campbellcbf6aa82011-01-11 17:20:14 +0000762
Ian Campbell5cad61a2011-02-18 16:43:31 +0000763 WARN_ONCE(rc == -ENOSYS,
764 "hypervisor does not support the PHYSDEVOP_get_free_pirq interface\n");
765
766 return rc ? -1 : op_get_free_pirq.pirq;
Ian Campbellcbf6aa82011-01-11 17:20:14 +0000767}
768
Ian Campbellbf480d92011-02-18 16:43:32 +0000769int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct msi_desc *msidesc,
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100770 int pirq, int nvec, const char *name, domid_t domid)
Stefano Stabellini809f9262010-07-01 17:10:39 +0100771{
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100772 int i, irq, ret;
Ian Campbell4b41df72011-02-18 16:43:29 +0000773
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400774 mutex_lock(&irq_mapping_update_lock);
Stefano Stabellini809f9262010-07-01 17:10:39 +0100775
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100776 irq = xen_allocate_irqs_dynamic(nvec);
Konrad Rzeszutek Wilke6599222011-09-29 13:26:45 -0400777 if (irq < 0)
Ian Campbellbb5d0792011-02-18 16:43:28 +0000778 goto out;
Stefano Stabellini809f9262010-07-01 17:10:39 +0100779
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100780 for (i = 0; i < nvec; i++) {
781 irq_set_chip_and_handler_name(irq + i, &xen_pirq_chip, handle_edge_irq, name);
Stefano Stabellini809f9262010-07-01 17:10:39 +0100782
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100783 ret = xen_irq_info_pirq_setup(irq + i, 0, pirq + i, 0, domid,
784 i == 0 ? 0 : PIRQ_MSI_GROUP);
785 if (ret < 0)
786 goto error_irq;
787 }
788
Linus Torvalds5f6fb452011-03-15 19:23:40 -0700789 ret = irq_set_msi_desc(irq, msidesc);
Ian Campbellbf480d92011-02-18 16:43:32 +0000790 if (ret < 0)
791 goto error_irq;
Stefano Stabellini809f9262010-07-01 17:10:39 +0100792out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400793 mutex_unlock(&irq_mapping_update_lock);
Ian Campbell4b41df72011-02-18 16:43:29 +0000794 return irq;
Ian Campbellbf480d92011-02-18 16:43:32 +0000795error_irq:
Roger Pau Monne910f8be2018-02-28 09:19:03 +0000796 while (nvec--)
797 __unbind_from_irq(irq + nvec);
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400798 mutex_unlock(&irq_mapping_update_lock);
Konrad Rzeszutek Wilke6599222011-09-29 13:26:45 -0400799 return ret;
Stefano Stabellini809f9262010-07-01 17:10:39 +0100800}
Qing Hef731e3ef2010-10-11 15:30:09 +0100801#endif
802
Alex Nixonb5401a92010-03-18 16:31:34 -0400803int xen_destroy_irq(int irq)
804{
Jeremy Fitzhardinge38aa66f2010-09-02 14:51:39 +0100805 struct physdev_unmap_pirq unmap_irq;
806 struct irq_info *info = info_for_irq(irq);
Alex Nixonb5401a92010-03-18 16:31:34 -0400807 int rc = -ENOENT;
808
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400809 mutex_lock(&irq_mapping_update_lock);
Alex Nixonb5401a92010-03-18 16:31:34 -0400810
Roger Pau Monne4892c9b2014-02-27 19:15:35 +0100811 /*
812 * If trying to remove a vector in a MSI group different
813 * than the first one skip the PIRQ unmap unless this vector
814 * is the first one in the group.
815 */
816 if (xen_initial_domain() && !(info->u.pirq.flags & PIRQ_MSI_GROUP)) {
Konrad Rzeszutek Wilk12334712010-11-19 11:27:09 -0500817 unmap_irq.pirq = info->u.pirq.pirq;
Konrad Rzeszutek Wilkbeafbdc2011-04-14 11:17:36 -0400818 unmap_irq.domid = info->u.pirq.domid;
Jeremy Fitzhardinge38aa66f2010-09-02 14:51:39 +0100819 rc = HYPERVISOR_physdev_op(PHYSDEVOP_unmap_pirq, &unmap_irq);
Konrad Rzeszutek Wilk1eff1ad2011-02-16 16:26:44 -0500820 /* If another domain quits without making the pci_disable_msix
821 * call, the Xen hypervisor takes care of freeing the PIRQs
822 * (free_domain_pirqs).
823 */
824 if ((rc == -ESRCH && info->u.pirq.domid != DOMID_SELF))
Joe Perches283c0972013-06-28 03:21:41 -0700825 pr_info("domain %d does not have %d anymore\n",
Konrad Rzeszutek Wilk1eff1ad2011-02-16 16:26:44 -0500826 info->u.pirq.domid, info->u.pirq.pirq);
827 else if (rc) {
Joe Perches283c0972013-06-28 03:21:41 -0700828 pr_warn("unmap irq failed %d\n", rc);
Jeremy Fitzhardinge38aa66f2010-09-02 14:51:39 +0100829 goto out;
830 }
831 }
Alex Nixonb5401a92010-03-18 16:31:34 -0400832
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000833 xen_free_irq(irq);
Alex Nixonb5401a92010-03-18 16:31:34 -0400834
835out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400836 mutex_unlock(&irq_mapping_update_lock);
Alex Nixonb5401a92010-03-18 16:31:34 -0400837 return rc;
838}
839
Stefano Stabelliniaf42b8d2010-12-01 14:51:44 +0000840int xen_irq_from_pirq(unsigned pirq)
841{
Ian Campbell69c358c2011-03-10 16:08:13 +0000842 int irq;
843
844 struct irq_info *info;
845
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400846 mutex_lock(&irq_mapping_update_lock);
Ian Campbell69c358c2011-03-10 16:08:13 +0000847
848 list_for_each_entry(info, &xen_irq_list_head, list) {
Konrad Rzeszutek Wilk9bb9efe2011-09-29 13:13:30 -0400849 if (info->type != IRQT_PIRQ)
Ian Campbell69c358c2011-03-10 16:08:13 +0000850 continue;
851 irq = info->irq;
852 if (info->u.pirq.pirq == pirq)
853 goto out;
854 }
855 irq = -1;
856out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400857 mutex_unlock(&irq_mapping_update_lock);
Ian Campbell69c358c2011-03-10 16:08:13 +0000858
859 return irq;
Stefano Stabelliniaf42b8d2010-12-01 14:51:44 +0000860}
861
Konrad Rzeszutek Wilke6197ac2011-02-24 14:20:12 -0500862
863int xen_pirq_from_irq(unsigned irq)
864{
865 return pirq_from_irq(irq);
866}
867EXPORT_SYMBOL_GPL(xen_pirq_from_irq);
David Vrabel96d4c5882013-03-18 15:50:17 +0000868
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700869int bind_evtchn_to_irq(unsigned int evtchn)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700870{
871 int irq;
David Vrabel96d4c5882013-03-18 15:50:17 +0000872 int ret;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700873
David Vrabeld0b075f2013-10-17 15:23:15 +0100874 if (evtchn >= xen_evtchn_max_channels())
875 return -ENOMEM;
876
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400877 mutex_lock(&irq_mapping_update_lock);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700878
David Vrabeld0b075f2013-10-17 15:23:15 +0100879 irq = get_evtchn_to_irq(evtchn);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700880
881 if (irq == -1) {
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000882 irq = xen_allocate_irq_dynamic();
Wei Liu68ba45f2013-01-31 14:46:56 +0000883 if (irq < 0)
Ian Campbell7bee9762011-03-10 16:08:15 +0000884 goto out;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700885
Thomas Gleixnerc442b802011-03-25 10:58:06 +0100886 irq_set_chip_and_handler_name(irq, &xen_dynamic_chip,
Stefano Stabellini7e186bd2011-05-06 12:27:50 +0100887 handle_edge_irq, "event");
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700888
David Vrabel96d4c5882013-03-18 15:50:17 +0000889 ret = xen_irq_info_evtchn_setup(irq, evtchn);
890 if (ret < 0) {
891 __unbind_from_irq(irq);
892 irq = ret;
893 goto out;
894 }
David Vrabel97253ee2014-02-05 14:13:10 +0000895 /* New interdomain events are bound to VCPU 0. */
896 bind_evtchn_to_cpu(evtchn, 0);
Konrad Rzeszutek Wilk5e152e62012-05-23 13:28:44 -0400897 } else {
898 struct irq_info *info = info_for_irq(irq);
899 WARN_ON(info == NULL || info->type != IRQT_EVTCHN);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700900 }
901
Ian Campbell7bee9762011-03-10 16:08:15 +0000902out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400903 mutex_unlock(&irq_mapping_update_lock);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700904
905 return irq;
906}
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700907EXPORT_SYMBOL_GPL(bind_evtchn_to_irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700908
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700909static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu)
910{
911 struct evtchn_bind_ipi bind_ipi;
912 int evtchn, irq;
David Vrabel96d4c5882013-03-18 15:50:17 +0000913 int ret;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700914
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400915 mutex_lock(&irq_mapping_update_lock);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700916
917 irq = per_cpu(ipi_to_irq, cpu)[ipi];
Ian Campbell90af9512009-02-06 16:55:58 -0800918
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700919 if (irq == -1) {
Ian Campbellc9df1ce2011-01-11 17:20:15 +0000920 irq = xen_allocate_irq_dynamic();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700921 if (irq < 0)
922 goto out;
923
Thomas Gleixnerc442b802011-03-25 10:58:06 +0100924 irq_set_chip_and_handler_name(irq, &xen_percpu_chip,
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -0700925 handle_percpu_irq, "ipi");
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700926
Vitaly Kuznetsov8058c0b2016-06-30 17:56:40 +0200927 bind_ipi.vcpu = xen_vcpu_nr(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700928 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
929 &bind_ipi) != 0)
930 BUG();
931 evtchn = bind_ipi.port;
932
David Vrabel96d4c5882013-03-18 15:50:17 +0000933 ret = xen_irq_info_ipi_setup(cpu, irq, evtchn, ipi);
934 if (ret < 0) {
935 __unbind_from_irq(irq);
936 irq = ret;
937 goto out;
938 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700939 bind_evtchn_to_cpu(evtchn, cpu);
Konrad Rzeszutek Wilk5e152e62012-05-23 13:28:44 -0400940 } else {
941 struct irq_info *info = info_for_irq(irq);
942 WARN_ON(info == NULL || info->type != IRQT_IPI);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700943 }
944
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700945 out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -0400946 mutex_unlock(&irq_mapping_update_lock);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700947 return irq;
948}
949
Juergen Gross854072d2014-08-28 06:44:09 +0200950int bind_interdomain_evtchn_to_irq(unsigned int remote_domain,
951 unsigned int remote_port)
Ian Campbell2e820f52009-02-09 12:05:50 -0800952{
953 struct evtchn_bind_interdomain bind_interdomain;
954 int err;
955
956 bind_interdomain.remote_dom = remote_domain;
957 bind_interdomain.remote_port = remote_port;
958
959 err = HYPERVISOR_event_channel_op(EVTCHNOP_bind_interdomain,
960 &bind_interdomain);
961
962 return err ? : bind_evtchn_to_irq(bind_interdomain.local_port);
963}
Juergen Gross854072d2014-08-28 06:44:09 +0200964EXPORT_SYMBOL_GPL(bind_interdomain_evtchn_to_irq);
Ian Campbell2e820f52009-02-09 12:05:50 -0800965
Olaf Hering62cc5fc2011-08-25 18:30:48 +0200966static int find_virq(unsigned int virq, unsigned int cpu)
967{
968 struct evtchn_status status;
969 int port, rc = -ENOENT;
970
971 memset(&status, 0, sizeof(status));
David Vrabeld0b075f2013-10-17 15:23:15 +0100972 for (port = 0; port < xen_evtchn_max_channels(); port++) {
Olaf Hering62cc5fc2011-08-25 18:30:48 +0200973 status.dom = DOMID_SELF;
974 status.port = port;
975 rc = HYPERVISOR_event_channel_op(EVTCHNOP_status, &status);
976 if (rc < 0)
977 continue;
978 if (status.status != EVTCHNSTAT_virq)
979 continue;
Vitaly Kuznetsovb36585a2016-11-23 13:38:45 +0100980 if (status.u.virq == virq && status.vcpu == xen_vcpu_nr(cpu)) {
Olaf Hering62cc5fc2011-08-25 18:30:48 +0200981 rc = port;
982 break;
983 }
984 }
985 return rc;
986}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700987
David Vrabel0dc00642013-09-23 21:03:38 +0100988/**
989 * xen_evtchn_nr_channels - number of usable event channel ports
990 *
991 * This may be less than the maximum supported by the current
992 * hypervisor ABI. Use xen_evtchn_max_channels() for the maximum
993 * supported.
994 */
995unsigned xen_evtchn_nr_channels(void)
996{
997 return evtchn_ops->nr_channels();
998}
999EXPORT_SYMBOL_GPL(xen_evtchn_nr_channels);
1000
David Vrabel77bb3df2015-05-19 18:40:49 +01001001int bind_virq_to_irq(unsigned int virq, unsigned int cpu, bool percpu)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001002{
1003 struct evtchn_bind_virq bind_virq;
Olaf Hering62cc5fc2011-08-25 18:30:48 +02001004 int evtchn, irq, ret;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001005
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -04001006 mutex_lock(&irq_mapping_update_lock);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001007
1008 irq = per_cpu(virq_to_irq, cpu)[virq];
1009
1010 if (irq == -1) {
Ian Campbellc9df1ce2011-01-11 17:20:15 +00001011 irq = xen_allocate_irq_dynamic();
Wei Liu68ba45f2013-01-31 14:46:56 +00001012 if (irq < 0)
Ian Campbell7bee9762011-03-10 16:08:15 +00001013 goto out;
Jeremy Fitzhardingea52521f2010-09-22 15:28:52 -07001014
David Vrabel77bb3df2015-05-19 18:40:49 +01001015 if (percpu)
1016 irq_set_chip_and_handler_name(irq, &xen_percpu_chip,
1017 handle_percpu_irq, "virq");
1018 else
1019 irq_set_chip_and_handler_name(irq, &xen_dynamic_chip,
1020 handle_edge_irq, "virq");
Jeremy Fitzhardingea52521f2010-09-22 15:28:52 -07001021
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001022 bind_virq.virq = virq;
Vitaly Kuznetsov8058c0b2016-06-30 17:56:40 +02001023 bind_virq.vcpu = xen_vcpu_nr(cpu);
Olaf Hering62cc5fc2011-08-25 18:30:48 +02001024 ret = HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
1025 &bind_virq);
1026 if (ret == 0)
1027 evtchn = bind_virq.port;
1028 else {
1029 if (ret == -EEXIST)
1030 ret = find_virq(virq, cpu);
1031 BUG_ON(ret < 0);
1032 evtchn = ret;
1033 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001034
David Vrabel96d4c5882013-03-18 15:50:17 +00001035 ret = xen_irq_info_virq_setup(cpu, irq, evtchn, virq);
1036 if (ret < 0) {
1037 __unbind_from_irq(irq);
1038 irq = ret;
1039 goto out;
1040 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001041
1042 bind_evtchn_to_cpu(evtchn, cpu);
Konrad Rzeszutek Wilk5e152e62012-05-23 13:28:44 -04001043 } else {
1044 struct irq_info *info = info_for_irq(irq);
1045 WARN_ON(info == NULL || info->type != IRQT_VIRQ);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001046 }
1047
Ian Campbell7bee9762011-03-10 16:08:15 +00001048out:
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -04001049 mutex_unlock(&irq_mapping_update_lock);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001050
1051 return irq;
1052}
1053
1054static void unbind_from_irq(unsigned int irq)
1055{
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -04001056 mutex_lock(&irq_mapping_update_lock);
David Vrabel96d4c5882013-03-18 15:50:17 +00001057 __unbind_from_irq(irq);
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -04001058 mutex_unlock(&irq_mapping_update_lock);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001059}
1060
1061int bind_evtchn_to_irqhandler(unsigned int evtchn,
Jeff Garzik7c239972007-10-19 03:12:20 -04001062 irq_handler_t handler,
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001063 unsigned long irqflags,
1064 const char *devname, void *dev_id)
1065{
Nicolas Kaiser361ae8c2011-03-30 21:14:26 +02001066 int irq, retval;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001067
1068 irq = bind_evtchn_to_irq(evtchn);
Ian Campbell7bee9762011-03-10 16:08:15 +00001069 if (irq < 0)
1070 return irq;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001071 retval = request_irq(irq, handler, irqflags, devname, dev_id);
1072 if (retval != 0) {
1073 unbind_from_irq(irq);
1074 return retval;
1075 }
1076
1077 return irq;
1078}
1079EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler);
1080
Ian Campbell2e820f52009-02-09 12:05:50 -08001081int bind_interdomain_evtchn_to_irqhandler(unsigned int remote_domain,
1082 unsigned int remote_port,
1083 irq_handler_t handler,
1084 unsigned long irqflags,
1085 const char *devname,
1086 void *dev_id)
1087{
1088 int irq, retval;
1089
1090 irq = bind_interdomain_evtchn_to_irq(remote_domain, remote_port);
1091 if (irq < 0)
1092 return irq;
1093
1094 retval = request_irq(irq, handler, irqflags, devname, dev_id);
1095 if (retval != 0) {
1096 unbind_from_irq(irq);
1097 return retval;
1098 }
1099
1100 return irq;
1101}
1102EXPORT_SYMBOL_GPL(bind_interdomain_evtchn_to_irqhandler);
1103
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001104int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu,
Jeff Garzik7c239972007-10-19 03:12:20 -04001105 irq_handler_t handler,
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001106 unsigned long irqflags, const char *devname, void *dev_id)
1107{
Nicolas Kaiser361ae8c2011-03-30 21:14:26 +02001108 int irq, retval;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001109
David Vrabel77bb3df2015-05-19 18:40:49 +01001110 irq = bind_virq_to_irq(virq, cpu, irqflags & IRQF_PERCPU);
Ian Campbell7bee9762011-03-10 16:08:15 +00001111 if (irq < 0)
1112 return irq;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001113 retval = request_irq(irq, handler, irqflags, devname, dev_id);
1114 if (retval != 0) {
1115 unbind_from_irq(irq);
1116 return retval;
1117 }
1118
1119 return irq;
1120}
1121EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler);
1122
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001123int bind_ipi_to_irqhandler(enum ipi_vector ipi,
1124 unsigned int cpu,
1125 irq_handler_t handler,
1126 unsigned long irqflags,
1127 const char *devname,
1128 void *dev_id)
1129{
1130 int irq, retval;
1131
1132 irq = bind_ipi_to_irq(ipi, cpu);
1133 if (irq < 0)
1134 return irq;
1135
Ian Campbell9bab0b72011-10-03 15:37:00 +01001136 irqflags |= IRQF_NO_SUSPEND | IRQF_FORCE_RESUME | IRQF_EARLY_RESUME;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001137 retval = request_irq(irq, handler, irqflags, devname, dev_id);
1138 if (retval != 0) {
1139 unbind_from_irq(irq);
1140 return retval;
1141 }
1142
1143 return irq;
1144}
1145
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001146void unbind_from_irqhandler(unsigned int irq, void *dev_id)
1147{
Juergen Gross82856cd2020-09-30 11:16:14 +02001148 struct irq_info *info = info_for_irq(irq);
Konrad Rzeszutek Wilk94032c52013-04-16 10:55:18 -04001149
1150 if (WARN_ON(!info))
1151 return;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001152 free_irq(irq, dev_id);
1153 unbind_from_irq(irq);
1154}
1155EXPORT_SYMBOL_GPL(unbind_from_irqhandler);
1156
David Vrabel6ccecb02013-09-23 12:47:26 +01001157/**
1158 * xen_set_irq_priority() - set an event channel priority.
1159 * @irq:irq bound to an event channel.
1160 * @priority: priority between XEN_IRQ_PRIORITY_MAX and XEN_IRQ_PRIORITY_MIN.
1161 */
1162int xen_set_irq_priority(unsigned irq, unsigned priority)
1163{
1164 struct evtchn_set_priority set_priority;
1165
1166 set_priority.port = evtchn_from_irq(irq);
1167 set_priority.priority = priority;
1168
1169 return HYPERVISOR_event_channel_op(EVTCHNOP_set_priority,
1170 &set_priority);
1171}
1172EXPORT_SYMBOL_GPL(xen_set_irq_priority);
1173
Daniel De Graaf420eb552011-10-27 17:58:47 -04001174int evtchn_make_refcounted(unsigned int evtchn)
1175{
David Vrabeld0b075f2013-10-17 15:23:15 +01001176 int irq = get_evtchn_to_irq(evtchn);
Daniel De Graaf420eb552011-10-27 17:58:47 -04001177 struct irq_info *info;
1178
1179 if (irq == -1)
1180 return -ENOENT;
1181
Juergen Gross82856cd2020-09-30 11:16:14 +02001182 info = info_for_irq(irq);
Daniel De Graaf420eb552011-10-27 17:58:47 -04001183
1184 if (!info)
1185 return -ENOENT;
1186
1187 WARN_ON(info->refcnt != -1);
1188
1189 info->refcnt = 1;
1190
1191 return 0;
1192}
1193EXPORT_SYMBOL_GPL(evtchn_make_refcounted);
1194
1195int evtchn_get(unsigned int evtchn)
1196{
1197 int irq;
1198 struct irq_info *info;
1199 int err = -ENOENT;
1200
David Vrabeld0b075f2013-10-17 15:23:15 +01001201 if (evtchn >= xen_evtchn_max_channels())
Daniel De Graafc3b3f162011-11-28 11:49:09 -05001202 return -EINVAL;
1203
Daniel De Graaf420eb552011-10-27 17:58:47 -04001204 mutex_lock(&irq_mapping_update_lock);
1205
David Vrabeld0b075f2013-10-17 15:23:15 +01001206 irq = get_evtchn_to_irq(evtchn);
Daniel De Graaf420eb552011-10-27 17:58:47 -04001207 if (irq == -1)
1208 goto done;
1209
Juergen Gross82856cd2020-09-30 11:16:14 +02001210 info = info_for_irq(irq);
Daniel De Graaf420eb552011-10-27 17:58:47 -04001211
1212 if (!info)
1213 goto done;
1214
1215 err = -EINVAL;
1216 if (info->refcnt <= 0)
1217 goto done;
1218
1219 info->refcnt++;
1220 err = 0;
1221 done:
1222 mutex_unlock(&irq_mapping_update_lock);
1223
1224 return err;
1225}
1226EXPORT_SYMBOL_GPL(evtchn_get);
1227
1228void evtchn_put(unsigned int evtchn)
1229{
David Vrabeld0b075f2013-10-17 15:23:15 +01001230 int irq = get_evtchn_to_irq(evtchn);
Daniel De Graaf420eb552011-10-27 17:58:47 -04001231 if (WARN_ON(irq == -1))
1232 return;
1233 unbind_from_irq(irq);
1234}
1235EXPORT_SYMBOL_GPL(evtchn_put);
1236
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001237void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector)
1238{
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -04001239 int irq;
1240
Stefano Stabellini072b2062013-08-13 16:57:06 +00001241#ifdef CONFIG_X86
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -04001242 if (unlikely(vector == XEN_NMI_VECTOR)) {
Vitaly Kuznetsovad5475f2016-06-30 17:56:38 +02001243 int rc = HYPERVISOR_vcpu_op(VCPUOP_send_nmi, xen_vcpu_nr(cpu),
1244 NULL);
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -04001245 if (rc < 0)
1246 printk(KERN_WARNING "Sending nmi to CPU%d failed (rc:%d)\n", cpu, rc);
1247 return;
1248 }
Stefano Stabellini072b2062013-08-13 16:57:06 +00001249#endif
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -04001250 irq = per_cpu(ipi_to_irq, cpu)[vector];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001251 BUG_ON(irq < 0);
1252 notify_remote_via_irq(irq);
1253}
1254
Tejun Heo245b2e72009-06-24 15:13:48 +09001255static DEFINE_PER_CPU(unsigned, xed_nesting_count);
1256
Sheng Yang38e20b02010-05-14 12:40:51 +01001257static void __xen_evtchn_do_upcall(void)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001258{
Christoph Lameter780f36d2010-12-06 11:16:29 -06001259 struct vcpu_info *vcpu_info = __this_cpu_read(xen_vcpu);
David Vrabel9a489f42013-03-13 15:29:25 +00001260 int cpu = get_cpu();
Ruslan Pisarev088c05a2011-07-26 14:16:13 +03001261 unsigned count;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001262
Juergen Gross61d359d2020-09-07 15:47:27 +02001263 read_lock(&evtchn_rwlock);
1264
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -07001265 do {
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -07001266 vcpu_info->evtchn_upcall_pending = 0;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001267
Christoph Lameterb2e4ae62010-12-06 11:40:07 -06001268 if (__this_cpu_inc_return(xed_nesting_count) - 1)
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -07001269 goto out;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001270
David Vrabel9a489f42013-03-13 15:29:25 +00001271 xen_evtchn_handle_events(cpu);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001272
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -07001273 BUG_ON(!irqs_disabled());
1274
Christoph Lameter780f36d2010-12-06 11:16:29 -06001275 count = __this_cpu_read(xed_nesting_count);
1276 __this_cpu_write(xed_nesting_count, 0);
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001277 } while (count != 1 || vcpu_info->evtchn_upcall_pending);
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -07001278
1279out:
Juergen Gross61d359d2020-09-07 15:47:27 +02001280 read_unlock(&evtchn_rwlock);
Jeremy Fitzhardinge3445a8f2009-02-06 14:09:46 -08001281
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001282 put_cpu();
1283}
1284
Sheng Yang38e20b02010-05-14 12:40:51 +01001285void xen_evtchn_do_upcall(struct pt_regs *regs)
1286{
1287 struct pt_regs *old_regs = set_irq_regs(regs);
1288
Mojiong Qiu772aebc2012-11-06 16:08:15 +08001289 irq_enter();
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +00001290#ifdef CONFIG_X86
Thomas Gleixner99c8b792014-02-23 21:40:21 +00001291 inc_irq_stat(irq_hv_callback_count);
Arnd Bergmannd06eb3e2014-03-25 16:52:25 +01001292#endif
Sheng Yang38e20b02010-05-14 12:40:51 +01001293
1294 __xen_evtchn_do_upcall();
1295
1296 irq_exit();
1297 set_irq_regs(old_regs);
1298}
1299
1300void xen_hvm_evtchn_do_upcall(void)
1301{
1302 __xen_evtchn_do_upcall();
1303}
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001304EXPORT_SYMBOL_GPL(xen_hvm_evtchn_do_upcall);
Sheng Yang38e20b02010-05-14 12:40:51 +01001305
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001306/* Rebind a new event channel to an existing irq. */
1307void rebind_evtchn_irq(int evtchn, int irq)
1308{
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -08001309 struct irq_info *info = info_for_irq(irq);
1310
Konrad Rzeszutek Wilk94032c52013-04-16 10:55:18 -04001311 if (WARN_ON(!info))
1312 return;
1313
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001314 /* Make sure the irq is masked, since the new event channel
1315 will also be masked. */
1316 disable_irq(irq);
1317
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -04001318 mutex_lock(&irq_mapping_update_lock);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001319
1320 /* After resume the irq<->evtchn mappings are all cleared out */
David Vrabeld0b075f2013-10-17 15:23:15 +01001321 BUG_ON(get_evtchn_to_irq(evtchn) != -1);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001322 /* Expect irq to have been bound before,
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -08001323 so there should be a proper type */
1324 BUG_ON(info->type == IRQT_UNBOUND);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001325
David Vrabel96d4c5882013-03-18 15:50:17 +00001326 (void)xen_irq_info_evtchn_setup(irq, evtchn);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001327
Konrad Rzeszutek Wilk77365942011-09-14 05:10:00 -04001328 mutex_unlock(&irq_mapping_update_lock);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001329
Boris Ostrovsky5cec9882015-04-29 17:10:12 -04001330 bind_evtchn_to_cpu(evtchn, info->cpu);
1331 /* This will be deferred until interrupt is processed */
1332 irq_set_affinity(irq, cpumask_of(info->cpu));
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001333
1334 /* Unmask the event channel. */
1335 enable_irq(irq);
1336}
1337
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001338/* Rebind an evtchn so that it gets delivered to a specific cpu */
Juergen Gross007e5aa2019-06-21 20:47:03 +02001339static int xen_rebind_evtchn_to_cpu(int evtchn, unsigned int tcpu)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001340{
1341 struct evtchn_bind_vcpu bind_vcpu;
David Vrabel4704fe42013-08-15 13:21:07 +01001342 int masked;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001343
Ian Campbellbe494722011-03-10 16:08:02 +00001344 if (!VALID_EVTCHN(evtchn))
1345 return -1;
1346
Boris Ostrovsky84d582d2017-04-24 15:04:53 -04001347 if (!xen_support_evtchn_rebind())
1348 return -1;
1349
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001350 /* Send future instances of this interrupt to other vcpu. */
1351 bind_vcpu.port = evtchn;
Vitaly Kuznetsov8058c0b2016-06-30 17:56:40 +02001352 bind_vcpu.vcpu = xen_vcpu_nr(tcpu);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001353
1354 /*
David Vrabel4704fe42013-08-15 13:21:07 +01001355 * Mask the event while changing the VCPU binding to prevent
1356 * it being delivered on an unexpected VCPU.
1357 */
Wei Liu3f70fa82013-03-07 15:50:27 +00001358 masked = test_and_set_mask(evtchn);
David Vrabel4704fe42013-08-15 13:21:07 +01001359
1360 /*
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001361 * If this fails, it usually just indicates that we're dealing with a
1362 * virq or IPI channel, which don't actually need to be rebound. Ignore
1363 * it, but don't do the xenlinux-level rebind in that case.
1364 */
1365 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0)
1366 bind_evtchn_to_cpu(evtchn, tcpu);
Yinghai Lud5dedd42009-04-27 17:59:21 -07001367
David Vrabel4704fe42013-08-15 13:21:07 +01001368 if (!masked)
1369 unmask_evtchn(evtchn);
1370
Yinghai Lud5dedd42009-04-27 17:59:21 -07001371 return 0;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001372}
1373
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001374static int set_affinity_irq(struct irq_data *data, const struct cpumask *dest,
1375 bool force)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001376{
Thomas Gleixner753fbd22014-03-04 20:43:40 +00001377 unsigned tcpu = cpumask_first_and(dest, cpu_online_mask);
Linus Torvalds6e6c5b92017-07-06 19:11:24 -07001378 int ret = xen_rebind_evtchn_to_cpu(evtchn_from_irq(data->irq), tcpu);
Yinghai Lud5dedd42009-04-27 17:59:21 -07001379
Thomas Gleixneref1c2cc2017-06-20 01:37:45 +02001380 if (!ret)
1381 irq_data_update_effective_affinity(data, cpumask_of(tcpu));
1382
1383 return ret;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001384}
1385
Juergen Gross007e5aa2019-06-21 20:47:03 +02001386/* To be called with desc->lock held. */
1387int xen_set_affinity_evtchn(struct irq_desc *desc, unsigned int tcpu)
1388{
1389 struct irq_data *d = irq_desc_get_irq_data(desc);
1390
1391 return set_affinity_irq(d, cpumask_of(tcpu), false);
1392}
1393EXPORT_SYMBOL_GPL(xen_set_affinity_evtchn);
1394
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001395static void enable_dynirq(struct irq_data *data)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001396{
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001397 int evtchn = evtchn_from_irq(data->irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001398
1399 if (VALID_EVTCHN(evtchn))
1400 unmask_evtchn(evtchn);
1401}
1402
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001403static void disable_dynirq(struct irq_data *data)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001404{
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001405 int evtchn = evtchn_from_irq(data->irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001406
1407 if (VALID_EVTCHN(evtchn))
1408 mask_evtchn(evtchn);
1409}
1410
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001411static void ack_dynirq(struct irq_data *data)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001412{
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001413 int evtchn = evtchn_from_irq(data->irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001414
Boris Ostrovskyff1e22e2016-03-18 10:11:07 -04001415 if (!VALID_EVTCHN(evtchn))
1416 return;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001417
Ross Lagerwallf0f39382016-05-10 16:11:00 +01001418 if (unlikely(irqd_is_setaffinity_pending(data)) &&
1419 likely(!irqd_irq_disabled(data))) {
Boris Ostrovskyff1e22e2016-03-18 10:11:07 -04001420 int masked = test_and_set_mask(evtchn);
1421
1422 clear_evtchn(evtchn);
1423
1424 irq_move_masked_irq(data);
1425
1426 if (!masked)
1427 unmask_evtchn(evtchn);
1428 } else
Stefano Stabellini7e186bd2011-05-06 12:27:50 +01001429 clear_evtchn(evtchn);
1430}
1431
1432static void mask_ack_dynirq(struct irq_data *data)
1433{
1434 disable_dynirq(data);
1435 ack_dynirq(data);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001436}
1437
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001438static int retrigger_dynirq(struct irq_data *data)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001439{
David Vrabel4640ddf2014-02-17 17:45:16 +00001440 unsigned int evtchn = evtchn_from_irq(data->irq);
1441 int masked;
1442
1443 if (!VALID_EVTCHN(evtchn))
1444 return 0;
1445
1446 masked = test_and_set_mask(evtchn);
1447 set_evtchn(evtchn);
1448 if (!masked)
1449 unmask_evtchn(evtchn);
1450
1451 return 1;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001452}
1453
Ian Campbell0a852262011-03-10 16:08:06 +00001454static void restore_pirqs(void)
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001455{
1456 int pirq, rc, irq, gsi;
1457 struct physdev_map_pirq map_irq;
Ian Campbell69c358c2011-03-10 16:08:13 +00001458 struct irq_info *info;
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001459
Ian Campbell69c358c2011-03-10 16:08:13 +00001460 list_for_each_entry(info, &xen_irq_list_head, list) {
1461 if (info->type != IRQT_PIRQ)
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001462 continue;
1463
Ian Campbell69c358c2011-03-10 16:08:13 +00001464 pirq = info->u.pirq.pirq;
1465 gsi = info->u.pirq.gsi;
1466 irq = info->irq;
1467
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001468 /* save/restore of PT devices doesn't work, so at this point the
1469 * only devices present are GSI based emulated devices */
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001470 if (!gsi)
1471 continue;
1472
1473 map_irq.domid = DOMID_SELF;
1474 map_irq.type = MAP_PIRQ_TYPE_GSI;
1475 map_irq.index = gsi;
1476 map_irq.pirq = pirq;
1477
1478 rc = HYPERVISOR_physdev_op(PHYSDEVOP_map_pirq, &map_irq);
1479 if (rc) {
Joe Perches283c0972013-06-28 03:21:41 -07001480 pr_warn("xen map irq failed gsi=%d irq=%d pirq=%d rc=%d\n",
1481 gsi, irq, pirq, rc);
Ian Campbell9158c352011-03-10 16:08:09 +00001482 xen_free_irq(irq);
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001483 continue;
1484 }
1485
1486 printk(KERN_DEBUG "xen: --> irq=%d, pirq=%d\n", irq, map_irq.pirq);
1487
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001488 __startup_pirq(irq);
Stefano Stabellini9a069c32010-12-01 14:51:44 +00001489 }
1490}
1491
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001492static void restore_cpu_virqs(unsigned int cpu)
1493{
1494 struct evtchn_bind_virq bind_virq;
1495 int virq, irq, evtchn;
1496
1497 for (virq = 0; virq < NR_VIRQS; virq++) {
1498 if ((irq = per_cpu(virq_to_irq, cpu)[virq]) == -1)
1499 continue;
1500
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001501 BUG_ON(virq_from_irq(irq) != virq);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001502
1503 /* Get a new binding from Xen. */
1504 bind_virq.virq = virq;
Vitaly Kuznetsov8058c0b2016-06-30 17:56:40 +02001505 bind_virq.vcpu = xen_vcpu_nr(cpu);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001506 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
1507 &bind_virq) != 0)
1508 BUG();
1509 evtchn = bind_virq.port;
1510
1511 /* Record the new mapping. */
David Vrabel96d4c5882013-03-18 15:50:17 +00001512 (void)xen_irq_info_virq_setup(cpu, irq, evtchn, virq);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001513 bind_evtchn_to_cpu(evtchn, cpu);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001514 }
1515}
1516
1517static void restore_cpu_ipis(unsigned int cpu)
1518{
1519 struct evtchn_bind_ipi bind_ipi;
1520 int ipi, irq, evtchn;
1521
1522 for (ipi = 0; ipi < XEN_NR_IPIS; ipi++) {
1523 if ((irq = per_cpu(ipi_to_irq, cpu)[ipi]) == -1)
1524 continue;
1525
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001526 BUG_ON(ipi_from_irq(irq) != ipi);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001527
1528 /* Get a new binding from Xen. */
Vitaly Kuznetsov8058c0b2016-06-30 17:56:40 +02001529 bind_ipi.vcpu = xen_vcpu_nr(cpu);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001530 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
1531 &bind_ipi) != 0)
1532 BUG();
1533 evtchn = bind_ipi.port;
1534
1535 /* Record the new mapping. */
David Vrabel96d4c5882013-03-18 15:50:17 +00001536 (void)xen_irq_info_ipi_setup(cpu, irq, evtchn, ipi);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001537 bind_evtchn_to_cpu(evtchn, cpu);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001538 }
1539}
1540
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001541/* Clear an irq's pending state, in preparation for polling on it */
1542void xen_clear_irq_pending(int irq)
1543{
1544 int evtchn = evtchn_from_irq(irq);
1545
1546 if (VALID_EVTCHN(evtchn))
1547 clear_evtchn(evtchn);
1548}
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001549EXPORT_SYMBOL(xen_clear_irq_pending);
Jeremy Fitzhardinge168d2f42008-08-20 17:02:18 -07001550void xen_set_irq_pending(int irq)
1551{
1552 int evtchn = evtchn_from_irq(irq);
1553
1554 if (VALID_EVTCHN(evtchn))
1555 set_evtchn(evtchn);
1556}
1557
1558bool xen_test_irq_pending(int irq)
1559{
1560 int evtchn = evtchn_from_irq(irq);
1561 bool ret = false;
1562
1563 if (VALID_EVTCHN(evtchn))
1564 ret = test_evtchn(evtchn);
1565
1566 return ret;
1567}
1568
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001569/* Poll waiting for an irq to become pending with timeout. In the usual case,
1570 * the irq will be disabled so it won't deliver an interrupt. */
1571void xen_poll_irq_timeout(int irq, u64 timeout)
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001572{
1573 evtchn_port_t evtchn = evtchn_from_irq(irq);
1574
1575 if (VALID_EVTCHN(evtchn)) {
1576 struct sched_poll poll;
1577
1578 poll.nr_ports = 1;
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001579 poll.timeout = timeout;
Isaku Yamahataff3c5362008-10-14 17:50:44 -07001580 set_xen_guest_handle(poll.ports, &evtchn);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001581
1582 if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0)
1583 BUG();
1584 }
1585}
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001586EXPORT_SYMBOL(xen_poll_irq_timeout);
1587/* Poll waiting for an irq to become pending. In the usual case, the
1588 * irq will be disabled so it won't deliver an interrupt. */
1589void xen_poll_irq(int irq)
1590{
1591 xen_poll_irq_timeout(irq, 0 /* no timeout */);
1592}
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001593
Konrad Rzeszutek Wilkc7c2c3a2010-11-08 14:26:36 -05001594/* Check whether the IRQ line is shared with other guests. */
1595int xen_test_irq_shared(int irq)
1596{
1597 struct irq_info *info = info_for_irq(irq);
Konrad Rzeszutek Wilk94032c52013-04-16 10:55:18 -04001598 struct physdev_irq_status_query irq_status;
1599
1600 if (WARN_ON(!info))
1601 return -ENOENT;
1602
1603 irq_status.irq = info->u.pirq.pirq;
Konrad Rzeszutek Wilkc7c2c3a2010-11-08 14:26:36 -05001604
1605 if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status))
1606 return 0;
1607 return !(irq_status.flags & XENIRQSTAT_shared);
1608}
1609EXPORT_SYMBOL_GPL(xen_test_irq_shared);
1610
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001611void xen_irq_resume(void)
1612{
David Vrabelfd210692013-09-05 18:11:38 +01001613 unsigned int cpu;
Ian Campbell6cb65372011-03-10 16:08:11 +00001614 struct irq_info *info;
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001615
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001616 /* New event-channel space is not 'live' yet. */
David Vrabel1fe56552013-03-15 13:02:35 +00001617 xen_evtchn_resume();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001618
1619 /* No IRQ <-> event-channel mappings. */
Ian Campbell6cb65372011-03-10 16:08:11 +00001620 list_for_each_entry(info, &xen_irq_list_head, list)
1621 info->evtchn = 0; /* zap event-channel binding */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001622
David Vrabeld0b075f2013-10-17 15:23:15 +01001623 clear_evtchn_to_irq_all();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001624
1625 for_each_possible_cpu(cpu) {
1626 restore_cpu_virqs(cpu);
1627 restore_cpu_ipis(cpu);
1628 }
Ian Campbell69035912010-11-01 16:30:09 +00001629
Ian Campbell0a852262011-03-10 16:08:06 +00001630 restore_pirqs();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001631}
1632
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001633static struct irq_chip xen_dynamic_chip __read_mostly = {
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001634 .name = "xen-dyn",
Jeremy Fitzhardinge54a353a2009-02-06 14:09:42 -08001635
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001636 .irq_disable = disable_dynirq,
1637 .irq_mask = disable_dynirq,
1638 .irq_unmask = enable_dynirq,
Jeremy Fitzhardinge54a353a2009-02-06 14:09:42 -08001639
Stefano Stabellini7e186bd2011-05-06 12:27:50 +01001640 .irq_ack = ack_dynirq,
1641 .irq_mask_ack = mask_ack_dynirq,
1642
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001643 .irq_set_affinity = set_affinity_irq,
1644 .irq_retrigger = retrigger_dynirq,
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001645};
1646
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001647static struct irq_chip xen_pirq_chip __read_mostly = {
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001648 .name = "xen-pirq",
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001649
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001650 .irq_startup = startup_pirq,
1651 .irq_shutdown = shutdown_pirq,
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001652 .irq_enable = enable_pirq,
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001653 .irq_disable = disable_pirq,
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001654
Stefano Stabellini7e186bd2011-05-06 12:27:50 +01001655 .irq_mask = disable_dynirq,
1656 .irq_unmask = enable_dynirq,
1657
1658 .irq_ack = eoi_pirq,
1659 .irq_eoi = eoi_pirq,
1660 .irq_mask_ack = mask_ack_pirq,
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001661
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001662 .irq_set_affinity = set_affinity_irq,
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001663
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001664 .irq_retrigger = retrigger_dynirq,
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001665};
1666
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -07001667static struct irq_chip xen_percpu_chip __read_mostly = {
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001668 .name = "xen-percpu",
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -07001669
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001670 .irq_disable = disable_dynirq,
1671 .irq_mask = disable_dynirq,
1672 .irq_unmask = enable_dynirq,
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -07001673
Thomas Gleixnerc9e265e2011-02-05 20:08:54 +00001674 .irq_ack = ack_dynirq,
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -07001675};
1676
Sheng Yang38e20b02010-05-14 12:40:51 +01001677int xen_set_callback_via(uint64_t via)
1678{
1679 struct xen_hvm_param a;
1680 a.domid = DOMID_SELF;
1681 a.index = HVM_PARAM_CALLBACK_IRQ;
1682 a.value = via;
1683 return HYPERVISOR_hvm_op(HVMOP_set_param, &a);
1684}
1685EXPORT_SYMBOL_GPL(xen_set_callback_via);
1686
Stefano Stabellinica65f9f2010-07-29 14:37:48 +01001687#ifdef CONFIG_XEN_PVHVM
Sheng Yang38e20b02010-05-14 12:40:51 +01001688/* Vector callbacks are better than PCI interrupts to receive event
1689 * channel notifications because we can receive vector callbacks on any
1690 * vcpu and we don't need PCI support or APIC interactions. */
1691void xen_callback_vector(void)
1692{
1693 int rc;
1694 uint64_t callback_via;
KarimAllah Ahmed72a9b182016-08-26 23:55:36 +02001695
Boris Ostrovsky84d582d2017-04-24 15:04:53 -04001696 if (xen_have_vector_callback) {
1697 callback_via = HVM_CALLBACK_VECTOR(HYPERVISOR_CALLBACK_VECTOR);
1698 rc = xen_set_callback_via(callback_via);
1699 if (rc) {
1700 pr_err("Request for Xen HVM callback vector failed\n");
1701 xen_have_vector_callback = 0;
1702 return;
1703 }
Juergen Gross44323622019-01-14 13:44:13 +01001704 pr_info_once("Xen HVM callback vector for event delivery is enabled\n");
Thomas Gleixner4447ac12017-08-28 08:47:58 +02001705 alloc_intr_gate(HYPERVISOR_CALLBACK_VECTOR,
1706 xen_hvm_callback_vector);
Boris Ostrovsky84d582d2017-04-24 15:04:53 -04001707 }
Sheng Yang38e20b02010-05-14 12:40:51 +01001708}
Stefano Stabellinica65f9f2010-07-29 14:37:48 +01001709#else
1710void xen_callback_vector(void) {}
1711#endif
Sheng Yang38e20b02010-05-14 12:40:51 +01001712
David Vrabel1fe56552013-03-15 13:02:35 +00001713#undef MODULE_PARAM_PREFIX
1714#define MODULE_PARAM_PREFIX "xen."
1715
1716static bool fifo_events = true;
1717module_param(fifo_events, bool, 0);
1718
Stefano Stabellini2e3d8862012-10-02 15:57:57 +01001719void __init xen_init_IRQ(void)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001720{
David Vrabel1fe56552013-03-15 13:02:35 +00001721 int ret = -EINVAL;
Juergen Grosse91b2b12017-07-17 19:47:03 +02001722 unsigned int evtchn;
David Vrabel1fe56552013-03-15 13:02:35 +00001723
1724 if (fifo_events)
1725 ret = xen_evtchn_fifo_init();
1726 if (ret < 0)
1727 xen_evtchn_2l_init();
David Vrabelab9a1cc2013-03-14 12:49:19 +00001728
David Vrabeld0b075f2013-10-17 15:23:15 +01001729 evtchn_to_irq = kcalloc(EVTCHN_ROW(xen_evtchn_max_channels()),
1730 sizeof(*evtchn_to_irq), GFP_KERNEL);
Konrad Rzeszutek Wilk9d093e22011-09-29 13:31:21 -04001731 BUG_ON(!evtchn_to_irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001732
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001733 /* No event channels are 'live' right now. */
Juergen Grosse91b2b12017-07-17 19:47:03 +02001734 for (evtchn = 0; evtchn < xen_evtchn_nr_channels(); evtchn++)
1735 mask_evtchn(evtchn);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001736
Stefano Stabellini9846ff12012-01-30 16:21:48 +00001737 pirq_needs_eoi = pirq_needs_eoi_flag;
1738
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +00001739#ifdef CONFIG_X86
Mukesh Rathor27713742013-12-11 15:36:51 -05001740 if (xen_pv_domain()) {
1741 irq_ctx_init(smp_processor_id());
1742 if (xen_initial_domain())
1743 pci_xen_initial_domain();
1744 }
1745 if (xen_feature(XENFEAT_hvm_callback_vector))
Sheng Yang38e20b02010-05-14 12:40:51 +01001746 xen_callback_vector();
Mukesh Rathor27713742013-12-11 15:36:51 -05001747
1748 if (xen_hvm_domain()) {
Sheng Yang38e20b02010-05-14 12:40:51 +01001749 native_init_IRQ();
Stefano Stabellini3942b742010-06-24 17:50:18 +01001750 /* pci_xen_hvm_init must be called after native_init_IRQ so that
1751 * __acpi_register_gsi can point at the right function */
1752 pci_xen_hvm_init();
Sheng Yang38e20b02010-05-14 12:40:51 +01001753 } else {
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +00001754 int rc;
Stefano Stabellini9846ff12012-01-30 16:21:48 +00001755 struct physdev_pirq_eoi_gmfn eoi_gmfn;
1756
Stefano Stabellini9846ff12012-01-30 16:21:48 +00001757 pirq_eoi_map = (void *)__get_free_page(GFP_KERNEL|__GFP_ZERO);
Julien Grall0df4f262015-08-07 17:34:37 +01001758 eoi_gmfn.gmfn = virt_to_gfn(pirq_eoi_map);
Stefano Stabellini9846ff12012-01-30 16:21:48 +00001759 rc = HYPERVISOR_physdev_op(PHYSDEVOP_pirq_eoi_gmfn_v2, &eoi_gmfn);
1760 if (rc != 0) {
1761 free_page((unsigned long) pirq_eoi_map);
1762 pirq_eoi_map = NULL;
1763 } else
1764 pirq_needs_eoi = pirq_check_eoi_map;
Sheng Yang38e20b02010-05-14 12:40:51 +01001765 }
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +00001766#endif
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001767}