blob: 7517eb05bdc1a22c999b4598bd0f228113259ad8 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jiang Liu44380982014-10-27 16:12:02 +08002/*
3 * Support of MSI, HPET and DMAR interrupts.
4 *
5 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
6 * Moved from arch/x86/kernel/apic/io_apic.c.
Jiang Liu52f518a2015-04-13 14:11:35 +08007 * Jiang Liu <jiang.liu@linux.intel.com>
8 * Convert to hierarchical irqdomain
Jiang Liu44380982014-10-27 16:12:02 +08009 */
10#include <linux/mm.h>
11#include <linux/interrupt.h>
Nicolai Stange447ae312018-07-29 12:15:33 +020012#include <linux/irq.h>
Jiang Liu44380982014-10-27 16:12:02 +080013#include <linux/pci.h>
14#include <linux/dmar.h>
15#include <linux/hpet.h>
16#include <linux/msi.h>
Jiang Liud746d1e2015-04-14 10:30:09 +080017#include <asm/irqdomain.h>
Jiang Liu44380982014-10-27 16:12:02 +080018#include <asm/hpet.h>
19#include <asm/hw_irq.h>
20#include <asm/apic.h>
21#include <asm/irq_remapping.h>
Thomas Gleixnerae72f312021-12-06 23:27:42 +010022#include <asm/xen/hypervisor.h>
Jiang Liu44380982014-10-27 16:12:02 +080023
Thomas Gleixner2c681e62020-08-26 13:17:01 +020024struct irq_domain *x86_pci_msi_default_domain __ro_after_init;
Jiang Liu52f518a2015-04-13 14:11:35 +080025
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010026static void irq_msi_update_msg(struct irq_data *irqd, struct irq_cfg *cfg)
27{
28 struct msi_msg msg[2] = { [1] = { }, };
29
David Woodhouse47bea872020-10-24 22:35:02 +010030 __irq_msi_compose_msg(cfg, msg, false);
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010031 irq_data_get_irq_chip(irqd)->irq_write_msi_msg(irqd, msg);
32}
33
34static int
35msi_set_affinity(struct irq_data *irqd, const struct cpumask *mask, bool force)
36{
37 struct irq_cfg old_cfg, *cfg = irqd_cfg(irqd);
38 struct irq_data *parent = irqd->parent_data;
39 unsigned int cpu;
40 int ret;
41
42 /* Save the current configuration */
43 cpu = cpumask_first(irq_data_get_effective_affinity_mask(irqd));
44 old_cfg = *cfg;
45
46 /* Allocate a new target vector */
47 ret = parent->chip->irq_set_affinity(parent, mask, force);
48 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
49 return ret;
50
51 /*
52 * For non-maskable and non-remapped MSI interrupts the migration
53 * to a different destination CPU and a different vector has to be
54 * done careful to handle the possible stray interrupt which can be
55 * caused by the non-atomic update of the address/data pair.
56 *
57 * Direct update is possible when:
58 * - The MSI is maskable (remapped MSI does not use this code path)).
59 * The quirk bit is not set in this case.
60 * - The new vector is the same as the old vector
61 * - The old vector is MANAGED_IRQ_SHUTDOWN_VECTOR (interrupt starts up)
Thomas Gleixnerff363f42021-07-29 23:51:50 +020062 * - The interrupt is not yet started up
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010063 * - The new destination CPU is the same as the old destination CPU
64 */
65 if (!irqd_msi_nomask_quirk(irqd) ||
66 cfg->vector == old_cfg.vector ||
67 old_cfg.vector == MANAGED_IRQ_SHUTDOWN_VECTOR ||
Thomas Gleixnerff363f42021-07-29 23:51:50 +020068 !irqd_is_started(irqd) ||
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010069 cfg->dest_apicid == old_cfg.dest_apicid) {
70 irq_msi_update_msg(irqd, cfg);
71 return ret;
72 }
73
74 /*
75 * Paranoia: Validate that the interrupt target is the local
76 * CPU.
77 */
78 if (WARN_ON_ONCE(cpu != smp_processor_id())) {
79 irq_msi_update_msg(irqd, cfg);
80 return ret;
81 }
82
83 /*
84 * Redirect the interrupt to the new vector on the current CPU
85 * first. This might cause a spurious interrupt on this vector if
86 * the device raises an interrupt right between this update and the
87 * update to the final destination CPU.
88 *
89 * If the vector is in use then the installed device handler will
90 * denote it as spurious which is no harm as this is a rare event
91 * and interrupt handlers have to cope with spurious interrupts
92 * anyway. If the vector is unused, then it is marked so it won't
Thomas Gleixnerfa5e5c42020-05-21 22:05:37 +020093 * trigger the 'No irq handler for vector' warning in
94 * common_interrupt().
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010095 *
96 * This requires to hold vector lock to prevent concurrent updates to
97 * the affected vector.
98 */
99 lock_vector_lock();
100
101 /*
102 * Mark the new target vector on the local CPU if it is currently
103 * unused. Reuse the VECTOR_RETRIGGERED state which is also used in
104 * the CPU hotplug path for a similar purpose. This cannot be
105 * undone here as the current CPU has interrupts disabled and
106 * cannot handle the interrupt before the whole set_affinity()
107 * section is done. In the CPU unplug case, the current CPU is
108 * about to vanish and will not handle any interrupts anymore. The
109 * vector is cleaned up when the CPU comes online again.
110 */
111 if (IS_ERR_OR_NULL(this_cpu_read(vector_irq[cfg->vector])))
112 this_cpu_write(vector_irq[cfg->vector], VECTOR_RETRIGGERED);
113
114 /* Redirect it to the new vector on the local CPU temporarily */
115 old_cfg.vector = cfg->vector;
116 irq_msi_update_msg(irqd, &old_cfg);
117
118 /* Now transition it to the target CPU */
119 irq_msi_update_msg(irqd, cfg);
120
121 /*
122 * All interrupts after this point are now targeted at the new
123 * vector/CPU.
124 *
125 * Drop vector lock before testing whether the temporary assignment
126 * to the local CPU was hit by an interrupt raised in the device,
127 * because the retrigger function acquires vector lock again.
128 */
129 unlock_vector_lock();
130
131 /*
132 * Check whether the transition raced with a device interrupt and
133 * is pending in the local APICs IRR. It is safe to do this outside
134 * of vector lock as the irq_desc::lock of this interrupt is still
135 * held and interrupts are disabled: The check is not accessing the
136 * underlying vector store. It's just checking the local APIC's
137 * IRR.
138 */
139 if (lapic_vector_set_in_irr(cfg->vector))
140 irq_data_get_irq_chip(irqd)->irq_retrigger(irqd);
141
142 return ret;
143}
144
Jiang Liu44380982014-10-27 16:12:02 +0800145/*
146 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
147 * which implement the MSI or MSI-X Capability Structure.
148 */
Jiang Liu52f518a2015-04-13 14:11:35 +0800149static struct irq_chip pci_msi_controller = {
Jiang Liu44380982014-10-27 16:12:02 +0800150 .name = "PCI-MSI",
151 .irq_unmask = pci_msi_unmask_irq,
152 .irq_mask = pci_msi_mask_irq,
Jiang Liu52f518a2015-04-13 14:11:35 +0800153 .irq_ack = irq_chip_ack_parent,
Jiang Liu52f518a2015-04-13 14:11:35 +0800154 .irq_retrigger = irq_chip_retrigger_hierarchy,
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100155 .irq_set_affinity = msi_set_affinity,
Thomas Gleixnerff363f42021-07-29 23:51:50 +0200156 .flags = IRQCHIP_SKIP_SET_WAKE |
157 IRQCHIP_AFFINITY_PRE_STARTUP,
Jiang Liu44380982014-10-27 16:12:02 +0800158};
159
Jake Oshinsc8f3e512015-12-10 17:52:59 +0000160int pci_msi_prepare(struct irq_domain *domain, struct device *dev, int nvec,
161 msi_alloc_info_t *arg)
Jiang Liu52f518a2015-04-13 14:11:35 +0800162{
Jiang Liu52f518a2015-04-13 14:11:35 +0800163 init_irq_alloc_info(arg, NULL);
Thomas Gleixnerb3f82362021-12-10 23:18:47 +0100164 if (to_pci_dev(dev)->msix_enabled) {
Thomas Gleixner801b5e42020-08-26 13:16:35 +0200165 arg->type = X86_IRQ_ALLOC_TYPE_PCI_MSIX;
Jiang Liu52f518a2015-04-13 14:11:35 +0800166 } else {
Thomas Gleixner801b5e42020-08-26 13:16:35 +0200167 arg->type = X86_IRQ_ALLOC_TYPE_PCI_MSI;
Jiang Liu52f518a2015-04-13 14:11:35 +0800168 arg->flags |= X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
169 }
170
171 return 0;
172}
Jake Oshinsc8f3e512015-12-10 17:52:59 +0000173EXPORT_SYMBOL_GPL(pci_msi_prepare);
Jiang Liu52f518a2015-04-13 14:11:35 +0800174
Jiang Liu52f518a2015-04-13 14:11:35 +0800175static struct msi_domain_ops pci_msi_domain_ops = {
Jiang Liu52f518a2015-04-13 14:11:35 +0800176 .msi_prepare = pci_msi_prepare,
Jiang Liu52f518a2015-04-13 14:11:35 +0800177};
178
179static struct msi_domain_info pci_msi_domain_info = {
180 .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
Jiang Liu68682a22015-04-13 14:11:46 +0800181 MSI_FLAG_PCI_MSIX,
Jiang Liu52f518a2015-04-13 14:11:35 +0800182 .ops = &pci_msi_domain_ops,
183 .chip = &pci_msi_controller,
184 .handler = handle_edge_irq,
185 .handler_name = "edge",
186};
187
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200188struct irq_domain * __init native_create_pci_msi_domain(void)
Jiang Liu52f518a2015-04-13 14:11:35 +0800189{
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200190 struct fwnode_handle *fn;
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200191 struct irq_domain *d;
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200192
Jiang Liu52f518a2015-04-13 14:11:35 +0800193 if (disable_apic)
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200194 return NULL;
Jiang Liu52f518a2015-04-13 14:11:35 +0800195
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200196 fn = irq_domain_alloc_named_fwnode("PCI-MSI");
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200197 if (!fn)
198 return NULL;
199
200 d = pci_msi_create_irq_domain(fn, &pci_msi_domain_info,
201 x86_vector_domain);
202 if (!d) {
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200203 irq_domain_free_fwnode(fn);
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200204 pr_warn("Failed to initialize PCI-MSI irqdomain.\n");
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200205 } else {
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200206 d->flags |= IRQ_DOMAIN_MSI_NOMASK_QUIRK;
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200207 }
Thomas Gleixner6b15ffa2020-08-26 13:16:50 +0200208 return d;
209}
210
211void __init x86_create_pci_msi_domain(void)
212{
213 x86_pci_msi_default_domain = x86_init.irqs.create_pci_msi_domain();
Jiang Liu52f518a2015-04-13 14:11:35 +0800214}
215
216#ifdef CONFIG_IRQ_REMAP
Jiang Liu68682a22015-04-13 14:11:46 +0800217static struct irq_chip pci_msi_ir_controller = {
218 .name = "IR-PCI-MSI",
219 .irq_unmask = pci_msi_unmask_irq,
220 .irq_mask = pci_msi_mask_irq,
221 .irq_ack = irq_chip_ack_parent,
Jiang Liu68682a22015-04-13 14:11:46 +0800222 .irq_retrigger = irq_chip_retrigger_hierarchy,
Thomas Gleixnerff363f42021-07-29 23:51:50 +0200223 .flags = IRQCHIP_SKIP_SET_WAKE |
224 IRQCHIP_AFFINITY_PRE_STARTUP,
Jiang Liu68682a22015-04-13 14:11:46 +0800225};
226
227static struct msi_domain_info pci_msi_ir_domain_info = {
228 .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
229 MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX,
230 .ops = &pci_msi_domain_ops,
231 .chip = &pci_msi_ir_controller,
232 .handler = handle_edge_irq,
233 .handler_name = "edge",
234};
235
Thomas Gleixner667724c2017-06-20 01:37:10 +0200236struct irq_domain *arch_create_remap_msi_irq_domain(struct irq_domain *parent,
237 const char *name, int id)
238{
239 struct fwnode_handle *fn;
240 struct irq_domain *d;
241
242 fn = irq_domain_alloc_named_id_fwnode(name, id);
243 if (!fn)
244 return NULL;
245 d = pci_msi_create_irq_domain(fn, &pci_msi_ir_domain_info, parent);
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200246 if (!d)
247 irq_domain_free_fwnode(fn);
Thomas Gleixner667724c2017-06-20 01:37:10 +0200248 return d;
249}
Jiang Liu52f518a2015-04-13 14:11:35 +0800250#endif
251
Jiang Liu44380982014-10-27 16:12:02 +0800252#ifdef CONFIG_DMAR_TABLE
David Woodhouse47bea872020-10-24 22:35:02 +0100253/*
254 * The Intel IOMMU (ab)uses the high bits of the MSI address to contain the
255 * high bits of the destination APIC ID. This can't be done in the general
256 * case for MSIs as it would be targeting real memory above 4GiB not the
257 * APIC.
258 */
259static void dmar_msi_compose_msg(struct irq_data *data, struct msi_msg *msg)
260{
261 __irq_msi_compose_msg(irqd_cfg(data), msg, true);
262}
263
Jiang Liu62ac1782015-04-13 14:11:48 +0800264static void dmar_msi_write_msg(struct irq_data *data, struct msi_msg *msg)
265{
266 dmar_msi_write(data->irq, msg);
267}
268
Jiang Liu0921f1d2015-04-13 14:11:42 +0800269static struct irq_chip dmar_msi_controller = {
Jiang Liu81dabe22015-04-13 14:11:45 +0800270 .name = "DMAR-MSI",
Jiang Liu44380982014-10-27 16:12:02 +0800271 .irq_unmask = dmar_msi_unmask,
272 .irq_mask = dmar_msi_mask,
Jiang Liu0921f1d2015-04-13 14:11:42 +0800273 .irq_ack = irq_chip_ack_parent,
Jiang Liue390d892015-04-13 14:11:49 +0800274 .irq_set_affinity = msi_domain_set_affinity,
Jiang Liu0921f1d2015-04-13 14:11:42 +0800275 .irq_retrigger = irq_chip_retrigger_hierarchy,
David Woodhouse47bea872020-10-24 22:35:02 +0100276 .irq_compose_msi_msg = dmar_msi_compose_msg,
Jiang Liu62ac1782015-04-13 14:11:48 +0800277 .irq_write_msi_msg = dmar_msi_write_msg,
Thomas Gleixnerff363f42021-07-29 23:51:50 +0200278 .flags = IRQCHIP_SKIP_SET_WAKE |
279 IRQCHIP_AFFINITY_PRE_STARTUP,
Jiang Liu44380982014-10-27 16:12:02 +0800280};
281
Jiang Liue390d892015-04-13 14:11:49 +0800282static int dmar_msi_init(struct irq_domain *domain,
283 struct msi_domain_info *info, unsigned int virq,
284 irq_hw_number_t hwirq, msi_alloc_info_t *arg)
Jiang Liu0921f1d2015-04-13 14:11:42 +0800285{
Thomas Gleixner55e03912020-08-26 13:16:43 +0200286 irq_domain_set_info(domain, virq, arg->devid, info->chip, NULL,
287 handle_edge_irq, arg->data, "edge");
Jiang Liue390d892015-04-13 14:11:49 +0800288
289 return 0;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800290}
291
Jiang Liue390d892015-04-13 14:11:49 +0800292static struct msi_domain_ops dmar_msi_domain_ops = {
Jiang Liue390d892015-04-13 14:11:49 +0800293 .msi_init = dmar_msi_init,
294};
Jiang Liu0921f1d2015-04-13 14:11:42 +0800295
Jiang Liue390d892015-04-13 14:11:49 +0800296static struct msi_domain_info dmar_msi_domain_info = {
297 .ops = &dmar_msi_domain_ops,
298 .chip = &dmar_msi_controller,
Thomas Gleixnerd27e6232020-09-27 10:46:44 +0200299 .flags = MSI_FLAG_USE_DEF_DOM_OPS,
Jiang Liu0921f1d2015-04-13 14:11:42 +0800300};
301
302static struct irq_domain *dmar_get_irq_domain(void)
303{
304 static struct irq_domain *dmar_domain;
305 static DEFINE_MUTEX(dmar_lock);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200306 struct fwnode_handle *fn;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800307
308 mutex_lock(&dmar_lock);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200309 if (dmar_domain)
310 goto out;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800311
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200312 fn = irq_domain_alloc_named_fwnode("DMAR-MSI");
313 if (fn) {
314 dmar_domain = msi_create_irq_domain(fn, &dmar_msi_domain_info,
315 x86_vector_domain);
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200316 if (!dmar_domain)
317 irq_domain_free_fwnode(fn);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200318 }
319out:
320 mutex_unlock(&dmar_lock);
Jiang Liu0921f1d2015-04-13 14:11:42 +0800321 return dmar_domain;
322}
323
324int dmar_alloc_hwirq(int id, int node, void *arg)
325{
326 struct irq_domain *domain = dmar_get_irq_domain();
327 struct irq_alloc_info info;
328
329 if (!domain)
330 return -1;
331
332 init_irq_alloc_info(&info, NULL);
333 info.type = X86_IRQ_ALLOC_TYPE_DMAR;
Thomas Gleixner55e03912020-08-26 13:16:43 +0200334 info.devid = id;
Thomas Gleixner9006c132020-08-26 13:16:47 +0200335 info.hwirq = id;
Thomas Gleixner55e03912020-08-26 13:16:43 +0200336 info.data = arg;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800337
338 return irq_domain_alloc_irqs(domain, 1, node, &info);
Jiang Liua62b32c2015-04-13 14:11:29 +0800339}
340
341void dmar_free_hwirq(int irq)
342{
343 irq_domain_free_irqs(irq, 1);
344}
Jiang Liu44380982014-10-27 16:12:02 +0800345#endif
Thomas Gleixnerae72f312021-12-06 23:27:42 +0100346
347bool arch_restore_msi_irqs(struct pci_dev *dev)
348{
349 return xen_initdom_restore_msi(dev);
350}