1 // SPDX-License-Identifier: GPL-2.0
3 * PCI Message Signaled Interrupt (MSI)
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 * Copyright (C) 2016 Christoph Hellwig.
10 #include <linux/err.h>
12 #include <linux/irq.h>
13 #include <linux/interrupt.h>
14 #include <linux/export.h>
15 #include <linux/ioport.h>
16 #include <linux/pci.h>
17 #include <linux/proc_fs.h>
18 #include <linux/msi.h>
19 #include <linux/smp.h>
20 #include <linux/errno.h>
22 #include <linux/acpi_iort.h>
23 #include <linux/slab.h>
24 #include <linux/irqdomain.h>
25 #include <linux/of_irq.h>
29 static int pci_msi_enable = 1;
30 int pci_msi_ignore_mask;
32 #define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
34 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
35 static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
37 struct irq_domain *domain;
39 domain = dev_get_msi_domain(&dev->dev);
40 if (domain && irq_domain_is_hierarchy(domain))
41 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
43 return arch_setup_msi_irqs(dev, nvec, type);
46 static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
48 struct irq_domain *domain;
50 domain = dev_get_msi_domain(&dev->dev);
51 if (domain && irq_domain_is_hierarchy(domain))
52 msi_domain_free_irqs(domain, &dev->dev);
54 arch_teardown_msi_irqs(dev);
57 #define pci_msi_setup_msi_irqs arch_setup_msi_irqs
58 #define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
61 #ifdef CONFIG_PCI_MSI_ARCH_FALLBACKS
63 int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
65 struct msi_controller *chip = dev->bus->msi;
68 if (!chip || !chip->setup_irq)
71 err = chip->setup_irq(chip, dev, desc);
75 irq_set_chip_data(desc->irq, chip);
80 void __weak arch_teardown_msi_irq(unsigned int irq)
82 struct msi_controller *chip = irq_get_chip_data(irq);
84 if (!chip || !chip->teardown_irq)
87 chip->teardown_irq(chip, irq);
90 int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
92 struct msi_controller *chip = dev->bus->msi;
93 struct msi_desc *entry;
96 if (chip && chip->setup_irqs)
97 return chip->setup_irqs(chip, dev, nvec, type);
99 * If an architecture wants to support multiple MSI, it needs to
100 * override arch_setup_msi_irqs()
102 if (type == PCI_CAP_ID_MSI && nvec > 1)
105 for_each_pci_msi_entry(entry, dev) {
106 ret = arch_setup_msi_irq(dev, entry);
117 * We have a default implementation available as a separate non-weak
118 * function, as it is used by the Xen x86 PCI code
120 void default_teardown_msi_irqs(struct pci_dev *dev)
123 struct msi_desc *entry;
125 for_each_pci_msi_entry(entry, dev)
127 for (i = 0; i < entry->nvec_used; i++)
128 arch_teardown_msi_irq(entry->irq + i);
131 void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
133 return default_teardown_msi_irqs(dev);
135 #endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS */
137 static void default_restore_msi_irq(struct pci_dev *dev, int irq)
139 struct msi_desc *entry;
142 if (dev->msix_enabled) {
143 for_each_pci_msi_entry(entry, dev) {
144 if (irq == entry->irq)
147 } else if (dev->msi_enabled) {
148 entry = irq_get_msi_desc(irq);
152 __pci_write_msi_msg(entry, &entry->msg);
155 void __weak arch_restore_msi_irqs(struct pci_dev *dev)
157 return default_restore_msi_irqs(dev);
160 static inline __attribute_const__ u32 msi_mask(unsigned x)
162 /* Don't shift by >= width of type */
165 return (1 << (1 << x)) - 1;
169 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
170 * mask all MSI interrupts by clearing the MSI enable bit does not work
171 * reliably as devices without an INTx disable bit will then generate a
172 * level IRQ which will never be cleared.
174 u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
176 u32 mask_bits = desc->masked;
178 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
183 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
189 static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
191 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
194 static void __iomem *pci_msix_desc_addr(struct msi_desc *desc)
196 if (desc->msi_attrib.is_virtual)
199 return desc->mask_base +
200 desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
204 * This internal function does not flush PCI writes to the device.
205 * All users must ensure that they read from the device before either
206 * assuming that the device state is up to date, or returning out of this
207 * file. This saves a few milliseconds when initialising devices with lots
208 * of MSI-X interrupts.
210 u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
212 u32 mask_bits = desc->masked;
213 void __iomem *desc_addr;
215 if (pci_msi_ignore_mask)
218 desc_addr = pci_msix_desc_addr(desc);
222 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
223 if (flag & PCI_MSIX_ENTRY_CTRL_MASKBIT)
224 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
226 writel(mask_bits, desc_addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
231 static void msix_mask_irq(struct msi_desc *desc, u32 flag)
233 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
236 static void msi_set_mask_bit(struct irq_data *data, u32 flag)
238 struct msi_desc *desc = irq_data_get_msi_desc(data);
240 if (desc->msi_attrib.is_msix) {
241 msix_mask_irq(desc, flag);
242 readl(desc->mask_base); /* Flush write to device */
244 unsigned offset = data->irq - desc->irq;
245 msi_mask_irq(desc, 1 << offset, flag << offset);
250 * pci_msi_mask_irq - Generic IRQ chip callback to mask PCI/MSI interrupts
251 * @data: pointer to irqdata associated to that interrupt
253 void pci_msi_mask_irq(struct irq_data *data)
255 msi_set_mask_bit(data, 1);
257 EXPORT_SYMBOL_GPL(pci_msi_mask_irq);
260 * pci_msi_unmask_irq - Generic IRQ chip callback to unmask PCI/MSI interrupts
261 * @data: pointer to irqdata associated to that interrupt
263 void pci_msi_unmask_irq(struct irq_data *data)
265 msi_set_mask_bit(data, 0);
267 EXPORT_SYMBOL_GPL(pci_msi_unmask_irq);
269 void default_restore_msi_irqs(struct pci_dev *dev)
271 struct msi_desc *entry;
273 for_each_pci_msi_entry(entry, dev)
274 default_restore_msi_irq(dev, entry->irq);
277 void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
279 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
281 BUG_ON(dev->current_state != PCI_D0);
283 if (entry->msi_attrib.is_msix) {
284 void __iomem *base = pci_msix_desc_addr(entry);
291 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
292 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
293 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
295 int pos = dev->msi_cap;
298 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
300 if (entry->msi_attrib.is_64) {
301 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
303 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
306 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
312 void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
314 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
316 if (dev->current_state != PCI_D0 || pci_dev_is_disconnected(dev)) {
317 /* Don't touch the hardware now */
318 } else if (entry->msi_attrib.is_msix) {
319 void __iomem *base = pci_msix_desc_addr(entry);
320 bool unmasked = !(entry->masked & PCI_MSIX_ENTRY_CTRL_MASKBIT);
326 * The specification mandates that the entry is masked
327 * when the message is modified:
329 * "If software changes the Address or Data value of an
330 * entry while the entry is unmasked, the result is
334 __pci_msix_desc_mask_irq(entry, PCI_MSIX_ENTRY_CTRL_MASKBIT);
336 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
337 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
338 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
341 __pci_msix_desc_mask_irq(entry, 0);
343 /* Ensure that the writes are visible in the device */
344 readl(base + PCI_MSIX_ENTRY_DATA);
346 int pos = dev->msi_cap;
349 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
350 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
351 msgctl |= entry->msi_attrib.multiple << 4;
352 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
354 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
356 if (entry->msi_attrib.is_64) {
357 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
359 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
362 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
365 /* Ensure that the writes are visible in the device */
366 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
372 if (entry->write_msi_msg)
373 entry->write_msi_msg(entry, entry->write_msi_msg_data);
377 void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
379 struct msi_desc *entry = irq_get_msi_desc(irq);
381 __pci_write_msi_msg(entry, msg);
383 EXPORT_SYMBOL_GPL(pci_write_msi_msg);
385 static void free_msi_irqs(struct pci_dev *dev)
387 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
388 struct msi_desc *entry, *tmp;
389 struct attribute **msi_attrs;
390 struct device_attribute *dev_attr;
393 for_each_pci_msi_entry(entry, dev)
395 for (i = 0; i < entry->nvec_used; i++)
396 BUG_ON(irq_has_action(entry->irq + i));
398 pci_msi_teardown_msi_irqs(dev);
400 list_for_each_entry_safe(entry, tmp, msi_list, list) {
401 if (entry->msi_attrib.is_msix) {
402 if (list_is_last(&entry->list, msi_list))
403 iounmap(entry->mask_base);
406 list_del(&entry->list);
407 free_msi_entry(entry);
410 if (dev->msi_irq_groups) {
411 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
412 msi_attrs = dev->msi_irq_groups[0]->attrs;
413 while (msi_attrs[count]) {
414 dev_attr = container_of(msi_attrs[count],
415 struct device_attribute, attr);
416 kfree(dev_attr->attr.name);
421 kfree(dev->msi_irq_groups[0]);
422 kfree(dev->msi_irq_groups);
423 dev->msi_irq_groups = NULL;
427 static void pci_intx_for_msi(struct pci_dev *dev, int enable)
429 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
430 pci_intx(dev, enable);
433 static void __pci_restore_msi_state(struct pci_dev *dev)
436 struct msi_desc *entry;
438 if (!dev->msi_enabled)
441 entry = irq_get_msi_desc(dev->irq);
443 pci_intx_for_msi(dev, 0);
444 pci_msi_set_enable(dev, 0);
445 arch_restore_msi_irqs(dev);
447 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
448 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
450 control &= ~PCI_MSI_FLAGS_QSIZE;
451 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
452 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
455 static void __pci_restore_msix_state(struct pci_dev *dev)
457 struct msi_desc *entry;
459 if (!dev->msix_enabled)
461 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
463 /* route the table */
464 pci_intx_for_msi(dev, 0);
465 pci_msix_clear_and_set_ctrl(dev, 0,
466 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
468 arch_restore_msi_irqs(dev);
469 for_each_pci_msi_entry(entry, dev)
470 msix_mask_irq(entry, entry->masked);
472 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
475 void pci_restore_msi_state(struct pci_dev *dev)
477 __pci_restore_msi_state(dev);
478 __pci_restore_msix_state(dev);
480 EXPORT_SYMBOL_GPL(pci_restore_msi_state);
482 static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
485 struct msi_desc *entry;
489 retval = kstrtoul(attr->attr.name, 10, &irq);
493 entry = irq_get_msi_desc(irq);
495 return sprintf(buf, "%s\n",
496 entry->msi_attrib.is_msix ? "msix" : "msi");
501 static int populate_msi_sysfs(struct pci_dev *pdev)
503 struct attribute **msi_attrs;
504 struct attribute *msi_attr;
505 struct device_attribute *msi_dev_attr;
506 struct attribute_group *msi_irq_group;
507 const struct attribute_group **msi_irq_groups;
508 struct msi_desc *entry;
514 /* Determine how many msi entries we have */
515 for_each_pci_msi_entry(entry, pdev)
516 num_msi += entry->nvec_used;
520 /* Dynamically create the MSI attributes for the PCI device */
521 msi_attrs = kcalloc(num_msi + 1, sizeof(void *), GFP_KERNEL);
524 for_each_pci_msi_entry(entry, pdev) {
525 for (i = 0; i < entry->nvec_used; i++) {
526 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
529 msi_attrs[count] = &msi_dev_attr->attr;
531 sysfs_attr_init(&msi_dev_attr->attr);
532 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
534 if (!msi_dev_attr->attr.name)
536 msi_dev_attr->attr.mode = S_IRUGO;
537 msi_dev_attr->show = msi_mode_show;
542 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
545 msi_irq_group->name = "msi_irqs";
546 msi_irq_group->attrs = msi_attrs;
548 msi_irq_groups = kcalloc(2, sizeof(void *), GFP_KERNEL);
550 goto error_irq_group;
551 msi_irq_groups[0] = msi_irq_group;
553 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
555 goto error_irq_groups;
556 pdev->msi_irq_groups = msi_irq_groups;
561 kfree(msi_irq_groups);
563 kfree(msi_irq_group);
566 msi_attr = msi_attrs[count];
568 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
569 kfree(msi_attr->name);
572 msi_attr = msi_attrs[count];
578 static struct msi_desc *
579 msi_setup_entry(struct pci_dev *dev, int nvec, struct irq_affinity *affd)
581 struct irq_affinity_desc *masks = NULL;
582 struct msi_desc *entry;
586 masks = irq_create_affinity_masks(nvec, affd);
588 /* MSI Entry Initialization */
589 entry = alloc_msi_entry(&dev->dev, nvec, masks);
593 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
595 entry->msi_attrib.is_msix = 0;
596 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
597 entry->msi_attrib.is_virtual = 0;
598 entry->msi_attrib.entry_nr = 0;
599 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
600 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
601 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
602 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
604 if (control & PCI_MSI_FLAGS_64BIT)
605 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
607 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
609 /* Save the initial mask status */
610 if (entry->msi_attrib.maskbit)
611 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
618 static int msi_verify_entries(struct pci_dev *dev)
620 struct msi_desc *entry;
622 for_each_pci_msi_entry(entry, dev) {
623 if (!dev->no_64bit_msi || !entry->msg.address_hi)
625 pci_err(dev, "Device has broken 64-bit MSI but arch"
626 " tried to assign one above 4G\n");
633 * msi_capability_init - configure device's MSI capability structure
634 * @dev: pointer to the pci_dev data structure of MSI device function
635 * @nvec: number of interrupts to allocate
636 * @affd: description of automatic IRQ affinity assignments (may be %NULL)
638 * Setup the MSI capability structure of the device with the requested
639 * number of interrupts. A return value of zero indicates the successful
640 * setup of an entry with the new MSI IRQ. A negative return value indicates
641 * an error, and a positive return value indicates the number of interrupts
642 * which could have been allocated.
644 static int msi_capability_init(struct pci_dev *dev, int nvec,
645 struct irq_affinity *affd)
647 struct msi_desc *entry;
651 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
653 entry = msi_setup_entry(dev, nvec, affd);
657 /* All MSIs are unmasked by default; mask them all */
658 mask = msi_mask(entry->msi_attrib.multi_cap);
659 msi_mask_irq(entry, mask, mask);
661 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
663 /* Configure MSI capability structure */
664 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
666 msi_mask_irq(entry, mask, 0);
671 ret = msi_verify_entries(dev);
673 msi_mask_irq(entry, mask, 0);
678 ret = populate_msi_sysfs(dev);
680 msi_mask_irq(entry, mask, 0);
685 /* Set MSI enabled bits */
686 pci_intx_for_msi(dev, 0);
687 pci_msi_set_enable(dev, 1);
688 dev->msi_enabled = 1;
690 pcibios_free_irq(dev);
691 dev->irq = entry->irq;
695 static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
697 resource_size_t phys_addr;
702 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
704 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
705 flags = pci_resource_flags(dev, bir);
706 if (!flags || (flags & IORESOURCE_UNSET))
709 table_offset &= PCI_MSIX_TABLE_OFFSET;
710 phys_addr = pci_resource_start(dev, bir) + table_offset;
712 return ioremap(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
715 static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
716 struct msix_entry *entries, int nvec,
717 struct irq_affinity *affd)
719 struct irq_affinity_desc *curmsk, *masks = NULL;
720 struct msi_desc *entry;
723 int vec_count = pci_msix_vec_count(dev);
726 masks = irq_create_affinity_masks(nvec, affd);
728 for (i = 0, curmsk = masks; i < nvec; i++) {
729 entry = alloc_msi_entry(&dev->dev, 1, curmsk);
735 /* No enough memory. Don't try again */
740 entry->msi_attrib.is_msix = 1;
741 entry->msi_attrib.is_64 = 1;
744 entry->msi_attrib.entry_nr = entries[i].entry;
746 entry->msi_attrib.entry_nr = i;
748 entry->msi_attrib.is_virtual =
749 entry->msi_attrib.entry_nr >= vec_count;
751 entry->msi_attrib.default_irq = dev->irq;
752 entry->mask_base = base;
754 addr = pci_msix_desc_addr(entry);
756 entry->masked = readl(addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
758 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
768 static void msix_update_entries(struct pci_dev *dev, struct msix_entry *entries)
770 struct msi_desc *entry;
772 for_each_pci_msi_entry(entry, dev) {
774 entries->vector = entry->irq;
780 static void msix_mask_all(void __iomem *base, int tsize)
782 u32 ctrl = PCI_MSIX_ENTRY_CTRL_MASKBIT;
785 for (i = 0; i < tsize; i++, base += PCI_MSIX_ENTRY_SIZE)
786 writel(ctrl, base + PCI_MSIX_ENTRY_VECTOR_CTRL);
790 * msix_capability_init - configure device's MSI-X capability
791 * @dev: pointer to the pci_dev data structure of MSI-X device function
792 * @entries: pointer to an array of struct msix_entry entries
793 * @nvec: number of @entries
794 * @affd: Optional pointer to enable automatic affinity assignment
796 * Setup the MSI-X capability structure of device function with a
797 * single MSI-X IRQ. A return of zero indicates the successful setup of
798 * requested MSI-X entries with allocated IRQs or non-zero for otherwise.
800 static int msix_capability_init(struct pci_dev *dev, struct msix_entry *entries,
801 int nvec, struct irq_affinity *affd)
808 * Some devices require MSI-X to be enabled before the MSI-X
809 * registers can be accessed. Mask all the vectors to prevent
810 * interrupts coming in before they're fully set up.
812 pci_msix_clear_and_set_ctrl(dev, 0, PCI_MSIX_FLAGS_MASKALL |
813 PCI_MSIX_FLAGS_ENABLE);
815 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
816 /* Request & Map MSI-X table region */
817 tsize = msix_table_size(control);
818 base = msix_map_region(dev, tsize);
824 /* Ensure that all table entries are masked. */
825 msix_mask_all(base, tsize);
827 ret = msix_setup_entries(dev, base, entries, nvec, affd);
831 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
835 /* Check if all MSI entries honor device restrictions */
836 ret = msi_verify_entries(dev);
840 msix_update_entries(dev, entries);
842 ret = populate_msi_sysfs(dev);
846 /* Set MSI-X enabled bits and unmask the function */
847 pci_intx_for_msi(dev, 0);
848 dev->msix_enabled = 1;
849 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
851 pcibios_free_irq(dev);
857 * If we had some success, report the number of IRQs
858 * we succeeded in setting up.
860 struct msi_desc *entry;
863 for_each_pci_msi_entry(entry, dev) {
875 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
881 * pci_msi_supported - check whether MSI may be enabled on a device
882 * @dev: pointer to the pci_dev data structure of MSI device function
883 * @nvec: how many MSIs have been requested?
885 * Look at global flags, the device itself, and its parent buses
886 * to determine if MSI/-X are supported for the device. If MSI/-X is
887 * supported return 1, else return 0.
889 static int pci_msi_supported(struct pci_dev *dev, int nvec)
893 /* MSI must be globally enabled and supported by the device */
897 if (!dev || dev->no_msi)
901 * You can't ask to have 0 or less MSIs configured.
903 * b) the list manipulation code assumes nvec >= 1.
909 * Any bridge which does NOT route MSI transactions from its
910 * secondary bus to its primary bus must set NO_MSI flag on
911 * the secondary pci_bus.
912 * We expect only arch-specific PCI host bus controller driver
913 * or quirks for specific PCI bridges to be setting NO_MSI.
915 for (bus = dev->bus; bus; bus = bus->parent)
916 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
923 * pci_msi_vec_count - Return the number of MSI vectors a device can send
924 * @dev: device to report about
926 * This function returns the number of MSI vectors a device requested via
927 * Multiple Message Capable register. It returns a negative errno if the
928 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
929 * and returns a power of two, up to a maximum of 2^5 (32), according to the
932 int pci_msi_vec_count(struct pci_dev *dev)
940 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
941 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
945 EXPORT_SYMBOL(pci_msi_vec_count);
947 static void pci_msi_shutdown(struct pci_dev *dev)
949 struct msi_desc *desc;
952 if (!pci_msi_enable || !dev || !dev->msi_enabled)
955 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
956 desc = first_pci_msi_entry(dev);
958 pci_msi_set_enable(dev, 0);
959 pci_intx_for_msi(dev, 1);
960 dev->msi_enabled = 0;
962 /* Return the device with MSI unmasked as initial states */
963 mask = msi_mask(desc->msi_attrib.multi_cap);
964 msi_mask_irq(desc, mask, 0);
966 /* Restore dev->irq to its default pin-assertion IRQ */
967 dev->irq = desc->msi_attrib.default_irq;
968 pcibios_alloc_irq(dev);
971 void pci_disable_msi(struct pci_dev *dev)
973 if (!pci_msi_enable || !dev || !dev->msi_enabled)
976 pci_msi_shutdown(dev);
979 EXPORT_SYMBOL(pci_disable_msi);
982 * pci_msix_vec_count - return the number of device's MSI-X table entries
983 * @dev: pointer to the pci_dev data structure of MSI-X device function
984 * This function returns the number of device's MSI-X table entries and
985 * therefore the number of MSI-X vectors device is capable of sending.
986 * It returns a negative errno if the device is not capable of sending MSI-X
989 int pci_msix_vec_count(struct pci_dev *dev)
996 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
997 return msix_table_size(control);
999 EXPORT_SYMBOL(pci_msix_vec_count);
1001 static int __pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries,
1002 int nvec, struct irq_affinity *affd, int flags)
1007 if (!pci_msi_supported(dev, nvec) || dev->current_state != PCI_D0)
1010 nr_entries = pci_msix_vec_count(dev);
1013 if (nvec > nr_entries && !(flags & PCI_IRQ_VIRTUAL))
1017 /* Check for any invalid entries */
1018 for (i = 0; i < nvec; i++) {
1019 if (entries[i].entry >= nr_entries)
1020 return -EINVAL; /* invalid entry */
1021 for (j = i + 1; j < nvec; j++) {
1022 if (entries[i].entry == entries[j].entry)
1023 return -EINVAL; /* duplicate entry */
1028 /* Check whether driver already requested for MSI IRQ */
1029 if (dev->msi_enabled) {
1030 pci_info(dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
1033 return msix_capability_init(dev, entries, nvec, affd);
1036 static void pci_msix_shutdown(struct pci_dev *dev)
1038 struct msi_desc *entry;
1040 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1043 if (pci_dev_is_disconnected(dev)) {
1044 dev->msix_enabled = 0;
1048 /* Return the device with MSI-X masked as initial states */
1049 for_each_pci_msi_entry(entry, dev)
1050 __pci_msix_desc_mask_irq(entry, 1);
1052 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
1053 pci_intx_for_msi(dev, 1);
1054 dev->msix_enabled = 0;
1055 pcibios_alloc_irq(dev);
1058 void pci_disable_msix(struct pci_dev *dev)
1060 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1063 pci_msix_shutdown(dev);
1066 EXPORT_SYMBOL(pci_disable_msix);
1068 void pci_no_msi(void)
1074 * pci_msi_enabled - is MSI enabled?
1076 * Returns true if MSI has not been disabled by the command-line option
1079 int pci_msi_enabled(void)
1081 return pci_msi_enable;
1083 EXPORT_SYMBOL(pci_msi_enabled);
1085 static int __pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec,
1086 struct irq_affinity *affd)
1091 if (!pci_msi_supported(dev, minvec) || dev->current_state != PCI_D0)
1094 /* Check whether driver already requested MSI-X IRQs */
1095 if (dev->msix_enabled) {
1096 pci_info(dev, "can't enable MSI (MSI-X already enabled)\n");
1100 if (maxvec < minvec)
1103 if (WARN_ON_ONCE(dev->msi_enabled))
1106 nvec = pci_msi_vec_count(dev);
1117 nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
1122 rc = msi_capability_init(dev, nvec, affd);
1135 /* deprecated, don't use */
1136 int pci_enable_msi(struct pci_dev *dev)
1138 int rc = __pci_enable_msi_range(dev, 1, 1, NULL);
1143 EXPORT_SYMBOL(pci_enable_msi);
1145 static int __pci_enable_msix_range(struct pci_dev *dev,
1146 struct msix_entry *entries, int minvec,
1147 int maxvec, struct irq_affinity *affd,
1150 int rc, nvec = maxvec;
1152 if (maxvec < minvec)
1155 if (WARN_ON_ONCE(dev->msix_enabled))
1160 nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
1165 rc = __pci_enable_msix(dev, entries, nvec, affd, flags);
1179 * pci_enable_msix_range - configure device's MSI-X capability structure
1180 * @dev: pointer to the pci_dev data structure of MSI-X device function
1181 * @entries: pointer to an array of MSI-X entries
1182 * @minvec: minimum number of MSI-X IRQs requested
1183 * @maxvec: maximum number of MSI-X IRQs requested
1185 * Setup the MSI-X capability structure of device function with a maximum
1186 * possible number of interrupts in the range between @minvec and @maxvec
1187 * upon its software driver call to request for MSI-X mode enabled on its
1188 * hardware device function. It returns a negative errno if an error occurs.
1189 * If it succeeds, it returns the actual number of interrupts allocated and
1190 * indicates the successful configuration of MSI-X capability structure
1191 * with new allocated MSI-X interrupts.
1193 int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1194 int minvec, int maxvec)
1196 return __pci_enable_msix_range(dev, entries, minvec, maxvec, NULL, 0);
1198 EXPORT_SYMBOL(pci_enable_msix_range);
1201 * pci_alloc_irq_vectors_affinity - allocate multiple IRQs for a device
1202 * @dev: PCI device to operate on
1203 * @min_vecs: minimum number of vectors required (must be >= 1)
1204 * @max_vecs: maximum (desired) number of vectors
1205 * @flags: flags or quirks for the allocation
1206 * @affd: optional description of the affinity requirements
1208 * Allocate up to @max_vecs interrupt vectors for @dev, using MSI-X or MSI
1209 * vectors if available, and fall back to a single legacy vector
1210 * if neither is available. Return the number of vectors allocated,
1211 * (which might be smaller than @max_vecs) if successful, or a negative
1212 * error code on error. If less than @min_vecs interrupt vectors are
1213 * available for @dev the function will fail with -ENOSPC.
1215 * To get the Linux IRQ number used for a vector that can be passed to
1216 * request_irq() use the pci_irq_vector() helper.
1218 int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1219 unsigned int max_vecs, unsigned int flags,
1220 struct irq_affinity *affd)
1222 struct irq_affinity msi_default_affd = {0};
1223 int nvecs = -ENOSPC;
1225 if (flags & PCI_IRQ_AFFINITY) {
1227 affd = &msi_default_affd;
1233 if (flags & PCI_IRQ_MSIX) {
1234 nvecs = __pci_enable_msix_range(dev, NULL, min_vecs, max_vecs,
1240 if (flags & PCI_IRQ_MSI) {
1241 nvecs = __pci_enable_msi_range(dev, min_vecs, max_vecs, affd);
1246 /* use legacy IRQ if allowed */
1247 if (flags & PCI_IRQ_LEGACY) {
1248 if (min_vecs == 1 && dev->irq) {
1250 * Invoke the affinity spreading logic to ensure that
1251 * the device driver can adjust queue configuration
1252 * for the single interrupt case.
1255 irq_create_affinity_masks(1, affd);
1263 EXPORT_SYMBOL(pci_alloc_irq_vectors_affinity);
1266 * pci_free_irq_vectors - free previously allocated IRQs for a device
1267 * @dev: PCI device to operate on
1269 * Undoes the allocations and enabling in pci_alloc_irq_vectors().
1271 void pci_free_irq_vectors(struct pci_dev *dev)
1273 pci_disable_msix(dev);
1274 pci_disable_msi(dev);
1276 EXPORT_SYMBOL(pci_free_irq_vectors);
1279 * pci_irq_vector - return Linux IRQ number of a device vector
1280 * @dev: PCI device to operate on
1281 * @nr: device-relative interrupt vector index (0-based).
1283 int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
1285 if (dev->msix_enabled) {
1286 struct msi_desc *entry;
1289 for_each_pci_msi_entry(entry, dev) {
1298 if (dev->msi_enabled) {
1299 struct msi_desc *entry = first_pci_msi_entry(dev);
1301 if (WARN_ON_ONCE(nr >= entry->nvec_used))
1304 if (WARN_ON_ONCE(nr > 0))
1308 return dev->irq + nr;
1310 EXPORT_SYMBOL(pci_irq_vector);
1313 * pci_irq_get_affinity - return the affinity of a particular MSI vector
1314 * @dev: PCI device to operate on
1315 * @nr: device-relative interrupt vector index (0-based).
1317 const struct cpumask *pci_irq_get_affinity(struct pci_dev *dev, int nr)
1319 if (dev->msix_enabled) {
1320 struct msi_desc *entry;
1323 for_each_pci_msi_entry(entry, dev) {
1325 return &entry->affinity->mask;
1330 } else if (dev->msi_enabled) {
1331 struct msi_desc *entry = first_pci_msi_entry(dev);
1333 if (WARN_ON_ONCE(!entry || !entry->affinity ||
1334 nr >= entry->nvec_used))
1337 return &entry->affinity[nr].mask;
1339 return cpu_possible_mask;
1342 EXPORT_SYMBOL(pci_irq_get_affinity);
1344 struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1346 return to_pci_dev(desc->dev);
1348 EXPORT_SYMBOL(msi_desc_to_pci_dev);
1350 void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1352 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1354 return dev->bus->sysdata;
1356 EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1358 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1360 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1361 * @irq_data: Pointer to interrupt data of the MSI interrupt
1362 * @msg: Pointer to the message
1364 void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1366 struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
1369 * For MSI-X desc->irq is always equal to irq_data->irq. For
1370 * MSI only the first interrupt of MULTI MSI passes the test.
1372 if (desc->irq == irq_data->irq)
1373 __pci_write_msi_msg(desc, msg);
1377 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1378 * @desc: Pointer to the MSI descriptor
1380 * The ID number is only used within the irqdomain.
1382 static irq_hw_number_t pci_msi_domain_calc_hwirq(struct msi_desc *desc)
1384 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1386 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1387 pci_dev_id(dev) << 11 |
1388 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1391 static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1393 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1397 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities
1399 * @domain: The interrupt domain to check
1400 * @info: The domain info for verification
1401 * @dev: The device to check
1404 * 0 if the functionality is supported
1405 * 1 if Multi MSI is requested, but the domain does not support it
1406 * -ENOTSUPP otherwise
1408 int pci_msi_domain_check_cap(struct irq_domain *domain,
1409 struct msi_domain_info *info, struct device *dev)
1411 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1413 /* Special handling to support __pci_enable_msi_range() */
1414 if (pci_msi_desc_is_multi_msi(desc) &&
1415 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1417 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1423 static int pci_msi_domain_handle_error(struct irq_domain *domain,
1424 struct msi_desc *desc, int error)
1426 /* Special handling to support __pci_enable_msi_range() */
1427 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1433 static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1434 struct msi_desc *desc)
1437 arg->hwirq = pci_msi_domain_calc_hwirq(desc);
1440 static struct msi_domain_ops pci_msi_domain_ops_default = {
1441 .set_desc = pci_msi_domain_set_desc,
1442 .msi_check = pci_msi_domain_check_cap,
1443 .handle_error = pci_msi_domain_handle_error,
1446 static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1448 struct msi_domain_ops *ops = info->ops;
1451 info->ops = &pci_msi_domain_ops_default;
1453 if (ops->set_desc == NULL)
1454 ops->set_desc = pci_msi_domain_set_desc;
1455 if (ops->msi_check == NULL)
1456 ops->msi_check = pci_msi_domain_check_cap;
1457 if (ops->handle_error == NULL)
1458 ops->handle_error = pci_msi_domain_handle_error;
1462 static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1464 struct irq_chip *chip = info->chip;
1467 if (!chip->irq_write_msi_msg)
1468 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1469 if (!chip->irq_mask)
1470 chip->irq_mask = pci_msi_mask_irq;
1471 if (!chip->irq_unmask)
1472 chip->irq_unmask = pci_msi_unmask_irq;
1476 * pci_msi_create_irq_domain - Create a MSI interrupt domain
1477 * @fwnode: Optional fwnode of the interrupt controller
1478 * @info: MSI domain info
1479 * @parent: Parent irq domain
1481 * Updates the domain and chip ops and creates a MSI interrupt domain.
1484 * A domain pointer or NULL in case of failure.
1486 struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode,
1487 struct msi_domain_info *info,
1488 struct irq_domain *parent)
1490 struct irq_domain *domain;
1492 if (WARN_ON(info->flags & MSI_FLAG_LEVEL_CAPABLE))
1493 info->flags &= ~MSI_FLAG_LEVEL_CAPABLE;
1495 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1496 pci_msi_domain_update_dom_ops(info);
1497 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1498 pci_msi_domain_update_chip_ops(info);
1500 info->flags |= MSI_FLAG_ACTIVATE_EARLY;
1501 if (IS_ENABLED(CONFIG_GENERIC_IRQ_RESERVATION_MODE))
1502 info->flags |= MSI_FLAG_MUST_REACTIVATE;
1504 /* PCI-MSI is oneshot-safe */
1505 info->chip->flags |= IRQCHIP_ONESHOT_SAFE;
1507 domain = msi_create_irq_domain(fwnode, info, parent);
1511 irq_domain_update_bus_token(domain, DOMAIN_BUS_PCI_MSI);
1514 EXPORT_SYMBOL_GPL(pci_msi_create_irq_domain);
1517 * Users of the generic MSI infrastructure expect a device to have a single ID,
1518 * so with DMA aliases we have to pick the least-worst compromise. Devices with
1519 * DMA phantom functions tend to still emit MSIs from the real function number,
1520 * so we ignore those and only consider topological aliases where either the
1521 * alias device or RID appears on a different bus number. We also make the
1522 * reasonable assumption that bridges are walked in an upstream direction (so
1523 * the last one seen wins), and the much braver assumption that the most likely
1524 * case is that of PCI->PCIe so we should always use the alias RID. This echoes
1525 * the logic from intel_irq_remapping's set_msi_sid(), which presumably works
1526 * well enough in practice; in the face of the horrible PCIe<->PCI-X conditions
1527 * for taking ownership all we can really do is close our eyes and hope...
1529 static int get_msi_id_cb(struct pci_dev *pdev, u16 alias, void *data)
1532 u8 bus = PCI_BUS_NUM(*pa);
1534 if (pdev->bus->number != bus || PCI_BUS_NUM(alias) != bus)
1541 * pci_msi_domain_get_msi_rid - Get the MSI requester id (RID)
1542 * @domain: The interrupt domain
1543 * @pdev: The PCI device.
1545 * The RID for a device is formed from the alias, with a firmware
1546 * supplied mapping applied
1550 u32 pci_msi_domain_get_msi_rid(struct irq_domain *domain, struct pci_dev *pdev)
1552 struct device_node *of_node;
1553 u32 rid = pci_dev_id(pdev);
1555 pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1557 of_node = irq_domain_get_of_node(domain);
1558 rid = of_node ? of_msi_map_id(&pdev->dev, of_node, rid) :
1559 iort_msi_map_id(&pdev->dev, rid);
1565 * pci_msi_get_device_domain - Get the MSI domain for a given PCI device
1566 * @pdev: The PCI device
1568 * Use the firmware data to find a device-specific MSI domain
1569 * (i.e. not one that is set as a default).
1571 * Returns: The corresponding MSI domain or NULL if none has been found.
1573 struct irq_domain *pci_msi_get_device_domain(struct pci_dev *pdev)
1575 struct irq_domain *dom;
1576 u32 rid = pci_dev_id(pdev);
1578 pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1579 dom = of_msi_map_get_device_domain(&pdev->dev, rid, DOMAIN_BUS_PCI_MSI);
1581 dom = iort_get_device_domain(&pdev->dev, rid,
1582 DOMAIN_BUS_PCI_MSI);
1587 * pci_dev_has_special_msi_domain - Check whether the device is handled by
1588 * a non-standard PCI-MSI domain
1589 * @pdev: The PCI device to check.
1591 * Returns: True if the device irqdomain or the bus irqdomain is
1592 * non-standard PCI/MSI.
1594 bool pci_dev_has_special_msi_domain(struct pci_dev *pdev)
1596 struct irq_domain *dom = dev_get_msi_domain(&pdev->dev);
1599 dom = dev_get_msi_domain(&pdev->bus->dev);
1604 return dom->bus_token != DOMAIN_BUS_PCI_MSI;
1607 #endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */