3 * Purpose: PCI Message Signaled Interrupt (MSI)
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
11 #include <linux/irq.h>
12 #include <linux/interrupt.h>
13 #include <linux/export.h>
14 #include <linux/ioport.h>
15 #include <linux/pci.h>
16 #include <linux/proc_fs.h>
17 #include <linux/msi.h>
18 #include <linux/smp.h>
19 #include <linux/errno.h>
21 #include <linux/slab.h>
22 #include <linux/irqdomain.h>
26 static int pci_msi_enable
= 1;
27 int pci_msi_ignore_mask
;
29 #define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
31 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
32 static struct irq_domain
*pci_msi_default_domain
;
33 static DEFINE_MUTEX(pci_msi_domain_lock
);
35 struct irq_domain
* __weak
arch_get_pci_msi_domain(struct pci_dev
*dev
)
37 return pci_msi_default_domain
;
40 static struct irq_domain
*pci_msi_get_domain(struct pci_dev
*dev
)
42 struct irq_domain
*domain
= NULL
;
45 domain
= dev
->bus
->msi
->domain
;
47 domain
= arch_get_pci_msi_domain(dev
);
52 static int pci_msi_setup_msi_irqs(struct pci_dev
*dev
, int nvec
, int type
)
54 struct irq_domain
*domain
;
56 domain
= pci_msi_get_domain(dev
);
58 return pci_msi_domain_alloc_irqs(domain
, dev
, nvec
, type
);
60 return arch_setup_msi_irqs(dev
, nvec
, type
);
63 static void pci_msi_teardown_msi_irqs(struct pci_dev
*dev
)
65 struct irq_domain
*domain
;
67 domain
= pci_msi_get_domain(dev
);
69 pci_msi_domain_free_irqs(domain
, dev
);
71 arch_teardown_msi_irqs(dev
);
74 #define pci_msi_setup_msi_irqs arch_setup_msi_irqs
75 #define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
80 struct msi_controller
* __weak
pcibios_msi_controller(struct pci_dev
*dev
)
85 static struct msi_controller
*pci_msi_controller(struct pci_dev
*dev
)
87 struct msi_controller
*msi_ctrl
= dev
->bus
->msi
;
92 return pcibios_msi_controller(dev
);
95 int __weak
arch_setup_msi_irq(struct pci_dev
*dev
, struct msi_desc
*desc
)
97 struct msi_controller
*chip
= pci_msi_controller(dev
);
100 if (!chip
|| !chip
->setup_irq
)
103 err
= chip
->setup_irq(chip
, dev
, desc
);
107 irq_set_chip_data(desc
->irq
, chip
);
112 void __weak
arch_teardown_msi_irq(unsigned int irq
)
114 struct msi_controller
*chip
= irq_get_chip_data(irq
);
116 if (!chip
|| !chip
->teardown_irq
)
119 chip
->teardown_irq(chip
, irq
);
122 int __weak
arch_setup_msi_irqs(struct pci_dev
*dev
, int nvec
, int type
)
124 struct msi_desc
*entry
;
128 * If an architecture wants to support multiple MSI, it needs to
129 * override arch_setup_msi_irqs()
131 if (type
== PCI_CAP_ID_MSI
&& nvec
> 1)
134 list_for_each_entry(entry
, &dev
->msi_list
, list
) {
135 ret
= arch_setup_msi_irq(dev
, entry
);
146 * We have a default implementation available as a separate non-weak
147 * function, as it is used by the Xen x86 PCI code
149 void default_teardown_msi_irqs(struct pci_dev
*dev
)
152 struct msi_desc
*entry
;
154 list_for_each_entry(entry
, &dev
->msi_list
, list
)
156 for (i
= 0; i
< entry
->nvec_used
; i
++)
157 arch_teardown_msi_irq(entry
->irq
+ i
);
160 void __weak
arch_teardown_msi_irqs(struct pci_dev
*dev
)
162 return default_teardown_msi_irqs(dev
);
165 static void default_restore_msi_irq(struct pci_dev
*dev
, int irq
)
167 struct msi_desc
*entry
;
170 if (dev
->msix_enabled
) {
171 list_for_each_entry(entry
, &dev
->msi_list
, list
) {
172 if (irq
== entry
->irq
)
175 } else if (dev
->msi_enabled
) {
176 entry
= irq_get_msi_desc(irq
);
180 __pci_write_msi_msg(entry
, &entry
->msg
);
183 void __weak
arch_restore_msi_irqs(struct pci_dev
*dev
)
185 return default_restore_msi_irqs(dev
);
188 static void msi_set_enable(struct pci_dev
*dev
, int enable
)
192 pci_read_config_word(dev
, dev
->msi_cap
+ PCI_MSI_FLAGS
, &control
);
193 control
&= ~PCI_MSI_FLAGS_ENABLE
;
195 control
|= PCI_MSI_FLAGS_ENABLE
;
196 pci_write_config_word(dev
, dev
->msi_cap
+ PCI_MSI_FLAGS
, control
);
199 static void msix_clear_and_set_ctrl(struct pci_dev
*dev
, u16 clear
, u16 set
)
203 pci_read_config_word(dev
, dev
->msix_cap
+ PCI_MSIX_FLAGS
, &ctrl
);
206 pci_write_config_word(dev
, dev
->msix_cap
+ PCI_MSIX_FLAGS
, ctrl
);
209 static inline __attribute_const__ u32
msi_mask(unsigned x
)
211 /* Don't shift by >= width of type */
214 return (1 << (1 << x
)) - 1;
218 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
219 * mask all MSI interrupts by clearing the MSI enable bit does not work
220 * reliably as devices without an INTx disable bit will then generate a
221 * level IRQ which will never be cleared.
223 u32
__pci_msi_desc_mask_irq(struct msi_desc
*desc
, u32 mask
, u32 flag
)
225 u32 mask_bits
= desc
->masked
;
227 if (pci_msi_ignore_mask
|| !desc
->msi_attrib
.maskbit
)
232 pci_write_config_dword(desc
->dev
, desc
->mask_pos
, mask_bits
);
237 static void msi_mask_irq(struct msi_desc
*desc
, u32 mask
, u32 flag
)
239 desc
->masked
= __pci_msi_desc_mask_irq(desc
, mask
, flag
);
243 * This internal function does not flush PCI writes to the device.
244 * All users must ensure that they read from the device before either
245 * assuming that the device state is up to date, or returning out of this
246 * file. This saves a few milliseconds when initialising devices with lots
247 * of MSI-X interrupts.
249 u32
__pci_msix_desc_mask_irq(struct msi_desc
*desc
, u32 flag
)
251 u32 mask_bits
= desc
->masked
;
252 unsigned offset
= desc
->msi_attrib
.entry_nr
* PCI_MSIX_ENTRY_SIZE
+
253 PCI_MSIX_ENTRY_VECTOR_CTRL
;
255 if (pci_msi_ignore_mask
)
258 mask_bits
&= ~PCI_MSIX_ENTRY_CTRL_MASKBIT
;
260 mask_bits
|= PCI_MSIX_ENTRY_CTRL_MASKBIT
;
261 writel(mask_bits
, desc
->mask_base
+ offset
);
266 static void msix_mask_irq(struct msi_desc
*desc
, u32 flag
)
268 desc
->masked
= __pci_msix_desc_mask_irq(desc
, flag
);
271 static void msi_set_mask_bit(struct irq_data
*data
, u32 flag
)
273 struct msi_desc
*desc
= irq_data_get_msi(data
);
275 if (desc
->msi_attrib
.is_msix
) {
276 msix_mask_irq(desc
, flag
);
277 readl(desc
->mask_base
); /* Flush write to device */
279 unsigned offset
= data
->irq
- desc
->irq
;
280 msi_mask_irq(desc
, 1 << offset
, flag
<< offset
);
285 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
286 * @data: pointer to irqdata associated to that interrupt
288 void pci_msi_mask_irq(struct irq_data
*data
)
290 msi_set_mask_bit(data
, 1);
294 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
295 * @data: pointer to irqdata associated to that interrupt
297 void pci_msi_unmask_irq(struct irq_data
*data
)
299 msi_set_mask_bit(data
, 0);
302 void default_restore_msi_irqs(struct pci_dev
*dev
)
304 struct msi_desc
*entry
;
306 list_for_each_entry(entry
, &dev
->msi_list
, list
)
307 default_restore_msi_irq(dev
, entry
->irq
);
310 void __pci_read_msi_msg(struct msi_desc
*entry
, struct msi_msg
*msg
)
312 BUG_ON(entry
->dev
->current_state
!= PCI_D0
);
314 if (entry
->msi_attrib
.is_msix
) {
315 void __iomem
*base
= entry
->mask_base
+
316 entry
->msi_attrib
.entry_nr
* PCI_MSIX_ENTRY_SIZE
;
318 msg
->address_lo
= readl(base
+ PCI_MSIX_ENTRY_LOWER_ADDR
);
319 msg
->address_hi
= readl(base
+ PCI_MSIX_ENTRY_UPPER_ADDR
);
320 msg
->data
= readl(base
+ PCI_MSIX_ENTRY_DATA
);
322 struct pci_dev
*dev
= entry
->dev
;
323 int pos
= dev
->msi_cap
;
326 pci_read_config_dword(dev
, pos
+ PCI_MSI_ADDRESS_LO
,
328 if (entry
->msi_attrib
.is_64
) {
329 pci_read_config_dword(dev
, pos
+ PCI_MSI_ADDRESS_HI
,
331 pci_read_config_word(dev
, pos
+ PCI_MSI_DATA_64
, &data
);
334 pci_read_config_word(dev
, pos
+ PCI_MSI_DATA_32
, &data
);
340 void __pci_write_msi_msg(struct msi_desc
*entry
, struct msi_msg
*msg
)
342 if (entry
->dev
->current_state
!= PCI_D0
) {
343 /* Don't touch the hardware now */
344 } else if (entry
->msi_attrib
.is_msix
) {
346 base
= entry
->mask_base
+
347 entry
->msi_attrib
.entry_nr
* PCI_MSIX_ENTRY_SIZE
;
349 writel(msg
->address_lo
, base
+ PCI_MSIX_ENTRY_LOWER_ADDR
);
350 writel(msg
->address_hi
, base
+ PCI_MSIX_ENTRY_UPPER_ADDR
);
351 writel(msg
->data
, base
+ PCI_MSIX_ENTRY_DATA
);
353 struct pci_dev
*dev
= entry
->dev
;
354 int pos
= dev
->msi_cap
;
357 pci_read_config_word(dev
, pos
+ PCI_MSI_FLAGS
, &msgctl
);
358 msgctl
&= ~PCI_MSI_FLAGS_QSIZE
;
359 msgctl
|= entry
->msi_attrib
.multiple
<< 4;
360 pci_write_config_word(dev
, pos
+ PCI_MSI_FLAGS
, msgctl
);
362 pci_write_config_dword(dev
, pos
+ PCI_MSI_ADDRESS_LO
,
364 if (entry
->msi_attrib
.is_64
) {
365 pci_write_config_dword(dev
, pos
+ PCI_MSI_ADDRESS_HI
,
367 pci_write_config_word(dev
, pos
+ PCI_MSI_DATA_64
,
370 pci_write_config_word(dev
, pos
+ PCI_MSI_DATA_32
,
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 msi_desc
*entry
, *tmp
;
388 struct attribute
**msi_attrs
;
389 struct device_attribute
*dev_attr
;
392 list_for_each_entry(entry
, &dev
->msi_list
, list
)
394 for (i
= 0; i
< entry
->nvec_used
; i
++)
395 BUG_ON(irq_has_action(entry
->irq
+ i
));
397 pci_msi_teardown_msi_irqs(dev
);
399 list_for_each_entry_safe(entry
, tmp
, &dev
->msi_list
, list
) {
400 if (entry
->msi_attrib
.is_msix
) {
401 if (list_is_last(&entry
->list
, &dev
->msi_list
))
402 iounmap(entry
->mask_base
);
405 list_del(&entry
->list
);
409 if (dev
->msi_irq_groups
) {
410 sysfs_remove_groups(&dev
->dev
.kobj
, dev
->msi_irq_groups
);
411 msi_attrs
= dev
->msi_irq_groups
[0]->attrs
;
412 while (msi_attrs
[count
]) {
413 dev_attr
= container_of(msi_attrs
[count
],
414 struct device_attribute
, attr
);
415 kfree(dev_attr
->attr
.name
);
420 kfree(dev
->msi_irq_groups
[0]);
421 kfree(dev
->msi_irq_groups
);
422 dev
->msi_irq_groups
= NULL
;
426 static struct msi_desc
*alloc_msi_entry(struct pci_dev
*dev
)
428 struct msi_desc
*desc
= kzalloc(sizeof(*desc
), GFP_KERNEL
);
432 INIT_LIST_HEAD(&desc
->list
);
438 static void pci_intx_for_msi(struct pci_dev
*dev
, int enable
)
440 if (!(dev
->dev_flags
& PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG
))
441 pci_intx(dev
, enable
);
444 static void __pci_restore_msi_state(struct pci_dev
*dev
)
447 struct msi_desc
*entry
;
449 if (!dev
->msi_enabled
)
452 entry
= irq_get_msi_desc(dev
->irq
);
454 pci_intx_for_msi(dev
, 0);
455 msi_set_enable(dev
, 0);
456 arch_restore_msi_irqs(dev
);
458 pci_read_config_word(dev
, dev
->msi_cap
+ PCI_MSI_FLAGS
, &control
);
459 msi_mask_irq(entry
, msi_mask(entry
->msi_attrib
.multi_cap
),
461 control
&= ~PCI_MSI_FLAGS_QSIZE
;
462 control
|= (entry
->msi_attrib
.multiple
<< 4) | PCI_MSI_FLAGS_ENABLE
;
463 pci_write_config_word(dev
, dev
->msi_cap
+ PCI_MSI_FLAGS
, control
);
466 static void __pci_restore_msix_state(struct pci_dev
*dev
)
468 struct msi_desc
*entry
;
470 if (!dev
->msix_enabled
)
472 BUG_ON(list_empty(&dev
->msi_list
));
474 /* route the table */
475 pci_intx_for_msi(dev
, 0);
476 msix_clear_and_set_ctrl(dev
, 0,
477 PCI_MSIX_FLAGS_ENABLE
| PCI_MSIX_FLAGS_MASKALL
);
479 arch_restore_msi_irqs(dev
);
480 list_for_each_entry(entry
, &dev
->msi_list
, list
)
481 msix_mask_irq(entry
, entry
->masked
);
483 msix_clear_and_set_ctrl(dev
, PCI_MSIX_FLAGS_MASKALL
, 0);
486 void pci_restore_msi_state(struct pci_dev
*dev
)
488 __pci_restore_msi_state(dev
);
489 __pci_restore_msix_state(dev
);
491 EXPORT_SYMBOL_GPL(pci_restore_msi_state
);
493 static ssize_t
msi_mode_show(struct device
*dev
, struct device_attribute
*attr
,
496 struct msi_desc
*entry
;
500 retval
= kstrtoul(attr
->attr
.name
, 10, &irq
);
504 entry
= irq_get_msi_desc(irq
);
506 return sprintf(buf
, "%s\n",
507 entry
->msi_attrib
.is_msix
? "msix" : "msi");
512 static int populate_msi_sysfs(struct pci_dev
*pdev
)
514 struct attribute
**msi_attrs
;
515 struct attribute
*msi_attr
;
516 struct device_attribute
*msi_dev_attr
;
517 struct attribute_group
*msi_irq_group
;
518 const struct attribute_group
**msi_irq_groups
;
519 struct msi_desc
*entry
;
524 /* Determine how many msi entries we have */
525 list_for_each_entry(entry
, &pdev
->msi_list
, list
)
530 /* Dynamically create the MSI attributes for the PCI device */
531 msi_attrs
= kzalloc(sizeof(void *) * (num_msi
+ 1), GFP_KERNEL
);
534 list_for_each_entry(entry
, &pdev
->msi_list
, list
) {
535 msi_dev_attr
= kzalloc(sizeof(*msi_dev_attr
), GFP_KERNEL
);
538 msi_attrs
[count
] = &msi_dev_attr
->attr
;
540 sysfs_attr_init(&msi_dev_attr
->attr
);
541 msi_dev_attr
->attr
.name
= kasprintf(GFP_KERNEL
, "%d",
543 if (!msi_dev_attr
->attr
.name
)
545 msi_dev_attr
->attr
.mode
= S_IRUGO
;
546 msi_dev_attr
->show
= msi_mode_show
;
550 msi_irq_group
= kzalloc(sizeof(*msi_irq_group
), GFP_KERNEL
);
553 msi_irq_group
->name
= "msi_irqs";
554 msi_irq_group
->attrs
= msi_attrs
;
556 msi_irq_groups
= kzalloc(sizeof(void *) * 2, GFP_KERNEL
);
558 goto error_irq_group
;
559 msi_irq_groups
[0] = msi_irq_group
;
561 ret
= sysfs_create_groups(&pdev
->dev
.kobj
, msi_irq_groups
);
563 goto error_irq_groups
;
564 pdev
->msi_irq_groups
= msi_irq_groups
;
569 kfree(msi_irq_groups
);
571 kfree(msi_irq_group
);
574 msi_attr
= msi_attrs
[count
];
576 msi_dev_attr
= container_of(msi_attr
, struct device_attribute
, attr
);
577 kfree(msi_attr
->name
);
580 msi_attr
= msi_attrs
[count
];
586 static struct msi_desc
*msi_setup_entry(struct pci_dev
*dev
, int nvec
)
589 struct msi_desc
*entry
;
591 /* MSI Entry Initialization */
592 entry
= alloc_msi_entry(dev
);
596 pci_read_config_word(dev
, dev
->msi_cap
+ PCI_MSI_FLAGS
, &control
);
598 entry
->msi_attrib
.is_msix
= 0;
599 entry
->msi_attrib
.is_64
= !!(control
& PCI_MSI_FLAGS_64BIT
);
600 entry
->msi_attrib
.entry_nr
= 0;
601 entry
->msi_attrib
.maskbit
= !!(control
& PCI_MSI_FLAGS_MASKBIT
);
602 entry
->msi_attrib
.default_irq
= dev
->irq
; /* Save IOAPIC IRQ */
603 entry
->msi_attrib
.multi_cap
= (control
& PCI_MSI_FLAGS_QMASK
) >> 1;
604 entry
->msi_attrib
.multiple
= ilog2(__roundup_pow_of_two(nvec
));
605 entry
->nvec_used
= nvec
;
607 if (control
& PCI_MSI_FLAGS_64BIT
)
608 entry
->mask_pos
= dev
->msi_cap
+ PCI_MSI_MASK_64
;
610 entry
->mask_pos
= dev
->msi_cap
+ PCI_MSI_MASK_32
;
612 /* Save the initial mask status */
613 if (entry
->msi_attrib
.maskbit
)
614 pci_read_config_dword(dev
, entry
->mask_pos
, &entry
->masked
);
619 static int msi_verify_entries(struct pci_dev
*dev
)
621 struct msi_desc
*entry
;
623 list_for_each_entry(entry
, &dev
->msi_list
, list
) {
624 if (!dev
->no_64bit_msi
|| !entry
->msg
.address_hi
)
626 dev_err(&dev
->dev
, "Device has broken 64-bit MSI but arch"
627 " tried to assign one above 4G\n");
634 * msi_capability_init - configure device's MSI capability structure
635 * @dev: pointer to the pci_dev data structure of MSI device function
636 * @nvec: number of interrupts to allocate
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
)
646 struct msi_desc
*entry
;
650 msi_set_enable(dev
, 0); /* Disable MSI during set up */
652 entry
= msi_setup_entry(dev
, nvec
);
656 /* All MSIs are unmasked by default, Mask them all */
657 mask
= msi_mask(entry
->msi_attrib
.multi_cap
);
658 msi_mask_irq(entry
, mask
, mask
);
660 list_add_tail(&entry
->list
, &dev
->msi_list
);
662 /* Configure MSI capability structure */
663 ret
= pci_msi_setup_msi_irqs(dev
, nvec
, PCI_CAP_ID_MSI
);
665 msi_mask_irq(entry
, mask
, ~mask
);
670 ret
= msi_verify_entries(dev
);
672 msi_mask_irq(entry
, mask
, ~mask
);
677 ret
= populate_msi_sysfs(dev
);
679 msi_mask_irq(entry
, mask
, ~mask
);
684 /* Set MSI enabled bits */
685 pci_intx_for_msi(dev
, 0);
686 msi_set_enable(dev
, 1);
687 dev
->msi_enabled
= 1;
689 dev
->irq
= entry
->irq
;
693 static void __iomem
*msix_map_region(struct pci_dev
*dev
, unsigned nr_entries
)
695 resource_size_t phys_addr
;
699 pci_read_config_dword(dev
, dev
->msix_cap
+ PCI_MSIX_TABLE
,
701 bir
= (u8
)(table_offset
& PCI_MSIX_TABLE_BIR
);
702 table_offset
&= PCI_MSIX_TABLE_OFFSET
;
703 phys_addr
= pci_resource_start(dev
, bir
) + table_offset
;
705 return ioremap_nocache(phys_addr
, nr_entries
* PCI_MSIX_ENTRY_SIZE
);
708 static int msix_setup_entries(struct pci_dev
*dev
, void __iomem
*base
,
709 struct msix_entry
*entries
, int nvec
)
711 struct msi_desc
*entry
;
714 for (i
= 0; i
< nvec
; i
++) {
715 entry
= alloc_msi_entry(dev
);
721 /* No enough memory. Don't try again */
725 entry
->msi_attrib
.is_msix
= 1;
726 entry
->msi_attrib
.is_64
= 1;
727 entry
->msi_attrib
.entry_nr
= entries
[i
].entry
;
728 entry
->msi_attrib
.default_irq
= dev
->irq
;
729 entry
->mask_base
= base
;
730 entry
->nvec_used
= 1;
732 list_add_tail(&entry
->list
, &dev
->msi_list
);
738 static void msix_program_entries(struct pci_dev
*dev
,
739 struct msix_entry
*entries
)
741 struct msi_desc
*entry
;
744 list_for_each_entry(entry
, &dev
->msi_list
, list
) {
745 int offset
= entries
[i
].entry
* PCI_MSIX_ENTRY_SIZE
+
746 PCI_MSIX_ENTRY_VECTOR_CTRL
;
748 entries
[i
].vector
= entry
->irq
;
749 entry
->masked
= readl(entry
->mask_base
+ offset
);
750 msix_mask_irq(entry
, 1);
756 * msix_capability_init - configure device's MSI-X capability
757 * @dev: pointer to the pci_dev data structure of MSI-X device function
758 * @entries: pointer to an array of struct msix_entry entries
759 * @nvec: number of @entries
761 * Setup the MSI-X capability structure of device function with a
762 * single MSI-X irq. A return of zero indicates the successful setup of
763 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
765 static int msix_capability_init(struct pci_dev
*dev
,
766 struct msix_entry
*entries
, int nvec
)
772 /* Ensure MSI-X is disabled while it is set up */
773 msix_clear_and_set_ctrl(dev
, PCI_MSIX_FLAGS_ENABLE
, 0);
775 pci_read_config_word(dev
, dev
->msix_cap
+ PCI_MSIX_FLAGS
, &control
);
776 /* Request & Map MSI-X table region */
777 base
= msix_map_region(dev
, msix_table_size(control
));
781 ret
= msix_setup_entries(dev
, base
, entries
, nvec
);
785 ret
= pci_msi_setup_msi_irqs(dev
, nvec
, PCI_CAP_ID_MSIX
);
789 /* Check if all MSI entries honor device restrictions */
790 ret
= msi_verify_entries(dev
);
795 * Some devices require MSI-X to be enabled before we can touch the
796 * MSI-X registers. We need to mask all the vectors to prevent
797 * interrupts coming in before they're fully set up.
799 msix_clear_and_set_ctrl(dev
, 0,
800 PCI_MSIX_FLAGS_MASKALL
| PCI_MSIX_FLAGS_ENABLE
);
802 msix_program_entries(dev
, entries
);
804 ret
= populate_msi_sysfs(dev
);
808 /* Set MSI-X enabled bits and unmask the function */
809 pci_intx_for_msi(dev
, 0);
810 dev
->msix_enabled
= 1;
812 msix_clear_and_set_ctrl(dev
, PCI_MSIX_FLAGS_MASKALL
, 0);
819 * If we had some success, report the number of irqs
820 * we succeeded in setting up.
822 struct msi_desc
*entry
;
825 list_for_each_entry(entry
, &dev
->msi_list
, list
) {
840 * pci_msi_supported - check whether MSI may be enabled on a device
841 * @dev: pointer to the pci_dev data structure of MSI device function
842 * @nvec: how many MSIs have been requested ?
844 * Look at global flags, the device itself, and its parent buses
845 * to determine if MSI/-X are supported for the device. If MSI/-X is
846 * supported return 1, else return 0.
848 static int pci_msi_supported(struct pci_dev
*dev
, int nvec
)
852 /* MSI must be globally enabled and supported by the device */
856 if (!dev
|| dev
->no_msi
|| dev
->current_state
!= PCI_D0
)
860 * You can't ask to have 0 or less MSIs configured.
862 * b) the list manipulation code assumes nvec >= 1.
868 * Any bridge which does NOT route MSI transactions from its
869 * secondary bus to its primary bus must set NO_MSI flag on
870 * the secondary pci_bus.
871 * We expect only arch-specific PCI host bus controller driver
872 * or quirks for specific PCI bridges to be setting NO_MSI.
874 for (bus
= dev
->bus
; bus
; bus
= bus
->parent
)
875 if (bus
->bus_flags
& PCI_BUS_FLAGS_NO_MSI
)
882 * pci_msi_vec_count - Return the number of MSI vectors a device can send
883 * @dev: device to report about
885 * This function returns the number of MSI vectors a device requested via
886 * Multiple Message Capable register. It returns a negative errno if the
887 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
888 * and returns a power of two, up to a maximum of 2^5 (32), according to the
891 int pci_msi_vec_count(struct pci_dev
*dev
)
899 pci_read_config_word(dev
, dev
->msi_cap
+ PCI_MSI_FLAGS
, &msgctl
);
900 ret
= 1 << ((msgctl
& PCI_MSI_FLAGS_QMASK
) >> 1);
904 EXPORT_SYMBOL(pci_msi_vec_count
);
906 void pci_msi_shutdown(struct pci_dev
*dev
)
908 struct msi_desc
*desc
;
911 if (!pci_msi_enable
|| !dev
|| !dev
->msi_enabled
)
914 BUG_ON(list_empty(&dev
->msi_list
));
915 desc
= list_first_entry(&dev
->msi_list
, struct msi_desc
, list
);
917 msi_set_enable(dev
, 0);
918 pci_intx_for_msi(dev
, 1);
919 dev
->msi_enabled
= 0;
921 /* Return the device with MSI unmasked as initial states */
922 mask
= msi_mask(desc
->msi_attrib
.multi_cap
);
923 /* Keep cached state to be restored */
924 __pci_msi_desc_mask_irq(desc
, mask
, ~mask
);
926 /* Restore dev->irq to its default pin-assertion irq */
927 dev
->irq
= desc
->msi_attrib
.default_irq
;
930 void pci_disable_msi(struct pci_dev
*dev
)
932 if (!pci_msi_enable
|| !dev
|| !dev
->msi_enabled
)
935 pci_msi_shutdown(dev
);
938 EXPORT_SYMBOL(pci_disable_msi
);
941 * pci_msix_vec_count - return the number of device's MSI-X table entries
942 * @dev: pointer to the pci_dev data structure of MSI-X device function
943 * This function returns the number of device's MSI-X table entries and
944 * therefore the number of MSI-X vectors device is capable of sending.
945 * It returns a negative errno if the device is not capable of sending MSI-X
948 int pci_msix_vec_count(struct pci_dev
*dev
)
955 pci_read_config_word(dev
, dev
->msix_cap
+ PCI_MSIX_FLAGS
, &control
);
956 return msix_table_size(control
);
958 EXPORT_SYMBOL(pci_msix_vec_count
);
961 * pci_enable_msix - configure device's MSI-X capability structure
962 * @dev: pointer to the pci_dev data structure of MSI-X device function
963 * @entries: pointer to an array of MSI-X entries
964 * @nvec: number of MSI-X irqs requested for allocation by device driver
966 * Setup the MSI-X capability structure of device function with the number
967 * of requested irqs upon its software driver call to request for
968 * MSI-X mode enabled on its hardware device function. A return of zero
969 * indicates the successful configuration of MSI-X capability structure
970 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
971 * Or a return of > 0 indicates that driver request is exceeding the number
972 * of irqs or MSI-X vectors available. Driver should use the returned value to
973 * re-send its request.
975 int pci_enable_msix(struct pci_dev
*dev
, struct msix_entry
*entries
, int nvec
)
980 if (!pci_msi_supported(dev
, nvec
))
986 nr_entries
= pci_msix_vec_count(dev
);
989 if (nvec
> nr_entries
)
992 /* Check for any invalid entries */
993 for (i
= 0; i
< nvec
; i
++) {
994 if (entries
[i
].entry
>= nr_entries
)
995 return -EINVAL
; /* invalid entry */
996 for (j
= i
+ 1; j
< nvec
; j
++) {
997 if (entries
[i
].entry
== entries
[j
].entry
)
998 return -EINVAL
; /* duplicate entry */
1001 WARN_ON(!!dev
->msix_enabled
);
1003 /* Check whether driver already requested for MSI irq */
1004 if (dev
->msi_enabled
) {
1005 dev_info(&dev
->dev
, "can't enable MSI-X (MSI IRQ already assigned)\n");
1008 return msix_capability_init(dev
, entries
, nvec
);
1010 EXPORT_SYMBOL(pci_enable_msix
);
1012 void pci_msix_shutdown(struct pci_dev
*dev
)
1014 struct msi_desc
*entry
;
1016 if (!pci_msi_enable
|| !dev
|| !dev
->msix_enabled
)
1019 /* Return the device with MSI-X masked as initial states */
1020 list_for_each_entry(entry
, &dev
->msi_list
, list
) {
1021 /* Keep cached states to be restored */
1022 __pci_msix_desc_mask_irq(entry
, 1);
1025 msix_clear_and_set_ctrl(dev
, PCI_MSIX_FLAGS_ENABLE
, 0);
1026 pci_intx_for_msi(dev
, 1);
1027 dev
->msix_enabled
= 0;
1030 void pci_disable_msix(struct pci_dev
*dev
)
1032 if (!pci_msi_enable
|| !dev
|| !dev
->msix_enabled
)
1035 pci_msix_shutdown(dev
);
1038 EXPORT_SYMBOL(pci_disable_msix
);
1040 void pci_no_msi(void)
1046 * pci_msi_enabled - is MSI enabled?
1048 * Returns true if MSI has not been disabled by the command-line option
1051 int pci_msi_enabled(void)
1053 return pci_msi_enable
;
1055 EXPORT_SYMBOL(pci_msi_enabled
);
1057 void pci_msi_init_pci_dev(struct pci_dev
*dev
)
1059 INIT_LIST_HEAD(&dev
->msi_list
);
1061 /* Disable the msi hardware to avoid screaming interrupts
1062 * during boot. This is the power on reset default so
1063 * usually this should be a noop.
1065 dev
->msi_cap
= pci_find_capability(dev
, PCI_CAP_ID_MSI
);
1067 msi_set_enable(dev
, 0);
1069 dev
->msix_cap
= pci_find_capability(dev
, PCI_CAP_ID_MSIX
);
1071 msix_clear_and_set_ctrl(dev
, PCI_MSIX_FLAGS_ENABLE
, 0);
1075 * pci_enable_msi_range - configure device's MSI capability structure
1076 * @dev: device to configure
1077 * @minvec: minimal number of interrupts to configure
1078 * @maxvec: maximum number of interrupts to configure
1080 * This function tries to allocate a maximum possible number of interrupts in a
1081 * range between @minvec and @maxvec. It returns a negative errno if an error
1082 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1083 * and updates the @dev's irq member to the lowest new interrupt number;
1084 * the other interrupt numbers allocated to this device are consecutive.
1086 int pci_enable_msi_range(struct pci_dev
*dev
, int minvec
, int maxvec
)
1091 if (!pci_msi_supported(dev
, minvec
))
1094 WARN_ON(!!dev
->msi_enabled
);
1096 /* Check whether driver already requested MSI-X irqs */
1097 if (dev
->msix_enabled
) {
1099 "can't enable MSI (MSI-X already enabled)\n");
1103 if (maxvec
< minvec
)
1106 nvec
= pci_msi_vec_count(dev
);
1109 else if (nvec
< minvec
)
1111 else if (nvec
> maxvec
)
1115 rc
= msi_capability_init(dev
, nvec
);
1118 } else if (rc
> 0) {
1127 EXPORT_SYMBOL(pci_enable_msi_range
);
1130 * pci_enable_msix_range - configure device's MSI-X capability structure
1131 * @dev: pointer to the pci_dev data structure of MSI-X device function
1132 * @entries: pointer to an array of MSI-X entries
1133 * @minvec: minimum number of MSI-X irqs requested
1134 * @maxvec: maximum number of MSI-X irqs requested
1136 * Setup the MSI-X capability structure of device function with a maximum
1137 * possible number of interrupts in the range between @minvec and @maxvec
1138 * upon its software driver call to request for MSI-X mode enabled on its
1139 * hardware device function. It returns a negative errno if an error occurs.
1140 * If it succeeds, it returns the actual number of interrupts allocated and
1141 * indicates the successful configuration of MSI-X capability structure
1142 * with new allocated MSI-X interrupts.
1144 int pci_enable_msix_range(struct pci_dev
*dev
, struct msix_entry
*entries
,
1145 int minvec
, int maxvec
)
1150 if (maxvec
< minvec
)
1154 rc
= pci_enable_msix(dev
, entries
, nvec
);
1157 } else if (rc
> 0) {
1166 EXPORT_SYMBOL(pci_enable_msix_range
);
1168 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1170 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1171 * @irq_data: Pointer to interrupt data of the MSI interrupt
1172 * @msg: Pointer to the message
1174 void pci_msi_domain_write_msg(struct irq_data
*irq_data
, struct msi_msg
*msg
)
1176 struct msi_desc
*desc
= irq_data
->msi_desc
;
1179 * For MSI-X desc->irq is always equal to irq_data->irq. For
1180 * MSI only the first interrupt of MULTI MSI passes the test.
1182 if (desc
->irq
== irq_data
->irq
)
1183 __pci_write_msi_msg(desc
, msg
);
1187 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1188 * @dev: Pointer to the PCI device
1189 * @desc: Pointer to the msi descriptor
1191 * The ID number is only used within the irqdomain.
1193 irq_hw_number_t
pci_msi_domain_calc_hwirq(struct pci_dev
*dev
,
1194 struct msi_desc
*desc
)
1196 return (irq_hw_number_t
)desc
->msi_attrib
.entry_nr
|
1197 PCI_DEVID(dev
->bus
->number
, dev
->devfn
) << 11 |
1198 (pci_domain_nr(dev
->bus
) & 0xFFFFFFFF) << 27;
1201 static inline bool pci_msi_desc_is_multi_msi(struct msi_desc
*desc
)
1203 return !desc
->msi_attrib
.is_msix
&& desc
->nvec_used
> 1;
1207 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1208 * @domain: The interrupt domain to check
1209 * @info: The domain info for verification
1210 * @dev: The device to check
1213 * 0 if the functionality is supported
1214 * 1 if Multi MSI is requested, but the domain does not support it
1215 * -ENOTSUPP otherwise
1217 int pci_msi_domain_check_cap(struct irq_domain
*domain
,
1218 struct msi_domain_info
*info
, struct device
*dev
)
1220 struct msi_desc
*desc
= first_pci_msi_entry(to_pci_dev(dev
));
1222 /* Special handling to support pci_enable_msi_range() */
1223 if (pci_msi_desc_is_multi_msi(desc
) &&
1224 !(info
->flags
& MSI_FLAG_MULTI_PCI_MSI
))
1226 else if (desc
->msi_attrib
.is_msix
&& !(info
->flags
& MSI_FLAG_PCI_MSIX
))
1232 static int pci_msi_domain_handle_error(struct irq_domain
*domain
,
1233 struct msi_desc
*desc
, int error
)
1235 /* Special handling to support pci_enable_msi_range() */
1236 if (pci_msi_desc_is_multi_msi(desc
) && error
== -ENOSPC
)
1242 #ifdef GENERIC_MSI_DOMAIN_OPS
1243 static void pci_msi_domain_set_desc(msi_alloc_info_t
*arg
,
1244 struct msi_desc
*desc
)
1247 arg
->hwirq
= pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc
),
1251 #define pci_msi_domain_set_desc NULL
1254 static struct msi_domain_ops pci_msi_domain_ops_default
= {
1255 .set_desc
= pci_msi_domain_set_desc
,
1256 .msi_check
= pci_msi_domain_check_cap
,
1257 .handle_error
= pci_msi_domain_handle_error
,
1260 static void pci_msi_domain_update_dom_ops(struct msi_domain_info
*info
)
1262 struct msi_domain_ops
*ops
= info
->ops
;
1265 info
->ops
= &pci_msi_domain_ops_default
;
1267 if (ops
->set_desc
== NULL
)
1268 ops
->set_desc
= pci_msi_domain_set_desc
;
1269 if (ops
->msi_check
== NULL
)
1270 ops
->msi_check
= pci_msi_domain_check_cap
;
1271 if (ops
->handle_error
== NULL
)
1272 ops
->handle_error
= pci_msi_domain_handle_error
;
1276 static void pci_msi_domain_update_chip_ops(struct msi_domain_info
*info
)
1278 struct irq_chip
*chip
= info
->chip
;
1281 if (!chip
->irq_write_msi_msg
)
1282 chip
->irq_write_msi_msg
= pci_msi_domain_write_msg
;
1286 * pci_msi_create_irq_domain - Creat a MSI interrupt domain
1287 * @node: Optional device-tree node of the interrupt controller
1288 * @info: MSI domain info
1289 * @parent: Parent irq domain
1291 * Updates the domain and chip ops and creates a MSI interrupt domain.
1294 * A domain pointer or NULL in case of failure.
1296 struct irq_domain
*pci_msi_create_irq_domain(struct device_node
*node
,
1297 struct msi_domain_info
*info
,
1298 struct irq_domain
*parent
)
1300 if (info
->flags
& MSI_FLAG_USE_DEF_DOM_OPS
)
1301 pci_msi_domain_update_dom_ops(info
);
1302 if (info
->flags
& MSI_FLAG_USE_DEF_CHIP_OPS
)
1303 pci_msi_domain_update_chip_ops(info
);
1305 return msi_create_irq_domain(node
, info
, parent
);
1309 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1310 * @domain: The interrupt domain to allocate from
1311 * @dev: The device for which to allocate
1312 * @nvec: The number of interrupts to allocate
1313 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1316 * A virtual interrupt number or an error code in case of failure
1318 int pci_msi_domain_alloc_irqs(struct irq_domain
*domain
, struct pci_dev
*dev
,
1321 return msi_domain_alloc_irqs(domain
, &dev
->dev
, nvec
);
1325 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1326 * @domain: The interrupt domain
1327 * @dev: The device for which to free interrupts
1329 void pci_msi_domain_free_irqs(struct irq_domain
*domain
, struct pci_dev
*dev
)
1331 msi_domain_free_irqs(domain
, &dev
->dev
);
1335 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
1336 * @node: Optional device-tree node of the interrupt controller
1337 * @info: MSI domain info
1338 * @parent: Parent irq domain
1340 * Returns: A domain pointer or NULL in case of failure. If successful
1341 * the default PCI/MSI irqdomain pointer is updated.
1343 struct irq_domain
*pci_msi_create_default_irq_domain(struct device_node
*node
,
1344 struct msi_domain_info
*info
, struct irq_domain
*parent
)
1346 struct irq_domain
*domain
;
1348 mutex_lock(&pci_msi_domain_lock
);
1349 if (pci_msi_default_domain
) {
1350 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1353 domain
= pci_msi_create_irq_domain(node
, info
, parent
);
1354 pci_msi_default_domain
= domain
;
1356 mutex_unlock(&pci_msi_domain_lock
);
1360 #endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */