blob: ebf57dba111fd249e2bd6c6f5bd5a480464d776a [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/msidef.h>
19#include <asm/hpet.h>
20#include <asm/hw_irq.h>
21#include <asm/apic.h>
22#include <asm/irq_remapping.h>
23
Jiang Liu52f518a2015-04-13 14:11:35 +080024static struct irq_domain *msi_default_domain;
25
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010026static void __irq_msi_compose_msg(struct irq_cfg *cfg, struct msi_msg *msg)
Jiang Liu3cb96f02015-04-13 14:11:34 +080027{
Jiang Liu3cb96f02015-04-13 14:11:34 +080028 msg->address_hi = MSI_ADDR_BASE_HI;
29
30 if (x2apic_enabled())
31 msg->address_hi |= MSI_ADDR_EXT_DEST_ID(cfg->dest_apicid);
32
33 msg->address_lo =
34 MSI_ADDR_BASE_LO |
35 ((apic->irq_dest_mode == 0) ?
36 MSI_ADDR_DEST_MODE_PHYSICAL :
37 MSI_ADDR_DEST_MODE_LOGICAL) |
Thomas Gleixnera31e58e2017-12-28 11:33:33 +010038 MSI_ADDR_REDIRECTION_CPU |
Jiang Liu3cb96f02015-04-13 14:11:34 +080039 MSI_ADDR_DEST_ID(cfg->dest_apicid);
40
41 msg->data =
42 MSI_DATA_TRIGGER_EDGE |
43 MSI_DATA_LEVEL_ASSERT |
Thomas Gleixnera31e58e2017-12-28 11:33:33 +010044 MSI_DATA_DELIVERY_FIXED |
Jiang Liu3cb96f02015-04-13 14:11:34 +080045 MSI_DATA_VECTOR(cfg->vector);
46}
47
Thomas Gleixnerb0a19552020-08-26 13:16:33 +020048void x86_vector_msi_compose_msg(struct irq_data *data, struct msi_msg *msg)
Thomas Gleixner6f1a4892020-01-31 15:26:52 +010049{
50 __irq_msi_compose_msg(irqd_cfg(data), msg);
51}
52
53static void irq_msi_update_msg(struct irq_data *irqd, struct irq_cfg *cfg)
54{
55 struct msi_msg msg[2] = { [1] = { }, };
56
57 __irq_msi_compose_msg(cfg, msg);
58 irq_data_get_irq_chip(irqd)->irq_write_msi_msg(irqd, msg);
59}
60
61static int
62msi_set_affinity(struct irq_data *irqd, const struct cpumask *mask, bool force)
63{
64 struct irq_cfg old_cfg, *cfg = irqd_cfg(irqd);
65 struct irq_data *parent = irqd->parent_data;
66 unsigned int cpu;
67 int ret;
68
69 /* Save the current configuration */
70 cpu = cpumask_first(irq_data_get_effective_affinity_mask(irqd));
71 old_cfg = *cfg;
72
73 /* Allocate a new target vector */
74 ret = parent->chip->irq_set_affinity(parent, mask, force);
75 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
76 return ret;
77
78 /*
79 * For non-maskable and non-remapped MSI interrupts the migration
80 * to a different destination CPU and a different vector has to be
81 * done careful to handle the possible stray interrupt which can be
82 * caused by the non-atomic update of the address/data pair.
83 *
84 * Direct update is possible when:
85 * - The MSI is maskable (remapped MSI does not use this code path)).
86 * The quirk bit is not set in this case.
87 * - The new vector is the same as the old vector
88 * - The old vector is MANAGED_IRQ_SHUTDOWN_VECTOR (interrupt starts up)
89 * - The new destination CPU is the same as the old destination CPU
90 */
91 if (!irqd_msi_nomask_quirk(irqd) ||
92 cfg->vector == old_cfg.vector ||
93 old_cfg.vector == MANAGED_IRQ_SHUTDOWN_VECTOR ||
94 cfg->dest_apicid == old_cfg.dest_apicid) {
95 irq_msi_update_msg(irqd, cfg);
96 return ret;
97 }
98
99 /*
100 * Paranoia: Validate that the interrupt target is the local
101 * CPU.
102 */
103 if (WARN_ON_ONCE(cpu != smp_processor_id())) {
104 irq_msi_update_msg(irqd, cfg);
105 return ret;
106 }
107
108 /*
109 * Redirect the interrupt to the new vector on the current CPU
110 * first. This might cause a spurious interrupt on this vector if
111 * the device raises an interrupt right between this update and the
112 * update to the final destination CPU.
113 *
114 * If the vector is in use then the installed device handler will
115 * denote it as spurious which is no harm as this is a rare event
116 * and interrupt handlers have to cope with spurious interrupts
117 * anyway. If the vector is unused, then it is marked so it won't
Thomas Gleixnerfa5e5c42020-05-21 22:05:37 +0200118 * trigger the 'No irq handler for vector' warning in
119 * common_interrupt().
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100120 *
121 * This requires to hold vector lock to prevent concurrent updates to
122 * the affected vector.
123 */
124 lock_vector_lock();
125
126 /*
127 * Mark the new target vector on the local CPU if it is currently
128 * unused. Reuse the VECTOR_RETRIGGERED state which is also used in
129 * the CPU hotplug path for a similar purpose. This cannot be
130 * undone here as the current CPU has interrupts disabled and
131 * cannot handle the interrupt before the whole set_affinity()
132 * section is done. In the CPU unplug case, the current CPU is
133 * about to vanish and will not handle any interrupts anymore. The
134 * vector is cleaned up when the CPU comes online again.
135 */
136 if (IS_ERR_OR_NULL(this_cpu_read(vector_irq[cfg->vector])))
137 this_cpu_write(vector_irq[cfg->vector], VECTOR_RETRIGGERED);
138
139 /* Redirect it to the new vector on the local CPU temporarily */
140 old_cfg.vector = cfg->vector;
141 irq_msi_update_msg(irqd, &old_cfg);
142
143 /* Now transition it to the target CPU */
144 irq_msi_update_msg(irqd, cfg);
145
146 /*
147 * All interrupts after this point are now targeted at the new
148 * vector/CPU.
149 *
150 * Drop vector lock before testing whether the temporary assignment
151 * to the local CPU was hit by an interrupt raised in the device,
152 * because the retrigger function acquires vector lock again.
153 */
154 unlock_vector_lock();
155
156 /*
157 * Check whether the transition raced with a device interrupt and
158 * is pending in the local APICs IRR. It is safe to do this outside
159 * of vector lock as the irq_desc::lock of this interrupt is still
160 * held and interrupts are disabled: The check is not accessing the
161 * underlying vector store. It's just checking the local APIC's
162 * IRR.
163 */
164 if (lapic_vector_set_in_irr(cfg->vector))
165 irq_data_get_irq_chip(irqd)->irq_retrigger(irqd);
166
167 return ret;
168}
169
Jiang Liu44380982014-10-27 16:12:02 +0800170/*
171 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
172 * which implement the MSI or MSI-X Capability Structure.
173 */
Jiang Liu52f518a2015-04-13 14:11:35 +0800174static struct irq_chip pci_msi_controller = {
Jiang Liu44380982014-10-27 16:12:02 +0800175 .name = "PCI-MSI",
176 .irq_unmask = pci_msi_unmask_irq,
177 .irq_mask = pci_msi_mask_irq,
Jiang Liu52f518a2015-04-13 14:11:35 +0800178 .irq_ack = irq_chip_ack_parent,
Jiang Liu52f518a2015-04-13 14:11:35 +0800179 .irq_retrigger = irq_chip_retrigger_hierarchy,
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100180 .irq_set_affinity = msi_set_affinity,
Jiang Liu44380982014-10-27 16:12:02 +0800181 .flags = IRQCHIP_SKIP_SET_WAKE,
182};
183
Jiang Liu44380982014-10-27 16:12:02 +0800184int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
185{
Jiang Liu52f518a2015-04-13 14:11:35 +0800186 struct irq_domain *domain;
187 struct irq_alloc_info info;
Jiang Liu44380982014-10-27 16:12:02 +0800188
Jiang Liu52f518a2015-04-13 14:11:35 +0800189 init_irq_alloc_info(&info, NULL);
Thomas Gleixner801b5e42020-08-26 13:16:35 +0200190 info.type = X86_IRQ_ALLOC_TYPE_PCI_MSI;
Jiang Liu52f518a2015-04-13 14:11:35 +0800191 info.msi_dev = dev;
Jiang Liu44380982014-10-27 16:12:02 +0800192
Jiang Liu52f518a2015-04-13 14:11:35 +0800193 domain = irq_remapping_get_irq_domain(&info);
194 if (domain == NULL)
195 domain = msi_default_domain;
196 if (domain == NULL)
197 return -ENOSYS;
Jiang Liu44380982014-10-27 16:12:02 +0800198
Christoph Hellwig699c4ce2017-02-08 18:17:44 +0100199 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
Jiang Liu44380982014-10-27 16:12:02 +0800200}
201
202void native_teardown_msi_irq(unsigned int irq)
203{
Jiang Liu4c8f9962015-04-13 14:11:26 +0800204 irq_domain_free_irqs(irq, 1);
Jiang Liu44380982014-10-27 16:12:02 +0800205}
206
Jiang Liu52f518a2015-04-13 14:11:35 +0800207static irq_hw_number_t pci_msi_get_hwirq(struct msi_domain_info *info,
208 msi_alloc_info_t *arg)
209{
210 return arg->msi_hwirq;
211}
212
Jake Oshinsc8f3e512015-12-10 17:52:59 +0000213int pci_msi_prepare(struct irq_domain *domain, struct device *dev, int nvec,
214 msi_alloc_info_t *arg)
Jiang Liu52f518a2015-04-13 14:11:35 +0800215{
216 struct pci_dev *pdev = to_pci_dev(dev);
217 struct msi_desc *desc = first_pci_msi_entry(pdev);
218
219 init_irq_alloc_info(arg, NULL);
220 arg->msi_dev = pdev;
221 if (desc->msi_attrib.is_msix) {
Thomas Gleixner801b5e42020-08-26 13:16:35 +0200222 arg->type = X86_IRQ_ALLOC_TYPE_PCI_MSIX;
Jiang Liu52f518a2015-04-13 14:11:35 +0800223 } else {
Thomas Gleixner801b5e42020-08-26 13:16:35 +0200224 arg->type = X86_IRQ_ALLOC_TYPE_PCI_MSI;
Jiang Liu52f518a2015-04-13 14:11:35 +0800225 arg->flags |= X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
226 }
227
228 return 0;
229}
Jake Oshinsc8f3e512015-12-10 17:52:59 +0000230EXPORT_SYMBOL_GPL(pci_msi_prepare);
Jiang Liu52f518a2015-04-13 14:11:35 +0800231
Jake Oshinsc8f3e512015-12-10 17:52:59 +0000232void pci_msi_set_desc(msi_alloc_info_t *arg, struct msi_desc *desc)
Jiang Liu52f518a2015-04-13 14:11:35 +0800233{
234 arg->msi_hwirq = pci_msi_domain_calc_hwirq(arg->msi_dev, desc);
235}
Jake Oshinsc8f3e512015-12-10 17:52:59 +0000236EXPORT_SYMBOL_GPL(pci_msi_set_desc);
Jiang Liu52f518a2015-04-13 14:11:35 +0800237
238static struct msi_domain_ops pci_msi_domain_ops = {
239 .get_hwirq = pci_msi_get_hwirq,
240 .msi_prepare = pci_msi_prepare,
241 .set_desc = pci_msi_set_desc,
242};
243
244static struct msi_domain_info pci_msi_domain_info = {
245 .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
Jiang Liu68682a22015-04-13 14:11:46 +0800246 MSI_FLAG_PCI_MSIX,
Jiang Liu52f518a2015-04-13 14:11:35 +0800247 .ops = &pci_msi_domain_ops,
248 .chip = &pci_msi_controller,
249 .handler = handle_edge_irq,
250 .handler_name = "edge",
251};
252
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200253void __init arch_init_msi_domain(struct irq_domain *parent)
Jiang Liu52f518a2015-04-13 14:11:35 +0800254{
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200255 struct fwnode_handle *fn;
256
Jiang Liu52f518a2015-04-13 14:11:35 +0800257 if (disable_apic)
258 return;
259
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200260 fn = irq_domain_alloc_named_fwnode("PCI-MSI");
261 if (fn) {
262 msi_default_domain =
263 pci_msi_create_irq_domain(fn, &pci_msi_domain_info,
264 parent);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200265 }
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200266 if (!msi_default_domain) {
267 irq_domain_free_fwnode(fn);
Jiang Liu52f518a2015-04-13 14:11:35 +0800268 pr_warn("failed to initialize irqdomain for MSI/MSI-x.\n");
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200269 } else {
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100270 msi_default_domain->flags |= IRQ_DOMAIN_MSI_NOMASK_QUIRK;
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200271 }
Jiang Liu52f518a2015-04-13 14:11:35 +0800272}
273
274#ifdef CONFIG_IRQ_REMAP
Jiang Liu68682a22015-04-13 14:11:46 +0800275static struct irq_chip pci_msi_ir_controller = {
276 .name = "IR-PCI-MSI",
277 .irq_unmask = pci_msi_unmask_irq,
278 .irq_mask = pci_msi_mask_irq,
279 .irq_ack = irq_chip_ack_parent,
Jiang Liu68682a22015-04-13 14:11:46 +0800280 .irq_retrigger = irq_chip_retrigger_hierarchy,
Jiang Liu68682a22015-04-13 14:11:46 +0800281 .flags = IRQCHIP_SKIP_SET_WAKE,
282};
283
284static struct msi_domain_info pci_msi_ir_domain_info = {
285 .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
286 MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX,
287 .ops = &pci_msi_domain_ops,
288 .chip = &pci_msi_ir_controller,
289 .handler = handle_edge_irq,
290 .handler_name = "edge",
291};
292
Thomas Gleixner667724c2017-06-20 01:37:10 +0200293struct irq_domain *arch_create_remap_msi_irq_domain(struct irq_domain *parent,
294 const char *name, int id)
295{
296 struct fwnode_handle *fn;
297 struct irq_domain *d;
298
299 fn = irq_domain_alloc_named_id_fwnode(name, id);
300 if (!fn)
301 return NULL;
302 d = pci_msi_create_irq_domain(fn, &pci_msi_ir_domain_info, parent);
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200303 if (!d)
304 irq_domain_free_fwnode(fn);
Thomas Gleixner667724c2017-06-20 01:37:10 +0200305 return d;
306}
Jiang Liu52f518a2015-04-13 14:11:35 +0800307#endif
308
Jiang Liu44380982014-10-27 16:12:02 +0800309#ifdef CONFIG_DMAR_TABLE
Jiang Liu62ac1782015-04-13 14:11:48 +0800310static void dmar_msi_write_msg(struct irq_data *data, struct msi_msg *msg)
311{
312 dmar_msi_write(data->irq, msg);
313}
314
Jiang Liu0921f1d2015-04-13 14:11:42 +0800315static struct irq_chip dmar_msi_controller = {
Jiang Liu81dabe22015-04-13 14:11:45 +0800316 .name = "DMAR-MSI",
Jiang Liu44380982014-10-27 16:12:02 +0800317 .irq_unmask = dmar_msi_unmask,
318 .irq_mask = dmar_msi_mask,
Jiang Liu0921f1d2015-04-13 14:11:42 +0800319 .irq_ack = irq_chip_ack_parent,
Jiang Liue390d892015-04-13 14:11:49 +0800320 .irq_set_affinity = msi_domain_set_affinity,
Jiang Liu0921f1d2015-04-13 14:11:42 +0800321 .irq_retrigger = irq_chip_retrigger_hierarchy,
Jiang Liu62ac1782015-04-13 14:11:48 +0800322 .irq_write_msi_msg = dmar_msi_write_msg,
Jiang Liu44380982014-10-27 16:12:02 +0800323 .flags = IRQCHIP_SKIP_SET_WAKE,
324};
325
Jiang Liue390d892015-04-13 14:11:49 +0800326static irq_hw_number_t dmar_msi_get_hwirq(struct msi_domain_info *info,
327 msi_alloc_info_t *arg)
Jiang Liu44380982014-10-27 16:12:02 +0800328{
Thomas Gleixner55e03912020-08-26 13:16:43 +0200329 return arg->hwirq;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800330}
331
Jiang Liue390d892015-04-13 14:11:49 +0800332static int dmar_msi_init(struct irq_domain *domain,
333 struct msi_domain_info *info, unsigned int virq,
334 irq_hw_number_t hwirq, msi_alloc_info_t *arg)
Jiang Liu0921f1d2015-04-13 14:11:42 +0800335{
Thomas Gleixner55e03912020-08-26 13:16:43 +0200336 irq_domain_set_info(domain, virq, arg->devid, info->chip, NULL,
337 handle_edge_irq, arg->data, "edge");
Jiang Liue390d892015-04-13 14:11:49 +0800338
339 return 0;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800340}
341
Jiang Liue390d892015-04-13 14:11:49 +0800342static struct msi_domain_ops dmar_msi_domain_ops = {
343 .get_hwirq = dmar_msi_get_hwirq,
344 .msi_init = dmar_msi_init,
345};
Jiang Liu0921f1d2015-04-13 14:11:42 +0800346
Jiang Liue390d892015-04-13 14:11:49 +0800347static struct msi_domain_info dmar_msi_domain_info = {
348 .ops = &dmar_msi_domain_ops,
349 .chip = &dmar_msi_controller,
Jiang Liu0921f1d2015-04-13 14:11:42 +0800350};
351
352static struct irq_domain *dmar_get_irq_domain(void)
353{
354 static struct irq_domain *dmar_domain;
355 static DEFINE_MUTEX(dmar_lock);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200356 struct fwnode_handle *fn;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800357
358 mutex_lock(&dmar_lock);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200359 if (dmar_domain)
360 goto out;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800361
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200362 fn = irq_domain_alloc_named_fwnode("DMAR-MSI");
363 if (fn) {
364 dmar_domain = msi_create_irq_domain(fn, &dmar_msi_domain_info,
365 x86_vector_domain);
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200366 if (!dmar_domain)
367 irq_domain_free_fwnode(fn);
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200368 }
369out:
370 mutex_unlock(&dmar_lock);
Jiang Liu0921f1d2015-04-13 14:11:42 +0800371 return dmar_domain;
372}
373
374int dmar_alloc_hwirq(int id, int node, void *arg)
375{
376 struct irq_domain *domain = dmar_get_irq_domain();
377 struct irq_alloc_info info;
378
379 if (!domain)
380 return -1;
381
382 init_irq_alloc_info(&info, NULL);
383 info.type = X86_IRQ_ALLOC_TYPE_DMAR;
Thomas Gleixner55e03912020-08-26 13:16:43 +0200384 info.devid = id;
385 info.data = arg;
Jiang Liu0921f1d2015-04-13 14:11:42 +0800386
387 return irq_domain_alloc_irqs(domain, 1, node, &info);
Jiang Liua62b32c2015-04-13 14:11:29 +0800388}
389
390void dmar_free_hwirq(int irq)
391{
392 irq_domain_free_irqs(irq, 1);
393}
Jiang Liu44380982014-10-27 16:12:02 +0800394#endif
395
396/*
397 * MSI message composition
398 */
399#ifdef CONFIG_HPET_TIMER
Jiang Liu3cb96f02015-04-13 14:11:34 +0800400static inline int hpet_dev_id(struct irq_domain *domain)
401{
Jiang Liue390d892015-04-13 14:11:49 +0800402 struct msi_domain_info *info = msi_get_domain_info(domain);
Jiang Liu44380982014-10-27 16:12:02 +0800403
Jiang Liue390d892015-04-13 14:11:49 +0800404 return (int)(long)info->data;
Jiang Liu44380982014-10-27 16:12:02 +0800405}
406
Jiang Liu62ac1782015-04-13 14:11:48 +0800407static void hpet_msi_write_msg(struct irq_data *data, struct msi_msg *msg)
408{
Jiang Liuff96b4d2015-06-01 16:05:18 +0800409 hpet_msi_write(irq_data_get_irq_handler_data(data), msg);
Jiang Liu62ac1782015-04-13 14:11:48 +0800410}
411
Kees Cook404f6aa2016-08-08 16:29:06 -0700412static struct irq_chip hpet_msi_controller __ro_after_init = {
Jiang Liu81dabe22015-04-13 14:11:45 +0800413 .name = "HPET-MSI",
Jiang Liu44380982014-10-27 16:12:02 +0800414 .irq_unmask = hpet_msi_unmask,
415 .irq_mask = hpet_msi_mask,
Jiang Liu3cb96f02015-04-13 14:11:34 +0800416 .irq_ack = irq_chip_ack_parent,
Jiang Liue390d892015-04-13 14:11:49 +0800417 .irq_set_affinity = msi_domain_set_affinity,
Jiang Liu3cb96f02015-04-13 14:11:34 +0800418 .irq_retrigger = irq_chip_retrigger_hierarchy,
Jiang Liu62ac1782015-04-13 14:11:48 +0800419 .irq_write_msi_msg = hpet_msi_write_msg,
Jiang Liu44380982014-10-27 16:12:02 +0800420 .flags = IRQCHIP_SKIP_SET_WAKE,
421};
422
Jiang Liue390d892015-04-13 14:11:49 +0800423static irq_hw_number_t hpet_msi_get_hwirq(struct msi_domain_info *info,
424 msi_alloc_info_t *arg)
Jiang Liu3cb96f02015-04-13 14:11:34 +0800425{
Thomas Gleixner2bf1e7b2020-08-26 13:16:41 +0200426 return arg->hwirq;
Jiang Liu3cb96f02015-04-13 14:11:34 +0800427}
428
Jiang Liue390d892015-04-13 14:11:49 +0800429static int hpet_msi_init(struct irq_domain *domain,
430 struct msi_domain_info *info, unsigned int virq,
431 irq_hw_number_t hwirq, msi_alloc_info_t *arg)
Jiang Liu3cb96f02015-04-13 14:11:34 +0800432{
Jiang Liue390d892015-04-13 14:11:49 +0800433 irq_set_status_flags(virq, IRQ_MOVE_PCNTXT);
Thomas Gleixner2bf1e7b2020-08-26 13:16:41 +0200434 irq_domain_set_info(domain, virq, arg->hwirq, info->chip, NULL,
435 handle_edge_irq, arg->data, "edge");
Jiang Liue390d892015-04-13 14:11:49 +0800436
437 return 0;
438}
439
440static void hpet_msi_free(struct irq_domain *domain,
441 struct msi_domain_info *info, unsigned int virq)
442{
Jiang Liu3cb96f02015-04-13 14:11:34 +0800443 irq_clear_status_flags(virq, IRQ_MOVE_PCNTXT);
Jiang Liu3cb96f02015-04-13 14:11:34 +0800444}
445
Jiang Liue390d892015-04-13 14:11:49 +0800446static struct msi_domain_ops hpet_msi_domain_ops = {
447 .get_hwirq = hpet_msi_get_hwirq,
448 .msi_init = hpet_msi_init,
449 .msi_free = hpet_msi_free,
450};
Jiang Liu3cb96f02015-04-13 14:11:34 +0800451
Jiang Liue390d892015-04-13 14:11:49 +0800452static struct msi_domain_info hpet_msi_domain_info = {
453 .ops = &hpet_msi_domain_ops,
454 .chip = &hpet_msi_controller,
Jiang Liu3cb96f02015-04-13 14:11:34 +0800455};
456
457struct irq_domain *hpet_create_irq_domain(int hpet_id)
458{
Jiang Liue390d892015-04-13 14:11:49 +0800459 struct msi_domain_info *domain_info;
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200460 struct irq_domain *parent, *d;
461 struct irq_alloc_info info;
462 struct fwnode_handle *fn;
Jiang Liu3cb96f02015-04-13 14:11:34 +0800463
464 if (x86_vector_domain == NULL)
465 return NULL;
466
Jiang Liue390d892015-04-13 14:11:49 +0800467 domain_info = kzalloc(sizeof(*domain_info), GFP_KERNEL);
468 if (!domain_info)
469 return NULL;
470
471 *domain_info = hpet_msi_domain_info;
472 domain_info->data = (void *)(long)hpet_id;
473
Jiang Liu3cb96f02015-04-13 14:11:34 +0800474 init_irq_alloc_info(&info, NULL);
Thomas Gleixnerb4c364d2020-08-26 13:16:36 +0200475 info.type = X86_IRQ_ALLOC_TYPE_HPET_GET_PARENT;
Thomas Gleixner2bf1e7b2020-08-26 13:16:41 +0200476 info.devid = hpet_id;
Thomas Gleixner6b6256e2020-08-26 13:16:39 +0200477 parent = irq_remapping_get_irq_domain(&info);
Thomas Gleixnerb0a19552020-08-26 13:16:33 +0200478 if (parent == NULL)
Jiang Liu3cb96f02015-04-13 14:11:34 +0800479 parent = x86_vector_domain;
Thomas Gleixnerb0a19552020-08-26 13:16:33 +0200480 else
Jiang Liu68682a22015-04-13 14:11:46 +0800481 hpet_msi_controller.name = "IR-HPET-MSI";
Jiang Liu3cb96f02015-04-13 14:11:34 +0800482
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200483 fn = irq_domain_alloc_named_id_fwnode(hpet_msi_controller.name,
484 hpet_id);
485 if (!fn) {
486 kfree(domain_info);
487 return NULL;
488 }
489
490 d = msi_create_irq_domain(fn, domain_info, parent);
Thomas Gleixnere3beca482020-07-09 11:53:06 +0200491 if (!d) {
492 irq_domain_free_fwnode(fn);
493 kfree(domain_info);
494 }
Thomas Gleixnerf8f37ca2017-06-20 01:37:14 +0200495 return d;
Jiang Liu3cb96f02015-04-13 14:11:34 +0800496}
497
Thomas Gleixner4d5e6832019-06-23 15:24:03 +0200498int hpet_assign_irq(struct irq_domain *domain, struct hpet_channel *hc,
Jiang Liu3cb96f02015-04-13 14:11:34 +0800499 int dev_num)
500{
501 struct irq_alloc_info info;
502
503 init_irq_alloc_info(&info, NULL);
504 info.type = X86_IRQ_ALLOC_TYPE_HPET;
Thomas Gleixner2bf1e7b2020-08-26 13:16:41 +0200505 info.data = hc;
506 info.devid = hpet_dev_id(domain);
507 info.hwirq = dev_num;
Jiang Liu3cb96f02015-04-13 14:11:34 +0800508
Sergey Senozhatsky4a00c952015-05-11 18:56:49 +0900509 return irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, &info);
Jiang Liu3cb96f02015-04-13 14:11:34 +0800510}
Jiang Liu44380982014-10-27 16:12:02 +0800511#endif