m68k: Fix assembler constraint to prevent overeager gcc optimisation
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pci / msi.c
blobe3efb433222efc4ea57209eadf06fa861614a388
1 /*
2 * File: msi.c
3 * Purpose: PCI Message Signaled Interrupt (MSI)
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
9 #include <linux/err.h>
10 #include <linux/mm.h>
11 #include <linux/irq.h>
12 #include <linux/interrupt.h>
13 #include <linux/init.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>
21 #include <linux/io.h>
22 #include <linux/slab.h>
24 #include "pci.h"
25 #include "msi.h"
27 static int pci_msi_enable = 1;
29 /* Arch hooks */
31 #ifndef arch_msi_check_device
32 int arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
34 return 0;
36 #endif
38 #ifndef arch_setup_msi_irqs
39 # define arch_setup_msi_irqs default_setup_msi_irqs
40 # define HAVE_DEFAULT_MSI_SETUP_IRQS
41 #endif
43 #ifdef HAVE_DEFAULT_MSI_SETUP_IRQS
44 int default_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
46 struct msi_desc *entry;
47 int ret;
50 * If an architecture wants to support multiple MSI, it needs to
51 * override arch_setup_msi_irqs()
53 if (type == PCI_CAP_ID_MSI && nvec > 1)
54 return 1;
56 list_for_each_entry(entry, &dev->msi_list, list) {
57 ret = arch_setup_msi_irq(dev, entry);
58 if (ret < 0)
59 return ret;
60 if (ret > 0)
61 return -ENOSPC;
64 return 0;
66 #endif
68 #ifndef arch_teardown_msi_irqs
69 # define arch_teardown_msi_irqs default_teardown_msi_irqs
70 # define HAVE_DEFAULT_MSI_TEARDOWN_IRQS
71 #endif
73 #ifdef HAVE_DEFAULT_MSI_TEARDOWN_IRQS
74 void default_teardown_msi_irqs(struct pci_dev *dev)
76 struct msi_desc *entry;
78 list_for_each_entry(entry, &dev->msi_list, list) {
79 int i, nvec;
80 if (entry->irq == 0)
81 continue;
82 nvec = 1 << entry->msi_attrib.multiple;
83 for (i = 0; i < nvec; i++)
84 arch_teardown_msi_irq(entry->irq + i);
87 #endif
89 static void msi_set_enable(struct pci_dev *dev, int pos, int enable)
91 u16 control;
93 BUG_ON(!pos);
95 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
96 control &= ~PCI_MSI_FLAGS_ENABLE;
97 if (enable)
98 control |= PCI_MSI_FLAGS_ENABLE;
99 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
102 static void msix_set_enable(struct pci_dev *dev, int enable)
104 int pos;
105 u16 control;
107 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
108 if (pos) {
109 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
110 control &= ~PCI_MSIX_FLAGS_ENABLE;
111 if (enable)
112 control |= PCI_MSIX_FLAGS_ENABLE;
113 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
117 static inline __attribute_const__ u32 msi_mask(unsigned x)
119 /* Don't shift by >= width of type */
120 if (x >= 5)
121 return 0xffffffff;
122 return (1 << (1 << x)) - 1;
125 static inline __attribute_const__ u32 msi_capable_mask(u16 control)
127 return msi_mask((control >> 1) & 7);
130 static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
132 return msi_mask((control >> 4) & 7);
136 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
137 * mask all MSI interrupts by clearing the MSI enable bit does not work
138 * reliably as devices without an INTx disable bit will then generate a
139 * level IRQ which will never be cleared.
141 static u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
143 u32 mask_bits = desc->masked;
145 if (!desc->msi_attrib.maskbit)
146 return 0;
148 mask_bits &= ~mask;
149 mask_bits |= flag;
150 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
152 return mask_bits;
155 static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
157 desc->masked = __msi_mask_irq(desc, mask, flag);
161 * This internal function does not flush PCI writes to the device.
162 * All users must ensure that they read from the device before either
163 * assuming that the device state is up to date, or returning out of this
164 * file. This saves a few milliseconds when initialising devices with lots
165 * of MSI-X interrupts.
167 static u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
169 u32 mask_bits = desc->masked;
170 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
171 PCI_MSIX_ENTRY_VECTOR_CTRL;
172 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
173 if (flag)
174 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
175 writel(mask_bits, desc->mask_base + offset);
177 return mask_bits;
180 static void msix_mask_irq(struct msi_desc *desc, u32 flag)
182 desc->masked = __msix_mask_irq(desc, flag);
185 static void msi_set_mask_bit(struct irq_data *data, u32 flag)
187 struct msi_desc *desc = irq_data_get_msi(data);
189 if (desc->msi_attrib.is_msix) {
190 msix_mask_irq(desc, flag);
191 readl(desc->mask_base); /* Flush write to device */
192 } else {
193 unsigned offset = data->irq - desc->dev->irq;
194 msi_mask_irq(desc, 1 << offset, flag << offset);
198 void mask_msi_irq(struct irq_data *data)
200 msi_set_mask_bit(data, 1);
203 void unmask_msi_irq(struct irq_data *data)
205 msi_set_mask_bit(data, 0);
208 void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
210 BUG_ON(entry->dev->current_state != PCI_D0);
212 if (entry->msi_attrib.is_msix) {
213 void __iomem *base = entry->mask_base +
214 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
216 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
217 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
218 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
219 } else {
220 struct pci_dev *dev = entry->dev;
221 int pos = entry->msi_attrib.pos;
222 u16 data;
224 pci_read_config_dword(dev, msi_lower_address_reg(pos),
225 &msg->address_lo);
226 if (entry->msi_attrib.is_64) {
227 pci_read_config_dword(dev, msi_upper_address_reg(pos),
228 &msg->address_hi);
229 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
230 } else {
231 msg->address_hi = 0;
232 pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
234 msg->data = data;
238 void read_msi_msg(unsigned int irq, struct msi_msg *msg)
240 struct msi_desc *entry = irq_get_msi_desc(irq);
242 __read_msi_msg(entry, msg);
245 void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
247 /* Assert that the cache is valid, assuming that
248 * valid messages are not all-zeroes. */
249 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
250 entry->msg.data));
252 *msg = entry->msg;
255 void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
257 struct msi_desc *entry = irq_get_msi_desc(irq);
259 __get_cached_msi_msg(entry, msg);
262 void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
264 if (entry->dev->current_state != PCI_D0) {
265 /* Don't touch the hardware now */
266 } else if (entry->msi_attrib.is_msix) {
267 void __iomem *base;
268 base = entry->mask_base +
269 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
271 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
272 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
273 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
274 } else {
275 struct pci_dev *dev = entry->dev;
276 int pos = entry->msi_attrib.pos;
277 u16 msgctl;
279 pci_read_config_word(dev, msi_control_reg(pos), &msgctl);
280 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
281 msgctl |= entry->msi_attrib.multiple << 4;
282 pci_write_config_word(dev, msi_control_reg(pos), msgctl);
284 pci_write_config_dword(dev, msi_lower_address_reg(pos),
285 msg->address_lo);
286 if (entry->msi_attrib.is_64) {
287 pci_write_config_dword(dev, msi_upper_address_reg(pos),
288 msg->address_hi);
289 pci_write_config_word(dev, msi_data_reg(pos, 1),
290 msg->data);
291 } else {
292 pci_write_config_word(dev, msi_data_reg(pos, 0),
293 msg->data);
296 entry->msg = *msg;
299 void write_msi_msg(unsigned int irq, struct msi_msg *msg)
301 struct msi_desc *entry = irq_get_msi_desc(irq);
303 __write_msi_msg(entry, msg);
306 static void free_msi_irqs(struct pci_dev *dev)
308 struct msi_desc *entry, *tmp;
310 list_for_each_entry(entry, &dev->msi_list, list) {
311 int i, nvec;
312 if (!entry->irq)
313 continue;
314 nvec = 1 << entry->msi_attrib.multiple;
315 for (i = 0; i < nvec; i++)
316 BUG_ON(irq_has_action(entry->irq + i));
319 arch_teardown_msi_irqs(dev);
321 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
322 if (entry->msi_attrib.is_msix) {
323 if (list_is_last(&entry->list, &dev->msi_list))
324 iounmap(entry->mask_base);
326 list_del(&entry->list);
327 kfree(entry);
331 static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
333 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
334 if (!desc)
335 return NULL;
337 INIT_LIST_HEAD(&desc->list);
338 desc->dev = dev;
340 return desc;
343 static void pci_intx_for_msi(struct pci_dev *dev, int enable)
345 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
346 pci_intx(dev, enable);
349 static void __pci_restore_msi_state(struct pci_dev *dev)
351 int pos;
352 u16 control;
353 struct msi_desc *entry;
355 if (!dev->msi_enabled)
356 return;
358 entry = irq_get_msi_desc(dev->irq);
359 pos = entry->msi_attrib.pos;
361 pci_intx_for_msi(dev, 0);
362 msi_set_enable(dev, pos, 0);
363 write_msi_msg(dev->irq, &entry->msg);
365 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
366 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
367 control &= ~PCI_MSI_FLAGS_QSIZE;
368 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
369 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
372 static void __pci_restore_msix_state(struct pci_dev *dev)
374 int pos;
375 struct msi_desc *entry;
376 u16 control;
378 if (!dev->msix_enabled)
379 return;
380 BUG_ON(list_empty(&dev->msi_list));
381 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
382 pos = entry->msi_attrib.pos;
383 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
385 /* route the table */
386 pci_intx_for_msi(dev, 0);
387 control |= PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL;
388 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
390 list_for_each_entry(entry, &dev->msi_list, list) {
391 write_msi_msg(entry->irq, &entry->msg);
392 msix_mask_irq(entry, entry->masked);
395 control &= ~PCI_MSIX_FLAGS_MASKALL;
396 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
399 void pci_restore_msi_state(struct pci_dev *dev)
401 __pci_restore_msi_state(dev);
402 __pci_restore_msix_state(dev);
404 EXPORT_SYMBOL_GPL(pci_restore_msi_state);
407 * msi_capability_init - configure device's MSI capability structure
408 * @dev: pointer to the pci_dev data structure of MSI device function
409 * @nvec: number of interrupts to allocate
411 * Setup the MSI capability structure of the device with the requested
412 * number of interrupts. A return value of zero indicates the successful
413 * setup of an entry with the new MSI irq. A negative return value indicates
414 * an error, and a positive return value indicates the number of interrupts
415 * which could have been allocated.
417 static int msi_capability_init(struct pci_dev *dev, int nvec)
419 struct msi_desc *entry;
420 int pos, ret;
421 u16 control;
422 unsigned mask;
424 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
425 msi_set_enable(dev, pos, 0); /* Disable MSI during set up */
427 pci_read_config_word(dev, msi_control_reg(pos), &control);
428 /* MSI Entry Initialization */
429 entry = alloc_msi_entry(dev);
430 if (!entry)
431 return -ENOMEM;
433 entry->msi_attrib.is_msix = 0;
434 entry->msi_attrib.is_64 = is_64bit_address(control);
435 entry->msi_attrib.entry_nr = 0;
436 entry->msi_attrib.maskbit = is_mask_bit_support(control);
437 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
438 entry->msi_attrib.pos = pos;
440 entry->mask_pos = msi_mask_reg(pos, entry->msi_attrib.is_64);
441 /* All MSIs are unmasked by default, Mask them all */
442 if (entry->msi_attrib.maskbit)
443 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
444 mask = msi_capable_mask(control);
445 msi_mask_irq(entry, mask, mask);
447 list_add_tail(&entry->list, &dev->msi_list);
449 /* Configure MSI capability structure */
450 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
451 if (ret) {
452 msi_mask_irq(entry, mask, ~mask);
453 free_msi_irqs(dev);
454 return ret;
457 /* Set MSI enabled bits */
458 pci_intx_for_msi(dev, 0);
459 msi_set_enable(dev, pos, 1);
460 dev->msi_enabled = 1;
462 dev->irq = entry->irq;
463 return 0;
466 static void __iomem *msix_map_region(struct pci_dev *dev, unsigned pos,
467 unsigned nr_entries)
469 resource_size_t phys_addr;
470 u32 table_offset;
471 u8 bir;
473 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
474 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
475 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
476 phys_addr = pci_resource_start(dev, bir) + table_offset;
478 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
481 static int msix_setup_entries(struct pci_dev *dev, unsigned pos,
482 void __iomem *base, struct msix_entry *entries,
483 int nvec)
485 struct msi_desc *entry;
486 int i;
488 for (i = 0; i < nvec; i++) {
489 entry = alloc_msi_entry(dev);
490 if (!entry) {
491 if (!i)
492 iounmap(base);
493 else
494 free_msi_irqs(dev);
495 /* No enough memory. Don't try again */
496 return -ENOMEM;
499 entry->msi_attrib.is_msix = 1;
500 entry->msi_attrib.is_64 = 1;
501 entry->msi_attrib.entry_nr = entries[i].entry;
502 entry->msi_attrib.default_irq = dev->irq;
503 entry->msi_attrib.pos = pos;
504 entry->mask_base = base;
506 list_add_tail(&entry->list, &dev->msi_list);
509 return 0;
512 static void msix_program_entries(struct pci_dev *dev,
513 struct msix_entry *entries)
515 struct msi_desc *entry;
516 int i = 0;
518 list_for_each_entry(entry, &dev->msi_list, list) {
519 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
520 PCI_MSIX_ENTRY_VECTOR_CTRL;
522 entries[i].vector = entry->irq;
523 irq_set_msi_desc(entry->irq, entry);
524 entry->masked = readl(entry->mask_base + offset);
525 msix_mask_irq(entry, 1);
526 i++;
531 * msix_capability_init - configure device's MSI-X capability
532 * @dev: pointer to the pci_dev data structure of MSI-X device function
533 * @entries: pointer to an array of struct msix_entry entries
534 * @nvec: number of @entries
536 * Setup the MSI-X capability structure of device function with a
537 * single MSI-X irq. A return of zero indicates the successful setup of
538 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
540 static int msix_capability_init(struct pci_dev *dev,
541 struct msix_entry *entries, int nvec)
543 int pos, ret;
544 u16 control;
545 void __iomem *base;
547 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
548 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
550 /* Ensure MSI-X is disabled while it is set up */
551 control &= ~PCI_MSIX_FLAGS_ENABLE;
552 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
554 /* Request & Map MSI-X table region */
555 base = msix_map_region(dev, pos, multi_msix_capable(control));
556 if (!base)
557 return -ENOMEM;
559 ret = msix_setup_entries(dev, pos, base, entries, nvec);
560 if (ret)
561 return ret;
563 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
564 if (ret)
565 goto error;
568 * Some devices require MSI-X to be enabled before we can touch the
569 * MSI-X registers. We need to mask all the vectors to prevent
570 * interrupts coming in before they're fully set up.
572 control |= PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE;
573 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
575 msix_program_entries(dev, entries);
577 /* Set MSI-X enabled bits and unmask the function */
578 pci_intx_for_msi(dev, 0);
579 dev->msix_enabled = 1;
581 control &= ~PCI_MSIX_FLAGS_MASKALL;
582 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
584 return 0;
586 error:
587 if (ret < 0) {
589 * If we had some success, report the number of irqs
590 * we succeeded in setting up.
592 struct msi_desc *entry;
593 int avail = 0;
595 list_for_each_entry(entry, &dev->msi_list, list) {
596 if (entry->irq != 0)
597 avail++;
599 if (avail != 0)
600 ret = avail;
603 free_msi_irqs(dev);
605 return ret;
609 * pci_msi_check_device - check whether MSI may be enabled on a device
610 * @dev: pointer to the pci_dev data structure of MSI device function
611 * @nvec: how many MSIs have been requested ?
612 * @type: are we checking for MSI or MSI-X ?
614 * Look at global flags, the device itself, and its parent busses
615 * to determine if MSI/-X are supported for the device. If MSI/-X is
616 * supported return 0, else return an error code.
618 static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
620 struct pci_bus *bus;
621 int ret;
623 /* MSI must be globally enabled and supported by the device */
624 if (!pci_msi_enable || !dev || dev->no_msi)
625 return -EINVAL;
628 * You can't ask to have 0 or less MSIs configured.
629 * a) it's stupid ..
630 * b) the list manipulation code assumes nvec >= 1.
632 if (nvec < 1)
633 return -ERANGE;
636 * Any bridge which does NOT route MSI transactions from its
637 * secondary bus to its primary bus must set NO_MSI flag on
638 * the secondary pci_bus.
639 * We expect only arch-specific PCI host bus controller driver
640 * or quirks for specific PCI bridges to be setting NO_MSI.
642 for (bus = dev->bus; bus; bus = bus->parent)
643 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
644 return -EINVAL;
646 ret = arch_msi_check_device(dev, nvec, type);
647 if (ret)
648 return ret;
650 if (!pci_find_capability(dev, type))
651 return -EINVAL;
653 return 0;
657 * pci_enable_msi_block - configure device's MSI capability structure
658 * @dev: device to configure
659 * @nvec: number of interrupts to configure
661 * Allocate IRQs for a device with the MSI capability.
662 * This function returns a negative errno if an error occurs. If it
663 * is unable to allocate the number of interrupts requested, it returns
664 * the number of interrupts it might be able to allocate. If it successfully
665 * allocates at least the number of interrupts requested, it returns 0 and
666 * updates the @dev's irq member to the lowest new interrupt number; the
667 * other interrupt numbers allocated to this device are consecutive.
669 int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec)
671 int status, pos, maxvec;
672 u16 msgctl;
674 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
675 if (!pos)
676 return -EINVAL;
677 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
678 maxvec = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
679 if (nvec > maxvec)
680 return maxvec;
682 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
683 if (status)
684 return status;
686 WARN_ON(!!dev->msi_enabled);
688 /* Check whether driver already requested MSI-X irqs */
689 if (dev->msix_enabled) {
690 dev_info(&dev->dev, "can't enable MSI "
691 "(MSI-X already enabled)\n");
692 return -EINVAL;
695 status = msi_capability_init(dev, nvec);
696 return status;
698 EXPORT_SYMBOL(pci_enable_msi_block);
700 void pci_msi_shutdown(struct pci_dev *dev)
702 struct msi_desc *desc;
703 u32 mask;
704 u16 ctrl;
705 unsigned pos;
707 if (!pci_msi_enable || !dev || !dev->msi_enabled)
708 return;
710 BUG_ON(list_empty(&dev->msi_list));
711 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
712 pos = desc->msi_attrib.pos;
714 msi_set_enable(dev, pos, 0);
715 pci_intx_for_msi(dev, 1);
716 dev->msi_enabled = 0;
718 /* Return the device with MSI unmasked as initial states */
719 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &ctrl);
720 mask = msi_capable_mask(ctrl);
721 /* Keep cached state to be restored */
722 __msi_mask_irq(desc, mask, ~mask);
724 /* Restore dev->irq to its default pin-assertion irq */
725 dev->irq = desc->msi_attrib.default_irq;
728 void pci_disable_msi(struct pci_dev *dev)
730 if (!pci_msi_enable || !dev || !dev->msi_enabled)
731 return;
733 pci_msi_shutdown(dev);
734 free_msi_irqs(dev);
736 EXPORT_SYMBOL(pci_disable_msi);
739 * pci_msix_table_size - return the number of device's MSI-X table entries
740 * @dev: pointer to the pci_dev data structure of MSI-X device function
742 int pci_msix_table_size(struct pci_dev *dev)
744 int pos;
745 u16 control;
747 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
748 if (!pos)
749 return 0;
751 pci_read_config_word(dev, msi_control_reg(pos), &control);
752 return multi_msix_capable(control);
756 * pci_enable_msix - configure device's MSI-X capability structure
757 * @dev: pointer to the pci_dev data structure of MSI-X device function
758 * @entries: pointer to an array of MSI-X entries
759 * @nvec: number of MSI-X irqs requested for allocation by device driver
761 * Setup the MSI-X capability structure of device function with the number
762 * of requested irqs upon its software driver call to request for
763 * MSI-X mode enabled on its hardware device function. A return of zero
764 * indicates the successful configuration of MSI-X capability structure
765 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
766 * Or a return of > 0 indicates that driver request is exceeding the number
767 * of irqs or MSI-X vectors available. Driver should use the returned value to
768 * re-send its request.
770 int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
772 int status, nr_entries;
773 int i, j;
775 if (!entries)
776 return -EINVAL;
778 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
779 if (status)
780 return status;
782 nr_entries = pci_msix_table_size(dev);
783 if (nvec > nr_entries)
784 return nr_entries;
786 /* Check for any invalid entries */
787 for (i = 0; i < nvec; i++) {
788 if (entries[i].entry >= nr_entries)
789 return -EINVAL; /* invalid entry */
790 for (j = i + 1; j < nvec; j++) {
791 if (entries[i].entry == entries[j].entry)
792 return -EINVAL; /* duplicate entry */
795 WARN_ON(!!dev->msix_enabled);
797 /* Check whether driver already requested for MSI irq */
798 if (dev->msi_enabled) {
799 dev_info(&dev->dev, "can't enable MSI-X "
800 "(MSI IRQ already assigned)\n");
801 return -EINVAL;
803 status = msix_capability_init(dev, entries, nvec);
804 return status;
806 EXPORT_SYMBOL(pci_enable_msix);
808 void pci_msix_shutdown(struct pci_dev *dev)
810 struct msi_desc *entry;
812 if (!pci_msi_enable || !dev || !dev->msix_enabled)
813 return;
815 /* Return the device with MSI-X masked as initial states */
816 list_for_each_entry(entry, &dev->msi_list, list) {
817 /* Keep cached states to be restored */
818 __msix_mask_irq(entry, 1);
821 msix_set_enable(dev, 0);
822 pci_intx_for_msi(dev, 1);
823 dev->msix_enabled = 0;
826 void pci_disable_msix(struct pci_dev *dev)
828 if (!pci_msi_enable || !dev || !dev->msix_enabled)
829 return;
831 pci_msix_shutdown(dev);
832 free_msi_irqs(dev);
834 EXPORT_SYMBOL(pci_disable_msix);
837 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
838 * @dev: pointer to the pci_dev data structure of MSI(X) device function
840 * Being called during hotplug remove, from which the device function
841 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
842 * allocated for this device function, are reclaimed to unused state,
843 * which may be used later on.
845 void msi_remove_pci_irq_vectors(struct pci_dev *dev)
847 if (!pci_msi_enable || !dev)
848 return;
850 if (dev->msi_enabled || dev->msix_enabled)
851 free_msi_irqs(dev);
854 void pci_no_msi(void)
856 pci_msi_enable = 0;
860 * pci_msi_enabled - is MSI enabled?
862 * Returns true if MSI has not been disabled by the command-line option
863 * pci=nomsi.
865 int pci_msi_enabled(void)
867 return pci_msi_enable;
869 EXPORT_SYMBOL(pci_msi_enabled);
871 void pci_msi_init_pci_dev(struct pci_dev *dev)
873 int pos;
874 INIT_LIST_HEAD(&dev->msi_list);
876 /* Disable the msi hardware to avoid screaming interrupts
877 * during boot. This is the power on reset default so
878 * usually this should be a noop.
880 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
881 if (pos)
882 msi_set_enable(dev, pos, 0);
883 msix_set_enable(dev, 0);