blob: 7f350ae59c5fdb6b03e4b4a01e5ccbba7f812fb6 [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 *
Ingo Molnara359f752021-03-22 04:21:30 +01008 * This file contains common code to support Message Signaled Interrupts for
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01009 * 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>
Barry Song2f170812021-08-13 15:56:27 +120017#include <linux/pci.h>
Jiang Liud9109692014-11-15 22:24:04 +080018
Thomas Gleixner07557cc2017-09-13 23:29:05 +020019#include "internals.h"
20
Thomas Gleixner28f4b042016-09-14 16:18:47 +020021/**
Randy Dunlap3b35e7e2021-08-10 16:48:35 -070022 * alloc_msi_entry - Allocate an initialized msi_desc
Thomas Gleixner28f4b042016-09-14 16:18:47 +020023 * @dev: Pointer to the device for which this is allocated
24 * @nvec: The number of vectors used in this entry
25 * @affinity: Optional pointer to an affinity mask array size of @nvec
26 *
Randy Dunlap3b35e7e2021-08-10 16:48:35 -070027 * If @affinity is not %NULL then an affinity array[@nvec] is allocated
Dou Liyangbec04032018-12-04 23:51:20 +080028 * and the affinity masks and flags from @affinity are copied.
Randy Dunlap3b35e7e2021-08-10 16:48:35 -070029 *
30 * Return: pointer to allocated &msi_desc on success or %NULL on failure
Thomas Gleixner28f4b042016-09-14 16:18:47 +020031 */
Dou Liyangbec04032018-12-04 23:51:20 +080032struct msi_desc *alloc_msi_entry(struct device *dev, int nvec,
33 const struct irq_affinity_desc *affinity)
Jiang Liuaa48b6f2015-07-09 16:00:47 +080034{
Thomas Gleixner28f4b042016-09-14 16:18:47 +020035 struct msi_desc *desc;
36
37 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
Jiang Liuaa48b6f2015-07-09 16:00:47 +080038 if (!desc)
39 return NULL;
40
41 INIT_LIST_HEAD(&desc->list);
42 desc->dev = dev;
Thomas Gleixner28f4b042016-09-14 16:18:47 +020043 desc->nvec_used = nvec;
44 if (affinity) {
45 desc->affinity = kmemdup(affinity,
46 nvec * sizeof(*desc->affinity), GFP_KERNEL);
47 if (!desc->affinity) {
48 kfree(desc);
49 return NULL;
50 }
51 }
Jiang Liuaa48b6f2015-07-09 16:00:47 +080052
53 return desc;
54}
55
56void free_msi_entry(struct msi_desc *entry)
57{
Thomas Gleixner28f4b042016-09-14 16:18:47 +020058 kfree(entry->affinity);
Jiang Liuaa48b6f2015-07-09 16:00:47 +080059 kfree(entry);
60}
61
Jiang Liu38b6a1c2014-11-12 12:11:25 +010062void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
63{
64 *msg = entry->msg;
65}
66
67void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
68{
69 struct msi_desc *entry = irq_get_msi_desc(irq);
70
71 __get_cached_msi_msg(entry, msg);
72}
73EXPORT_SYMBOL_GPL(get_cached_msi_msg);
74
Barry Song2f170812021-08-13 15:56:27 +120075static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
76 char *buf)
77{
78 struct msi_desc *entry;
79 bool is_msix = false;
80 unsigned long irq;
81 int retval;
82
83 retval = kstrtoul(attr->attr.name, 10, &irq);
84 if (retval)
85 return retval;
86
87 entry = irq_get_msi_desc(irq);
88 if (!entry)
89 return -ENODEV;
90
91 if (dev_is_pci(dev))
92 is_msix = entry->msi_attrib.is_msix;
93
94 return sysfs_emit(buf, "%s\n", is_msix ? "msix" : "msi");
95}
96
97/**
98 * msi_populate_sysfs - Populate msi_irqs sysfs entries for devices
99 * @dev: The device(PCI, platform etc) who will get sysfs entries
100 *
101 * Return attribute_group ** so that specific bus MSI can save it to
102 * somewhere during initilizing msi irqs. If devices has no MSI irq,
103 * return NULL; if it fails to populate sysfs, return ERR_PTR
104 */
105const struct attribute_group **msi_populate_sysfs(struct device *dev)
106{
107 const struct attribute_group **msi_irq_groups;
108 struct attribute **msi_attrs, *msi_attr;
109 struct device_attribute *msi_dev_attr;
110 struct attribute_group *msi_irq_group;
111 struct msi_desc *entry;
112 int ret = -ENOMEM;
113 int num_msi = 0;
114 int count = 0;
115 int i;
116
117 /* Determine how many msi entries we have */
118 for_each_msi_entry(entry, dev)
119 num_msi += entry->nvec_used;
120 if (!num_msi)
121 return NULL;
122
123 /* Dynamically create the MSI attributes for the device */
124 msi_attrs = kcalloc(num_msi + 1, sizeof(void *), GFP_KERNEL);
125 if (!msi_attrs)
126 return ERR_PTR(-ENOMEM);
127
128 for_each_msi_entry(entry, dev) {
129 for (i = 0; i < entry->nvec_used; i++) {
130 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
131 if (!msi_dev_attr)
132 goto error_attrs;
133 msi_attrs[count] = &msi_dev_attr->attr;
134
135 sysfs_attr_init(&msi_dev_attr->attr);
136 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
137 entry->irq + i);
138 if (!msi_dev_attr->attr.name)
139 goto error_attrs;
140 msi_dev_attr->attr.mode = 0444;
141 msi_dev_attr->show = msi_mode_show;
142 ++count;
143 }
144 }
145
146 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
147 if (!msi_irq_group)
148 goto error_attrs;
149 msi_irq_group->name = "msi_irqs";
150 msi_irq_group->attrs = msi_attrs;
151
152 msi_irq_groups = kcalloc(2, sizeof(void *), GFP_KERNEL);
153 if (!msi_irq_groups)
154 goto error_irq_group;
155 msi_irq_groups[0] = msi_irq_group;
156
157 ret = sysfs_create_groups(&dev->kobj, msi_irq_groups);
158 if (ret)
159 goto error_irq_groups;
160
161 return msi_irq_groups;
162
163error_irq_groups:
164 kfree(msi_irq_groups);
165error_irq_group:
166 kfree(msi_irq_group);
167error_attrs:
168 count = 0;
169 msi_attr = msi_attrs[count];
170 while (msi_attr) {
171 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
172 kfree(msi_attr->name);
173 kfree(msi_dev_attr);
174 ++count;
175 msi_attr = msi_attrs[count];
176 }
177 kfree(msi_attrs);
178 return ERR_PTR(ret);
179}
180
181/**
182 * msi_destroy_sysfs - Destroy msi_irqs sysfs entries for devices
183 * @dev: The device(PCI, platform etc) who will remove sysfs entries
184 * @msi_irq_groups: attribute_group for device msi_irqs entries
185 */
186void msi_destroy_sysfs(struct device *dev, const struct attribute_group **msi_irq_groups)
187{
188 struct device_attribute *dev_attr;
189 struct attribute **msi_attrs;
190 int count = 0;
191
192 if (msi_irq_groups) {
193 sysfs_remove_groups(&dev->kobj, msi_irq_groups);
194 msi_attrs = msi_irq_groups[0]->attrs;
195 while (msi_attrs[count]) {
196 dev_attr = container_of(msi_attrs[count],
197 struct device_attribute, attr);
198 kfree(dev_attr->attr.name);
199 kfree(dev_attr);
200 ++count;
201 }
202 kfree(msi_attrs);
203 kfree(msi_irq_groups[0]);
204 kfree(msi_irq_groups);
205 }
206}
207
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100208#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
Thomas Gleixner74faaf72014-12-06 21:20:20 +0100209static inline void irq_chip_write_msi_msg(struct irq_data *data,
210 struct msi_msg *msg)
211{
212 data->chip->irq_write_msi_msg(data, msg);
213}
214
Marc Zyngier0be81532018-05-08 13:14:30 +0100215static void msi_check_level(struct irq_domain *domain, struct msi_msg *msg)
216{
217 struct msi_domain_info *info = domain->host_data;
218
219 /*
220 * If the MSI provider has messed with the second message and
221 * not advertized that it is level-capable, signal the breakage.
222 */
223 WARN_ON(!((info->flags & MSI_FLAG_LEVEL_CAPABLE) &&
224 (info->chip->flags & IRQCHIP_SUPPORTS_LEVEL_MSI)) &&
225 (msg[1].address_lo || msg[1].address_hi || msg[1].data));
226}
227
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100228/**
229 * msi_domain_set_affinity - Generic affinity setter function for MSI domains
230 * @irq_data: The irq data associated to the interrupt
231 * @mask: The affinity mask to set
232 * @force: Flag to enforce setting (disable online checks)
233 *
234 * Intended to be used by MSI interrupt controllers which are
235 * implemented with hierarchical domains.
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700236 *
237 * Return: IRQ_SET_MASK_* result code
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100238 */
239int msi_domain_set_affinity(struct irq_data *irq_data,
240 const struct cpumask *mask, bool force)
241{
242 struct irq_data *parent = irq_data->parent_data;
Marc Zyngier0be81532018-05-08 13:14:30 +0100243 struct msi_msg msg[2] = { [1] = { }, };
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100244 int ret;
245
246 ret = parent->chip->irq_set_affinity(parent, mask, force);
247 if (ret >= 0 && ret != IRQ_SET_MASK_OK_DONE) {
Marc Zyngier0be81532018-05-08 13:14:30 +0100248 BUG_ON(irq_chip_compose_msi_msg(irq_data, msg));
249 msi_check_level(irq_data->domain, msg);
250 irq_chip_write_msi_msg(irq_data, msg);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100251 }
252
253 return ret;
254}
255
Thomas Gleixner72491642017-09-13 23:29:10 +0200256static int msi_domain_activate(struct irq_domain *domain,
257 struct irq_data *irq_data, bool early)
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100258{
Marc Zyngier0be81532018-05-08 13:14:30 +0100259 struct msi_msg msg[2] = { [1] = { }, };
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100260
Marc Zyngier0be81532018-05-08 13:14:30 +0100261 BUG_ON(irq_chip_compose_msi_msg(irq_data, msg));
262 msi_check_level(irq_data->domain, msg);
263 irq_chip_write_msi_msg(irq_data, msg);
Thomas Gleixner72491642017-09-13 23:29:10 +0200264 return 0;
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100265}
266
267static void msi_domain_deactivate(struct irq_domain *domain,
268 struct irq_data *irq_data)
269{
Marc Zyngier0be81532018-05-08 13:14:30 +0100270 struct msi_msg msg[2];
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100271
Marc Zyngier0be81532018-05-08 13:14:30 +0100272 memset(msg, 0, sizeof(msg));
273 irq_chip_write_msi_msg(irq_data, msg);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100274}
275
276static int msi_domain_alloc(struct irq_domain *domain, unsigned int virq,
277 unsigned int nr_irqs, void *arg)
278{
279 struct msi_domain_info *info = domain->host_data;
280 struct msi_domain_ops *ops = info->ops;
281 irq_hw_number_t hwirq = ops->get_hwirq(info, arg);
282 int i, ret;
283
284 if (irq_find_mapping(domain, hwirq) > 0)
285 return -EEXIST;
286
Liu Jiangbf6f8692016-01-12 13:18:06 -0700287 if (domain->parent) {
288 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
289 if (ret < 0)
290 return ret;
291 }
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100292
293 for (i = 0; i < nr_irqs; i++) {
294 ret = ops->msi_init(domain, info, virq + i, hwirq + i, arg);
295 if (ret < 0) {
296 if (ops->msi_free) {
297 for (i--; i > 0; i--)
298 ops->msi_free(domain, info, virq + i);
299 }
300 irq_domain_free_irqs_top(domain, virq, nr_irqs);
301 return ret;
302 }
303 }
304
305 return 0;
306}
307
308static void msi_domain_free(struct irq_domain *domain, unsigned int virq,
309 unsigned int nr_irqs)
310{
311 struct msi_domain_info *info = domain->host_data;
312 int i;
313
314 if (info->ops->msi_free) {
315 for (i = 0; i < nr_irqs; i++)
316 info->ops->msi_free(domain, info, virq + i);
317 }
318 irq_domain_free_irqs_top(domain, virq, nr_irqs);
319}
320
Krzysztof Kozlowski01364022015-04-27 21:54:23 +0900321static const struct irq_domain_ops msi_domain_ops = {
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100322 .alloc = msi_domain_alloc,
323 .free = msi_domain_free,
324 .activate = msi_domain_activate,
325 .deactivate = msi_domain_deactivate,
326};
327
Jiang Liuaeeb5962014-11-15 22:24:05 +0800328static irq_hw_number_t msi_domain_ops_get_hwirq(struct msi_domain_info *info,
329 msi_alloc_info_t *arg)
330{
331 return arg->hwirq;
332}
333
334static int msi_domain_ops_prepare(struct irq_domain *domain, struct device *dev,
335 int nvec, msi_alloc_info_t *arg)
336{
337 memset(arg, 0, sizeof(*arg));
338 return 0;
339}
340
341static void msi_domain_ops_set_desc(msi_alloc_info_t *arg,
342 struct msi_desc *desc)
343{
344 arg->desc = desc;
345}
Jiang Liuaeeb5962014-11-15 22:24:05 +0800346
347static int msi_domain_ops_init(struct irq_domain *domain,
348 struct msi_domain_info *info,
349 unsigned int virq, irq_hw_number_t hwirq,
350 msi_alloc_info_t *arg)
351{
352 irq_domain_set_hwirq_and_chip(domain, virq, hwirq, info->chip,
353 info->chip_data);
354 if (info->handler && info->handler_name) {
355 __irq_set_handler(virq, info->handler, 0, info->handler_name);
356 if (info->handler_data)
357 irq_set_handler_data(virq, info->handler_data);
358 }
359 return 0;
360}
361
362static int msi_domain_ops_check(struct irq_domain *domain,
363 struct msi_domain_info *info,
364 struct device *dev)
365{
366 return 0;
367}
368
369static struct msi_domain_ops msi_domain_ops_default = {
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200370 .get_hwirq = msi_domain_ops_get_hwirq,
371 .msi_init = msi_domain_ops_init,
372 .msi_check = msi_domain_ops_check,
373 .msi_prepare = msi_domain_ops_prepare,
374 .set_desc = msi_domain_ops_set_desc,
375 .domain_alloc_irqs = __msi_domain_alloc_irqs,
376 .domain_free_irqs = __msi_domain_free_irqs,
Jiang Liuaeeb5962014-11-15 22:24:05 +0800377};
378
379static void msi_domain_update_dom_ops(struct msi_domain_info *info)
380{
381 struct msi_domain_ops *ops = info->ops;
382
383 if (ops == NULL) {
384 info->ops = &msi_domain_ops_default;
385 return;
386 }
387
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200388 if (ops->domain_alloc_irqs == NULL)
389 ops->domain_alloc_irqs = msi_domain_ops_default.domain_alloc_irqs;
390 if (ops->domain_free_irqs == NULL)
391 ops->domain_free_irqs = msi_domain_ops_default.domain_free_irqs;
392
393 if (!(info->flags & MSI_FLAG_USE_DEF_DOM_OPS))
394 return;
395
Jiang Liuaeeb5962014-11-15 22:24:05 +0800396 if (ops->get_hwirq == NULL)
397 ops->get_hwirq = msi_domain_ops_default.get_hwirq;
398 if (ops->msi_init == NULL)
399 ops->msi_init = msi_domain_ops_default.msi_init;
400 if (ops->msi_check == NULL)
401 ops->msi_check = msi_domain_ops_default.msi_check;
402 if (ops->msi_prepare == NULL)
403 ops->msi_prepare = msi_domain_ops_default.msi_prepare;
404 if (ops->set_desc == NULL)
405 ops->set_desc = msi_domain_ops_default.set_desc;
406}
407
408static void msi_domain_update_chip_ops(struct msi_domain_info *info)
409{
410 struct irq_chip *chip = info->chip;
411
Marc Zyngier0701c532015-10-13 19:14:45 +0100412 BUG_ON(!chip || !chip->irq_mask || !chip->irq_unmask);
Jiang Liuaeeb5962014-11-15 22:24:05 +0800413 if (!chip->irq_set_affinity)
414 chip->irq_set_affinity = msi_domain_set_affinity;
415}
416
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100417/**
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700418 * msi_create_irq_domain - Create an MSI interrupt domain
Marc Zyngierbe5436c2015-10-13 12:51:44 +0100419 * @fwnode: Optional fwnode of the interrupt controller
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100420 * @info: MSI domain info
421 * @parent: Parent irq domain
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700422 *
423 * Return: pointer to the created &struct irq_domain or %NULL on failure
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100424 */
Marc Zyngierbe5436c2015-10-13 12:51:44 +0100425struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100426 struct msi_domain_info *info,
427 struct irq_domain *parent)
428{
Marc Zyngiera97b8522017-05-12 12:55:37 +0100429 struct irq_domain *domain;
430
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200431 msi_domain_update_dom_ops(info);
Jiang Liuaeeb5962014-11-15 22:24:05 +0800432 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
433 msi_domain_update_chip_ops(info);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100434
Marc Zyngiera97b8522017-05-12 12:55:37 +0100435 domain = irq_domain_create_hierarchy(parent, IRQ_DOMAIN_FLAG_MSI, 0,
436 fwnode, &msi_domain_ops, info);
Thomas Gleixner01653082017-06-20 01:37:04 +0200437
438 if (domain && !domain->name && info->chip)
Marc Zyngiera97b8522017-05-12 12:55:37 +0100439 domain->name = info->chip->name;
440
441 return domain;
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100442}
443
Marc Zyngierb2eba392015-11-23 08:26:05 +0000444int msi_domain_prepare_irqs(struct irq_domain *domain, struct device *dev,
445 int nvec, msi_alloc_info_t *arg)
446{
447 struct msi_domain_info *info = domain->host_data;
448 struct msi_domain_ops *ops = info->ops;
449 int ret;
450
451 ret = ops->msi_check(domain, info, dev);
452 if (ret == 0)
453 ret = ops->msi_prepare(domain, dev, nvec, arg);
454
455 return ret;
456}
457
Marc Zyngier2145ac92015-11-23 08:26:06 +0000458int msi_domain_populate_irqs(struct irq_domain *domain, struct device *dev,
459 int virq, int nvec, msi_alloc_info_t *arg)
460{
461 struct msi_domain_info *info = domain->host_data;
462 struct msi_domain_ops *ops = info->ops;
463 struct msi_desc *desc;
464 int ret = 0;
465
466 for_each_msi_entry(desc, dev) {
467 /* Don't even try the multi-MSI brain damage. */
468 if (WARN_ON(!desc->irq || desc->nvec_used != 1)) {
469 ret = -EINVAL;
470 break;
471 }
472
473 if (!(desc->irq >= virq && desc->irq < (virq + nvec)))
474 continue;
475
476 ops->set_desc(arg, desc);
477 /* Assumes the domain mutex is held! */
John Keeping596a7a12017-09-06 10:35:40 +0100478 ret = irq_domain_alloc_irqs_hierarchy(domain, desc->irq, 1,
479 arg);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000480 if (ret)
481 break;
482
John Keeping596a7a12017-09-06 10:35:40 +0100483 irq_set_msi_desc_off(desc->irq, 0, desc);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000484 }
485
486 if (ret) {
487 /* Mop up the damage */
488 for_each_msi_entry(desc, dev) {
489 if (!(desc->irq >= virq && desc->irq < (virq + nvec)))
490 continue;
491
492 irq_domain_free_irqs_common(domain, desc->irq, 1);
493 }
494 }
495
496 return ret;
497}
498
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100499/*
500 * Carefully check whether the device can use reservation mode. If
501 * reservation mode is enabled then the early activation will assign a
502 * dummy vector to the device. If the PCI/MSI device does not support
503 * masking of the entry then this can result in spurious interrupts when
504 * the device driver is not absolutely careful. But even then a malfunction
505 * of the hardware could result in a spurious interrupt on the dummy vector
506 * and render the device unusable. If the entry can be masked then the core
507 * logic will prevent the spurious interrupt and reservation mode can be
508 * used. For now reservation mode is restricted to PCI/MSI.
509 */
510static bool msi_check_reservation_mode(struct irq_domain *domain,
511 struct msi_domain_info *info,
512 struct device *dev)
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100513{
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100514 struct msi_desc *desc;
515
Thomas Gleixnerc6c9e2832020-08-26 13:16:51 +0200516 switch(domain->bus_token) {
517 case DOMAIN_BUS_PCI_MSI:
518 case DOMAIN_BUS_VMD_MSI:
519 break;
520 default:
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100521 return false;
Thomas Gleixnerc6c9e2832020-08-26 13:16:51 +0200522 }
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100523
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100524 if (!(info->flags & MSI_FLAG_MUST_REACTIVATE))
525 return false;
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100526
527 if (IS_ENABLED(CONFIG_PCI_MSI) && pci_msi_ignore_mask)
528 return false;
529
530 /*
531 * Checking the first MSI descriptor is sufficient. MSIX supports
Thomas Gleixner9c8e9c92021-11-04 00:27:29 +0100532 * masking and MSI does so when the can_mask attribute is set.
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100533 */
534 desc = first_msi_entry(dev);
Thomas Gleixner9c8e9c92021-11-04 00:27:29 +0100535 return desc->msi_attrib.is_msix || desc->msi_attrib.can_mask;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100536}
537
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200538int __msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev,
539 int nvec)
Jiang Liud9109692014-11-15 22:24:04 +0800540{
541 struct msi_domain_info *info = domain->host_data;
542 struct msi_domain_ops *ops = info->ops;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100543 struct irq_data *irq_data;
Jiang Liud9109692014-11-15 22:24:04 +0800544 struct msi_desc *desc;
Zenghui Yu06fde692020-12-18 14:00:39 +0800545 msi_alloc_info_t arg = { };
Thomas Gleixnerb6140912016-07-04 17:39:22 +0900546 int i, ret, virq;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100547 bool can_reserve;
Jiang Liud9109692014-11-15 22:24:04 +0800548
Marc Zyngierb2eba392015-11-23 08:26:05 +0000549 ret = msi_domain_prepare_irqs(domain, dev, nvec, &arg);
Jiang Liud9109692014-11-15 22:24:04 +0800550 if (ret)
551 return ret;
552
553 for_each_msi_entry(desc, dev) {
554 ops->set_desc(&arg, desc);
555
Thomas Gleixnerb6140912016-07-04 17:39:22 +0900556 virq = __irq_domain_alloc_irqs(domain, -1, desc->nvec_used,
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900557 dev_to_node(dev), &arg, false,
Thomas Gleixner0972fa52016-07-04 17:39:26 +0900558 desc->affinity);
Jiang Liud9109692014-11-15 22:24:04 +0800559 if (virq < 0) {
560 ret = -ENOSPC;
561 if (ops->handle_error)
562 ret = ops->handle_error(domain, desc, ret);
563 if (ops->msi_finish)
564 ops->msi_finish(&arg, ret);
565 return ret;
566 }
567
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200568 for (i = 0; i < desc->nvec_used; i++) {
Jiang Liud9109692014-11-15 22:24:04 +0800569 irq_set_msi_desc_off(virq, i, desc);
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200570 irq_debugfs_copy_devname(virq + i, dev);
571 }
Jiang Liud9109692014-11-15 22:24:04 +0800572 }
573
574 if (ops->msi_finish)
575 ops->msi_finish(&arg, 0);
576
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100577 can_reserve = msi_check_reservation_mode(domain, info, dev);
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100578
Marc Zyngier4c457e82021-01-23 12:27:59 +0000579 /*
580 * This flag is set by the PCI layer as we need to activate
581 * the MSI entries before the PCI layer enables MSI in the
582 * card. Otherwise the card latches a random msi message.
583 */
584 if (!(info->flags & MSI_FLAG_ACTIVATE_EARLY))
585 goto skip_activate;
586
587 for_each_msi_vector(desc, i, dev) {
588 if (desc->irq == i) {
589 virq = desc->irq;
Jiang Liud9109692014-11-15 22:24:04 +0800590 dev_dbg(dev, "irq [%d-%d] for MSI\n",
591 virq, virq + desc->nvec_used - 1);
Marc Zyngier4c457e82021-01-23 12:27:59 +0000592 }
Marc Zyngierf3b09462016-07-13 17:18:33 +0100593
Marc Zyngier4c457e82021-01-23 12:27:59 +0000594 irq_data = irq_domain_get_irq_data(domain, i);
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100595 if (!can_reserve) {
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100596 irqd_clr_can_reserve(irq_data);
Thomas Gleixner6f1a4892020-01-31 15:26:52 +0100597 if (domain->flags & IRQ_DOMAIN_MSI_NOMASK_QUIRK)
598 irqd_set_msi_nomask_quirk(irq_data);
599 }
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100600 ret = irq_domain_activate_irq(irq_data, can_reserve);
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100601 if (ret)
602 goto cleanup;
603 }
604
Marc Zyngier4c457e82021-01-23 12:27:59 +0000605skip_activate:
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100606 /*
607 * If these interrupts use reservation mode, clear the activated bit
608 * so request_irq() will assign the final vector.
609 */
610 if (can_reserve) {
Marc Zyngier4c457e82021-01-23 12:27:59 +0000611 for_each_msi_vector(desc, i, dev) {
612 irq_data = irq_domain_get_irq_data(domain, i);
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100613 irqd_clr_activated(irq_data);
Marc Zyngierf3b09462016-07-13 17:18:33 +0100614 }
Jiang Liud9109692014-11-15 22:24:04 +0800615 }
Jiang Liud9109692014-11-15 22:24:04 +0800616 return 0;
Thomas Gleixnerbb9b4282017-09-13 23:29:11 +0200617
618cleanup:
Thomas Gleixnerbb9b4282017-09-13 23:29:11 +0200619 msi_domain_free_irqs(domain, dev);
620 return ret;
Jiang Liud9109692014-11-15 22:24:04 +0800621}
622
623/**
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200624 * msi_domain_alloc_irqs - Allocate interrupts from a MSI interrupt domain
625 * @domain: The domain to allocate from
Jiang Liud9109692014-11-15 22:24:04 +0800626 * @dev: Pointer to device struct of the device for which the interrupts
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200627 * are allocated
628 * @nvec: The number of interrupts to allocate
629 *
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700630 * Return: %0 on success or an error code.
Jiang Liud9109692014-11-15 22:24:04 +0800631 */
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200632int msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev,
633 int nvec)
634{
635 struct msi_domain_info *info = domain->host_data;
636 struct msi_domain_ops *ops = info->ops;
637
638 return ops->domain_alloc_irqs(domain, dev, nvec);
639}
640
641void __msi_domain_free_irqs(struct irq_domain *domain, struct device *dev)
Jiang Liud9109692014-11-15 22:24:04 +0800642{
Bixuan Cuidbbc9352021-05-18 11:31:17 +0800643 struct irq_data *irq_data;
Jiang Liud9109692014-11-15 22:24:04 +0800644 struct msi_desc *desc;
Bixuan Cuidbbc9352021-05-18 11:31:17 +0800645 int i;
646
647 for_each_msi_vector(desc, i, dev) {
648 irq_data = irq_domain_get_irq_data(domain, i);
649 if (irqd_is_activated(irq_data))
650 irq_domain_deactivate_irq(irq_data);
651 }
Jiang Liud9109692014-11-15 22:24:04 +0800652
653 for_each_msi_entry(desc, dev) {
Marc Zyngierfe0c52f2015-01-26 19:10:19 +0000654 /*
655 * We might have failed to allocate an MSI early
656 * enough that there is no IRQ associated to this
657 * entry. If that's the case, don't do anything.
658 */
659 if (desc->irq) {
660 irq_domain_free_irqs(desc->irq, desc->nvec_used);
661 desc->irq = 0;
662 }
Jiang Liud9109692014-11-15 22:24:04 +0800663 }
664}
665
666/**
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700667 * msi_domain_free_irqs - Free interrupts from a MSI interrupt @domain associated to @dev
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200668 * @domain: The domain to managing the interrupts
669 * @dev: Pointer to device struct of the device for which the interrupts
670 * are free
671 */
672void msi_domain_free_irqs(struct irq_domain *domain, struct device *dev)
673{
674 struct msi_domain_info *info = domain->host_data;
675 struct msi_domain_ops *ops = info->ops;
676
677 return ops->domain_free_irqs(domain, dev);
678}
679
680/**
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100681 * msi_get_domain_info - Get the MSI interrupt domain info for @domain
682 * @domain: The interrupt domain to retrieve data from
683 *
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700684 * Return: the pointer to the msi_domain_info stored in @domain->host_data.
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100685 */
686struct msi_domain_info *msi_get_domain_info(struct irq_domain *domain)
687{
688 return (struct msi_domain_info *)domain->host_data;
689}
690
691#endif /* CONFIG_GENERIC_MSI_IRQ_DOMAIN */