blob: 2c0c4d6d0f83afcc0d70b696e4b216ed06086106 [file] [log] [blame]
Thomas Gleixner52a65ff2018-03-14 22:15:19 +01001// SPDX-License-Identifier: GPL-2.0
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01002/*
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01003 * Copyright (C) 2014 Intel Corp.
4 * Author: Jiang Liu <jiang.liu@linux.intel.com>
5 *
6 * This file is licensed under GPLv2.
7 *
8 * This file contains common code to support Message Signalled Interrupt for
9 * PCI compatible and non PCI compatible devices.
10 */
Jiang Liuaeeb5962014-11-15 22:24:05 +080011#include <linux/types.h>
12#include <linux/device.h>
Jiang Liuf3cf8bb2014-11-12 11:39:03 +010013#include <linux/irq.h>
14#include <linux/irqdomain.h>
15#include <linux/msi.h>
Marc Zyngier4e201562016-11-22 09:21:16 +000016#include <linux/slab.h>
Jiang Liud9109692014-11-15 22:24:04 +080017
Thomas Gleixner07557cc2017-09-13 23:29:05 +020018#include "internals.h"
19
Thomas Gleixner28f4b042016-09-14 16:18:47 +020020/**
21 * alloc_msi_entry - Allocate an initialize msi_entry
22 * @dev: Pointer to the device for which this is allocated
23 * @nvec: The number of vectors used in this entry
24 * @affinity: Optional pointer to an affinity mask array size of @nvec
25 *
Dou Liyangbec04032018-12-04 23:51:20 +080026 * If @affinity is not NULL then an affinity array[@nvec] is allocated
27 * and the affinity masks and flags from @affinity are copied.
Thomas Gleixner28f4b042016-09-14 16:18:47 +020028 */
Dou Liyangbec04032018-12-04 23:51:20 +080029struct msi_desc *alloc_msi_entry(struct device *dev, int nvec,
30 const struct irq_affinity_desc *affinity)
Jiang Liuaa48b6f2015-07-09 16:00:47 +080031{
Thomas Gleixner28f4b042016-09-14 16:18:47 +020032 struct msi_desc *desc;
33
34 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
Jiang Liuaa48b6f2015-07-09 16:00:47 +080035 if (!desc)
36 return NULL;
37
38 INIT_LIST_HEAD(&desc->list);
39 desc->dev = dev;
Thomas Gleixner28f4b042016-09-14 16:18:47 +020040 desc->nvec_used = nvec;
41 if (affinity) {
42 desc->affinity = kmemdup(affinity,
43 nvec * sizeof(*desc->affinity), GFP_KERNEL);
44 if (!desc->affinity) {
45 kfree(desc);
46 return NULL;
47 }
48 }
Jiang Liuaa48b6f2015-07-09 16:00:47 +080049
50 return desc;
51}
52
53void free_msi_entry(struct msi_desc *entry)
54{
Thomas Gleixner28f4b042016-09-14 16:18:47 +020055 kfree(entry->affinity);
Jiang Liuaa48b6f2015-07-09 16:00:47 +080056 kfree(entry);
57}
58
Jiang Liu38b6a1c2014-11-12 12:11:25 +010059void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
60{
61 *msg = entry->msg;
62}
63
64void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
65{
66 struct msi_desc *entry = irq_get_msi_desc(irq);
67
68 __get_cached_msi_msg(entry, msg);
69}
70EXPORT_SYMBOL_GPL(get_cached_msi_msg);
71
Jiang Liuf3cf8bb2014-11-12 11:39:03 +010072#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
Thomas Gleixner74faaf72014-12-06 21:20:20 +010073static inline void irq_chip_write_msi_msg(struct irq_data *data,
74 struct msi_msg *msg)
75{
76 data->chip->irq_write_msi_msg(data, msg);
77}
78
Marc Zyngier0be81532018-05-08 13:14:30 +010079static void msi_check_level(struct irq_domain *domain, struct msi_msg *msg)
80{
81 struct msi_domain_info *info = domain->host_data;
82
83 /*
84 * If the MSI provider has messed with the second message and
85 * not advertized that it is level-capable, signal the breakage.
86 */
87 WARN_ON(!((info->flags & MSI_FLAG_LEVEL_CAPABLE) &&
88 (info->chip->flags & IRQCHIP_SUPPORTS_LEVEL_MSI)) &&
89 (msg[1].address_lo || msg[1].address_hi || msg[1].data));
90}
91
Jiang Liuf3cf8bb2014-11-12 11:39:03 +010092/**
93 * msi_domain_set_affinity - Generic affinity setter function for MSI domains
94 * @irq_data: The irq data associated to the interrupt
95 * @mask: The affinity mask to set
96 * @force: Flag to enforce setting (disable online checks)
97 *
98 * Intended to be used by MSI interrupt controllers which are
99 * implemented with hierarchical domains.
100 */
101int msi_domain_set_affinity(struct irq_data *irq_data,
102 const struct cpumask *mask, bool force)
103{
104 struct irq_data *parent = irq_data->parent_data;
Marc Zyngier0be81532018-05-08 13:14:30 +0100105 struct msi_msg msg[2] = { [1] = { }, };
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100106 int ret;
107
108 ret = parent->chip->irq_set_affinity(parent, mask, force);
109 if (ret >= 0 && ret != IRQ_SET_MASK_OK_DONE) {
Marc Zyngier0be81532018-05-08 13:14:30 +0100110 BUG_ON(irq_chip_compose_msi_msg(irq_data, msg));
111 msi_check_level(irq_data->domain, msg);
112 irq_chip_write_msi_msg(irq_data, msg);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100113 }
114
115 return ret;
116}
117
Thomas Gleixner72491642017-09-13 23:29:10 +0200118static int msi_domain_activate(struct irq_domain *domain,
119 struct irq_data *irq_data, bool early)
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100120{
Marc Zyngier0be81532018-05-08 13:14:30 +0100121 struct msi_msg msg[2] = { [1] = { }, };
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100122
Marc Zyngier0be81532018-05-08 13:14:30 +0100123 BUG_ON(irq_chip_compose_msi_msg(irq_data, msg));
124 msi_check_level(irq_data->domain, msg);
125 irq_chip_write_msi_msg(irq_data, msg);
Thomas Gleixner72491642017-09-13 23:29:10 +0200126 return 0;
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100127}
128
129static void msi_domain_deactivate(struct irq_domain *domain,
130 struct irq_data *irq_data)
131{
Marc Zyngier0be81532018-05-08 13:14:30 +0100132 struct msi_msg msg[2];
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100133
Marc Zyngier0be81532018-05-08 13:14:30 +0100134 memset(msg, 0, sizeof(msg));
135 irq_chip_write_msi_msg(irq_data, msg);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100136}
137
138static int msi_domain_alloc(struct irq_domain *domain, unsigned int virq,
139 unsigned int nr_irqs, void *arg)
140{
141 struct msi_domain_info *info = domain->host_data;
142 struct msi_domain_ops *ops = info->ops;
143 irq_hw_number_t hwirq = ops->get_hwirq(info, arg);
144 int i, ret;
145
146 if (irq_find_mapping(domain, hwirq) > 0)
147 return -EEXIST;
148
Liu Jiangbf6f8692016-01-12 13:18:06 -0700149 if (domain->parent) {
150 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
151 if (ret < 0)
152 return ret;
153 }
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100154
155 for (i = 0; i < nr_irqs; i++) {
156 ret = ops->msi_init(domain, info, virq + i, hwirq + i, arg);
157 if (ret < 0) {
158 if (ops->msi_free) {
159 for (i--; i > 0; i--)
160 ops->msi_free(domain, info, virq + i);
161 }
162 irq_domain_free_irqs_top(domain, virq, nr_irqs);
163 return ret;
164 }
165 }
166
167 return 0;
168}
169
170static void msi_domain_free(struct irq_domain *domain, unsigned int virq,
171 unsigned int nr_irqs)
172{
173 struct msi_domain_info *info = domain->host_data;
174 int i;
175
176 if (info->ops->msi_free) {
177 for (i = 0; i < nr_irqs; i++)
178 info->ops->msi_free(domain, info, virq + i);
179 }
180 irq_domain_free_irqs_top(domain, virq, nr_irqs);
181}
182
Krzysztof Kozlowski01364022015-04-27 21:54:23 +0900183static const struct irq_domain_ops msi_domain_ops = {
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100184 .alloc = msi_domain_alloc,
185 .free = msi_domain_free,
186 .activate = msi_domain_activate,
187 .deactivate = msi_domain_deactivate,
188};
189
Jiang Liuaeeb5962014-11-15 22:24:05 +0800190static irq_hw_number_t msi_domain_ops_get_hwirq(struct msi_domain_info *info,
191 msi_alloc_info_t *arg)
192{
193 return arg->hwirq;
194}
195
196static int msi_domain_ops_prepare(struct irq_domain *domain, struct device *dev,
197 int nvec, msi_alloc_info_t *arg)
198{
199 memset(arg, 0, sizeof(*arg));
200 return 0;
201}
202
203static void msi_domain_ops_set_desc(msi_alloc_info_t *arg,
204 struct msi_desc *desc)
205{
206 arg->desc = desc;
207}
Jiang Liuaeeb5962014-11-15 22:24:05 +0800208
209static int msi_domain_ops_init(struct irq_domain *domain,
210 struct msi_domain_info *info,
211 unsigned int virq, irq_hw_number_t hwirq,
212 msi_alloc_info_t *arg)
213{
214 irq_domain_set_hwirq_and_chip(domain, virq, hwirq, info->chip,
215 info->chip_data);
216 if (info->handler && info->handler_name) {
217 __irq_set_handler(virq, info->handler, 0, info->handler_name);
218 if (info->handler_data)
219 irq_set_handler_data(virq, info->handler_data);
220 }
221 return 0;
222}
223
224static int msi_domain_ops_check(struct irq_domain *domain,
225 struct msi_domain_info *info,
226 struct device *dev)
227{
228 return 0;
229}
230
231static struct msi_domain_ops msi_domain_ops_default = {
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200232 .get_hwirq = msi_domain_ops_get_hwirq,
233 .msi_init = msi_domain_ops_init,
234 .msi_check = msi_domain_ops_check,
235 .msi_prepare = msi_domain_ops_prepare,
236 .set_desc = msi_domain_ops_set_desc,
237 .domain_alloc_irqs = __msi_domain_alloc_irqs,
238 .domain_free_irqs = __msi_domain_free_irqs,
Jiang Liuaeeb5962014-11-15 22:24:05 +0800239};
240
241static void msi_domain_update_dom_ops(struct msi_domain_info *info)
242{
243 struct msi_domain_ops *ops = info->ops;
244
245 if (ops == NULL) {
246 info->ops = &msi_domain_ops_default;
247 return;
248 }
249
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200250 if (ops->domain_alloc_irqs == NULL)
251 ops->domain_alloc_irqs = msi_domain_ops_default.domain_alloc_irqs;
252 if (ops->domain_free_irqs == NULL)
253 ops->domain_free_irqs = msi_domain_ops_default.domain_free_irqs;
254
255 if (!(info->flags & MSI_FLAG_USE_DEF_DOM_OPS))
256 return;
257
Jiang Liuaeeb5962014-11-15 22:24:05 +0800258 if (ops->get_hwirq == NULL)
259 ops->get_hwirq = msi_domain_ops_default.get_hwirq;
260 if (ops->msi_init == NULL)
261 ops->msi_init = msi_domain_ops_default.msi_init;
262 if (ops->msi_check == NULL)
263 ops->msi_check = msi_domain_ops_default.msi_check;
264 if (ops->msi_prepare == NULL)
265 ops->msi_prepare = msi_domain_ops_default.msi_prepare;
266 if (ops->set_desc == NULL)
267 ops->set_desc = msi_domain_ops_default.set_desc;
268}
269
270static void msi_domain_update_chip_ops(struct msi_domain_info *info)
271{
272 struct irq_chip *chip = info->chip;
273
Marc Zyngier0701c532015-10-13 19:14:45 +0100274 BUG_ON(!chip || !chip->irq_mask || !chip->irq_unmask);
Jiang Liuaeeb5962014-11-15 22:24:05 +0800275 if (!chip->irq_set_affinity)
276 chip->irq_set_affinity = msi_domain_set_affinity;
277}
278
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100279/**
280 * msi_create_irq_domain - Create a MSI interrupt domain
Marc Zyngierbe5436c2015-10-13 12:51:44 +0100281 * @fwnode: Optional fwnode of the interrupt controller
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100282 * @info: MSI domain info
283 * @parent: Parent irq domain
284 */
Marc Zyngierbe5436c2015-10-13 12:51:44 +0100285struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100286 struct msi_domain_info *info,
287 struct irq_domain *parent)
288{
Marc Zyngiera97b8522017-05-12 12:55:37 +0100289 struct irq_domain *domain;
290
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200291 msi_domain_update_dom_ops(info);
Jiang Liuaeeb5962014-11-15 22:24:05 +0800292 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
293 msi_domain_update_chip_ops(info);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100294
Marc Zyngiera97b8522017-05-12 12:55:37 +0100295 domain = irq_domain_create_hierarchy(parent, IRQ_DOMAIN_FLAG_MSI, 0,
296 fwnode, &msi_domain_ops, info);
Thomas Gleixner01653082017-06-20 01:37:04 +0200297
298 if (domain && !domain->name && info->chip)
Marc Zyngiera97b8522017-05-12 12:55:37 +0100299 domain->name = info->chip->name;
300
301 return domain;
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100302}
303
Marc Zyngierb2eba392015-11-23 08:26:05 +0000304int msi_domain_prepare_irqs(struct irq_domain *domain, struct device *dev,
305 int nvec, msi_alloc_info_t *arg)
306{
307 struct msi_domain_info *info = domain->host_data;
308 struct msi_domain_ops *ops = info->ops;
309 int ret;
310
311 ret = ops->msi_check(domain, info, dev);
312 if (ret == 0)
313 ret = ops->msi_prepare(domain, dev, nvec, arg);
314
315 return ret;
316}
317
Marc Zyngier2145ac92015-11-23 08:26:06 +0000318int msi_domain_populate_irqs(struct irq_domain *domain, struct device *dev,
319 int virq, int nvec, msi_alloc_info_t *arg)
320{
321 struct msi_domain_info *info = domain->host_data;
322 struct msi_domain_ops *ops = info->ops;
323 struct msi_desc *desc;
324 int ret = 0;
325
326 for_each_msi_entry(desc, dev) {
327 /* Don't even try the multi-MSI brain damage. */
328 if (WARN_ON(!desc->irq || desc->nvec_used != 1)) {
329 ret = -EINVAL;
330 break;
331 }
332
333 if (!(desc->irq >= virq && desc->irq < (virq + nvec)))
334 continue;
335
336 ops->set_desc(arg, desc);
337 /* Assumes the domain mutex is held! */
John Keeping596a7a12017-09-06 10:35:40 +0100338 ret = irq_domain_alloc_irqs_hierarchy(domain, desc->irq, 1,
339 arg);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000340 if (ret)
341 break;
342
John Keeping596a7a12017-09-06 10:35:40 +0100343 irq_set_msi_desc_off(desc->irq, 0, desc);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000344 }
345
346 if (ret) {
347 /* Mop up the damage */
348 for_each_msi_entry(desc, dev) {
349 if (!(desc->irq >= virq && desc->irq < (virq + nvec)))
350 continue;
351
352 irq_domain_free_irqs_common(domain, desc->irq, 1);
353 }
354 }
355
356 return ret;
357}
358
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100359/*
360 * Carefully check whether the device can use reservation mode. If
361 * reservation mode is enabled then the early activation will assign a
362 * dummy vector to the device. If the PCI/MSI device does not support
363 * masking of the entry then this can result in spurious interrupts when
364 * the device driver is not absolutely careful. But even then a malfunction
365 * of the hardware could result in a spurious interrupt on the dummy vector
366 * and render the device unusable. If the entry can be masked then the core
367 * logic will prevent the spurious interrupt and reservation mode can be
368 * used. For now reservation mode is restricted to PCI/MSI.
369 */
370static bool msi_check_reservation_mode(struct irq_domain *domain,
371 struct msi_domain_info *info,
372 struct device *dev)
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100373{
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100374 struct msi_desc *desc;
375
Thomas Gleixnerc6c9e2832020-08-26 13:16:51 +0200376 switch(domain->bus_token) {
377 case DOMAIN_BUS_PCI_MSI:
378 case DOMAIN_BUS_VMD_MSI:
379 break;
380 default:
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100381 return false;
Thomas Gleixnerc6c9e2832020-08-26 13:16:51 +0200382 }
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100383
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100384 if (!(info->flags & MSI_FLAG_MUST_REACTIVATE))
385 return false;
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100386
387 if (IS_ENABLED(CONFIG_PCI_MSI) && pci_msi_ignore_mask)
388 return false;
389
390 /*
391 * Checking the first MSI descriptor is sufficient. MSIX supports
392 * masking and MSI does so when the maskbit is set.
393 */
394 desc = first_msi_entry(dev);
395 return desc->msi_attrib.is_msix || desc->msi_attrib.maskbit;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100396}
397
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200398int __msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev,
399 int nvec)
Jiang Liud9109692014-11-15 22:24:04 +0800400{
401 struct msi_domain_info *info = domain->host_data;
402 struct msi_domain_ops *ops = info->ops;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100403 struct irq_data *irq_data;
Jiang Liud9109692014-11-15 22:24:04 +0800404 struct msi_desc *desc;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100405 msi_alloc_info_t arg;
Thomas Gleixnerb6140912016-07-04 17:39:22 +0900406 int i, ret, virq;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100407 bool can_reserve;
Jiang Liud9109692014-11-15 22:24:04 +0800408
Marc Zyngierb2eba392015-11-23 08:26:05 +0000409 ret = msi_domain_prepare_irqs(domain, dev, nvec, &arg);
Jiang Liud9109692014-11-15 22:24:04 +0800410 if (ret)
411 return ret;
412
413 for_each_msi_entry(desc, dev) {
414 ops->set_desc(&arg, desc);
415
Thomas Gleixnerb6140912016-07-04 17:39:22 +0900416 virq = __irq_domain_alloc_irqs(domain, -1, desc->nvec_used,
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900417 dev_to_node(dev), &arg, false,
Thomas Gleixner0972fa52016-07-04 17:39:26 +0900418 desc->affinity);
Jiang Liud9109692014-11-15 22:24:04 +0800419 if (virq < 0) {
420 ret = -ENOSPC;
421 if (ops->handle_error)
422 ret = ops->handle_error(domain, desc, ret);
423 if (ops->msi_finish)
424 ops->msi_finish(&arg, ret);
425 return ret;
426 }
427
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200428 for (i = 0; i < desc->nvec_used; i++) {
Jiang Liud9109692014-11-15 22:24:04 +0800429 irq_set_msi_desc_off(virq, i, desc);
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200430 irq_debugfs_copy_devname(virq + i, dev);
431 }
Jiang Liud9109692014-11-15 22:24:04 +0800432 }
433
434 if (ops->msi_finish)
435 ops->msi_finish(&arg, 0);
436
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100437 can_reserve = msi_check_reservation_mode(domain, info, dev);
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100438
Jiang Liud9109692014-11-15 22:24:04 +0800439 for_each_msi_entry(desc, dev) {
Thomas Gleixner4364e1a2016-07-04 15:32:25 +0200440 virq = desc->irq;
Jiang Liud9109692014-11-15 22:24:04 +0800441 if (desc->nvec_used == 1)
442 dev_dbg(dev, "irq %d for MSI\n", virq);
443 else
444 dev_dbg(dev, "irq [%d-%d] for MSI\n",
445 virq, virq + desc->nvec_used - 1);
Marc Zyngierf3b09462016-07-13 17:18:33 +0100446 /*
447 * This flag is set by the PCI layer as we need to activate
448 * the MSI entries before the PCI layer enables MSI in the
449 * card. Otherwise the card latches a random msi message.
450 */
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100451 if (!(info->flags & MSI_FLAG_ACTIVATE_EARLY))
452 continue;
Marc Zyngierf3b09462016-07-13 17:18:33 +0100453
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100454 irq_data = irq_domain_get_irq_data(domain, desc->irq);
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100455 if (!can_reserve) {
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100456 irqd_clr_can_reserve(irq_data);
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100457 if (domain->flags & IRQ_DOMAIN_MSI_NOMASK_QUIRK)
458 irqd_set_msi_nomask_quirk(irq_data);
459 }
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100460 ret = irq_domain_activate_irq(irq_data, can_reserve);
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100461 if (ret)
462 goto cleanup;
463 }
464
465 /*
466 * If these interrupts use reservation mode, clear the activated bit
467 * so request_irq() will assign the final vector.
468 */
469 if (can_reserve) {
470 for_each_msi_entry(desc, dev) {
Marc Zyngierf3b09462016-07-13 17:18:33 +0100471 irq_data = irq_domain_get_irq_data(domain, desc->irq);
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100472 irqd_clr_activated(irq_data);
Marc Zyngierf3b09462016-07-13 17:18:33 +0100473 }
Jiang Liud9109692014-11-15 22:24:04 +0800474 }
Jiang Liud9109692014-11-15 22:24:04 +0800475 return 0;
Thomas Gleixnerbb9b4282017-09-13 23:29:11 +0200476
477cleanup:
478 for_each_msi_entry(desc, dev) {
479 struct irq_data *irqd;
480
481 if (desc->irq == virq)
482 break;
483
484 irqd = irq_domain_get_irq_data(domain, desc->irq);
485 if (irqd_is_activated(irqd))
486 irq_domain_deactivate_irq(irqd);
487 }
488 msi_domain_free_irqs(domain, dev);
489 return ret;
Jiang Liud9109692014-11-15 22:24:04 +0800490}
491
492/**
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200493 * msi_domain_alloc_irqs - Allocate interrupts from a MSI interrupt domain
494 * @domain: The domain to allocate from
Jiang Liud9109692014-11-15 22:24:04 +0800495 * @dev: Pointer to device struct of the device for which the interrupts
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200496 * are allocated
497 * @nvec: The number of interrupts to allocate
498 *
499 * Returns 0 on success or an error code.
Jiang Liud9109692014-11-15 22:24:04 +0800500 */
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200501int msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev,
502 int nvec)
503{
504 struct msi_domain_info *info = domain->host_data;
505 struct msi_domain_ops *ops = info->ops;
506
507 return ops->domain_alloc_irqs(domain, dev, nvec);
508}
509
510void __msi_domain_free_irqs(struct irq_domain *domain, struct device *dev)
Jiang Liud9109692014-11-15 22:24:04 +0800511{
512 struct msi_desc *desc;
513
514 for_each_msi_entry(desc, dev) {
Marc Zyngierfe0c52f2015-01-26 19:10:19 +0000515 /*
516 * We might have failed to allocate an MSI early
517 * enough that there is no IRQ associated to this
518 * entry. If that's the case, don't do anything.
519 */
520 if (desc->irq) {
521 irq_domain_free_irqs(desc->irq, desc->nvec_used);
522 desc->irq = 0;
523 }
Jiang Liud9109692014-11-15 22:24:04 +0800524 }
525}
526
527/**
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200528 * __msi_domain_free_irqs - Free interrupts from a MSI interrupt @domain associated tp @dev
529 * @domain: The domain to managing the interrupts
530 * @dev: Pointer to device struct of the device for which the interrupts
531 * are free
532 */
533void msi_domain_free_irqs(struct irq_domain *domain, struct device *dev)
534{
535 struct msi_domain_info *info = domain->host_data;
536 struct msi_domain_ops *ops = info->ops;
537
538 return ops->domain_free_irqs(domain, dev);
539}
540
541/**
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100542 * msi_get_domain_info - Get the MSI interrupt domain info for @domain
543 * @domain: The interrupt domain to retrieve data from
544 *
545 * Returns the pointer to the msi_domain_info stored in
546 * @domain->host_data.
547 */
548struct msi_domain_info *msi_get_domain_info(struct irq_domain *domain)
549{
550 return (struct msi_domain_info *)domain->host_data;
551}
552
553#endif /* CONFIG_GENERIC_MSI_IRQ_DOMAIN */