blob: ba84f17d8062b181ac9b2608a132f398ba9ef723 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: msi.c
3 * Purpose: PCI Message Signaled Interrupt (MSI)
4 *
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
Eric W. Biederman1ce03372006-10-04 02:16:41 -07009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/irq.h>
12#include <linux/interrupt.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/pci.h>
16#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070017#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070018#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090019#include <linux/errno.h>
20#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int pci_msi_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Bjorn Helgaas527eee22013-04-17 17:44:48 -060027#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
28
29
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010030/* Arch hooks */
31
Thomas Petazzoni4287d822013-08-09 22:27:06 +020032int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
33{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020034 struct msi_chip *chip = dev->bus->msi;
35 int err;
36
37 if (!chip || !chip->setup_irq)
38 return -EINVAL;
39
40 err = chip->setup_irq(chip, dev, desc);
41 if (err < 0)
42 return err;
43
44 irq_set_chip_data(desc->irq, chip);
45
46 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020047}
48
49void __weak arch_teardown_msi_irq(unsigned int irq)
50{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020051 struct msi_chip *chip = irq_get_chip_data(irq);
52
53 if (!chip || !chip->teardown_irq)
54 return;
55
56 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +020057}
58
59int __weak arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010060{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020061 struct msi_chip *chip = dev->bus->msi;
62
63 if (!chip || !chip->check_device)
64 return 0;
65
66 return chip->check_device(chip, dev, nvec, type);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010067}
68
Thomas Petazzoni4287d822013-08-09 22:27:06 +020069int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010070{
71 struct msi_desc *entry;
72 int ret;
73
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040074 /*
75 * If an architecture wants to support multiple MSI, it needs to
76 * override arch_setup_msi_irqs()
77 */
78 if (type == PCI_CAP_ID_MSI && nvec > 1)
79 return 1;
80
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010081 list_for_each_entry(entry, &dev->msi_list, list) {
82 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110083 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010084 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110085 if (ret > 0)
86 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010087 }
88
89 return 0;
90}
91
Thomas Petazzoni4287d822013-08-09 22:27:06 +020092/*
93 * We have a default implementation available as a separate non-weak
94 * function, as it is used by the Xen x86 PCI code
95 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -040096void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010097{
98 struct msi_desc *entry;
99
100 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400101 int i, nvec;
102 if (entry->irq == 0)
103 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200104 if (entry->nvec_used)
105 nvec = entry->nvec_used;
106 else
107 nvec = 1 << entry->msi_attrib.multiple;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400108 for (i = 0; i < nvec; i++)
109 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100110 }
111}
112
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200113void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
114{
115 return default_teardown_msi_irqs(dev);
116}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500117
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800118static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500119{
120 struct msi_desc *entry;
121
122 entry = NULL;
123 if (dev->msix_enabled) {
124 list_for_each_entry(entry, &dev->msi_list, list) {
125 if (irq == entry->irq)
126 break;
127 }
128 } else if (dev->msi_enabled) {
129 entry = irq_get_msi_desc(irq);
130 }
131
132 if (entry)
133 write_msi_msg(irq, &entry->msg);
134}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200135
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800136void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200137{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800138 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200139}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500140
Gavin Shane375b562013-04-04 16:54:30 +0000141static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800142{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800143 u16 control;
144
Gavin Shane375b562013-04-04 16:54:30 +0000145 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600146 control &= ~PCI_MSI_FLAGS_ENABLE;
147 if (enable)
148 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000149 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900150}
151
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800152static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800153{
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800154 u16 ctrl;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800155
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800156 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
157 ctrl &= ~clear;
158 ctrl |= set;
159 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800160}
161
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500162static inline __attribute_const__ u32 msi_mask(unsigned x)
163{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700164 /* Don't shift by >= width of type */
165 if (x >= 5)
166 return 0xffffffff;
167 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500168}
169
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400170static inline __attribute_const__ u32 msi_capable_mask(u16 control)
Mitch Williams988cbb12007-03-30 11:54:08 -0700171{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400172 return msi_mask((control >> 1) & 7);
173}
Mitch Williams988cbb12007-03-30 11:54:08 -0700174
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400175static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
176{
177 return msi_mask((control >> 4) & 7);
Mitch Williams988cbb12007-03-30 11:54:08 -0700178}
179
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600180/*
181 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
182 * mask all MSI interrupts by clearing the MSI enable bit does not work
183 * reliably as devices without an INTx disable bit will then generate a
184 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600185 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500186u32 default_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400188 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400190 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900191 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400192
193 mask_bits &= ~mask;
194 mask_bits |= flag;
195 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900196
197 return mask_bits;
198}
199
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500200__weak u32 arch_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
201{
202 return default_msi_mask_irq(desc, mask, flag);
203}
204
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900205static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
206{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500207 desc->masked = arch_msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400208}
209
210/*
211 * This internal function does not flush PCI writes to the device.
212 * All users must ensure that they read from the device before either
213 * assuming that the device state is up to date, or returning out of this
214 * file. This saves a few milliseconds when initialising devices with lots
215 * of MSI-X interrupts.
216 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500217u32 default_msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400218{
219 u32 mask_bits = desc->masked;
220 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900221 PCI_MSIX_ENTRY_VECTOR_CTRL;
Sheng Yang8d805282010-11-11 15:46:55 +0800222 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
223 if (flag)
224 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400225 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900226
227 return mask_bits;
228}
229
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500230__weak u32 arch_msix_mask_irq(struct msi_desc *desc, u32 flag)
231{
232 return default_msix_mask_irq(desc, flag);
233}
234
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900235static void msix_mask_irq(struct msi_desc *desc, u32 flag)
236{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500237 desc->masked = arch_msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400238}
239
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200240static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400241{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200242 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400243
244 if (desc->msi_attrib.is_msix) {
245 msix_mask_irq(desc, flag);
246 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400247 } else {
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200248 unsigned offset = data->irq - desc->dev->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400249 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400251}
252
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200253void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400254{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200255 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400256}
257
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200258void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400259{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200260 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800263void default_restore_msi_irqs(struct pci_dev *dev)
264{
265 struct msi_desc *entry;
266
267 list_for_each_entry(entry, &dev->msi_list, list) {
268 default_restore_msi_irq(dev, entry->irq);
269 }
270}
271
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200272void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700273{
Ben Hutchings30da5522010-07-23 14:56:28 +0100274 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700275
Ben Hutchings30da5522010-07-23 14:56:28 +0100276 if (entry->msi_attrib.is_msix) {
277 void __iomem *base = entry->mask_base +
278 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
279
280 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
281 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
282 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
283 } else {
284 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600285 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100286 u16 data;
287
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600288 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
289 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100290 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600291 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
292 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600293 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100294 } else {
295 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600296 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100297 }
298 msg->data = data;
299 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700300}
301
Yinghai Lu3145e942008-12-05 18:58:34 -0800302void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700303{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200304 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800305
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200306 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800307}
308
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200309void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100310{
Ben Hutchings30da5522010-07-23 14:56:28 +0100311 /* Assert that the cache is valid, assuming that
312 * valid messages are not all-zeroes. */
313 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
314 entry->msg.data));
315
316 *msg = entry->msg;
317}
318
319void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
320{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200321 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100322
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200323 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100324}
325
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200326void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800327{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100328 if (entry->dev->current_state != PCI_D0) {
329 /* Don't touch the hardware now */
330 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400331 void __iomem *base;
332 base = entry->mask_base +
333 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
334
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900335 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
336 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
337 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400338 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700339 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600340 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400341 u16 msgctl;
342
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600343 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400344 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
345 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600346 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700347
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600348 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
349 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700350 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600351 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
352 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600353 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
354 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700355 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600356 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
357 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700358 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700359 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700360 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700361}
362
Yinghai Lu3145e942008-12-05 18:58:34 -0800363void write_msi_msg(unsigned int irq, struct msi_msg *msg)
364{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200365 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800366
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200367 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800368}
369
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900370static void free_msi_irqs(struct pci_dev *dev)
371{
372 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800373 struct attribute **msi_attrs;
374 struct device_attribute *dev_attr;
375 int count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900376
377 list_for_each_entry(entry, &dev->msi_list, list) {
378 int i, nvec;
379 if (!entry->irq)
380 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200381 if (entry->nvec_used)
382 nvec = entry->nvec_used;
383 else
384 nvec = 1 << entry->msi_attrib.multiple;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900385 for (i = 0; i < nvec; i++)
386 BUG_ON(irq_has_action(entry->irq + i));
387 }
388
389 arch_teardown_msi_irqs(dev);
390
391 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
392 if (entry->msi_attrib.is_msix) {
393 if (list_is_last(&entry->list, &dev->msi_list))
394 iounmap(entry->mask_base);
395 }
Neil Horman424eb392012-01-03 10:29:54 -0500396
397 /*
398 * Its possible that we get into this path
399 * When populate_msi_sysfs fails, which means the entries
400 * were not registered with sysfs. In that case don't
401 * unregister them.
402 */
403 if (entry->kobj.parent) {
404 kobject_del(&entry->kobj);
405 kobject_put(&entry->kobj);
406 }
407
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900408 list_del(&entry->list);
409 kfree(entry);
410 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800411
412 if (dev->msi_irq_groups) {
413 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
414 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700415 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800416 dev_attr = container_of(msi_attrs[count],
417 struct device_attribute, attr);
418 kfree(dev_attr->attr.name);
419 kfree(dev_attr);
420 ++count;
421 }
422 kfree(msi_attrs);
423 kfree(dev->msi_irq_groups[0]);
424 kfree(dev->msi_irq_groups);
425 dev->msi_irq_groups = NULL;
426 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900427}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900428
Matthew Wilcox379f5322009-03-17 08:54:07 -0400429static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400431 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
432 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return NULL;
434
Matthew Wilcox379f5322009-03-17 08:54:07 -0400435 INIT_LIST_HEAD(&desc->list);
436 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Matthew Wilcox379f5322009-03-17 08:54:07 -0400438 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
David Millerba698ad2007-10-25 01:16:30 -0700441static void pci_intx_for_msi(struct pci_dev *dev, int enable)
442{
443 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
444 pci_intx(dev, enable);
445}
446
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100447static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800448{
Shaohua Li41017f02006-02-08 17:11:38 +0800449 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700450 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800451
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800452 if (!dev->msi_enabled)
453 return;
454
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200455 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800456
David Millerba698ad2007-10-25 01:16:30 -0700457 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000458 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800459 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700460
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600461 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400462 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700463 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400464 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600465 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100466}
467
468static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800469{
Shaohua Li41017f02006-02-08 17:11:38 +0800470 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800471
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700472 if (!dev->msix_enabled)
473 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700474 BUG_ON(list_empty(&dev->msi_list));
Hidetoshi Seto9cc8d542009-08-06 11:32:04 +0900475 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700476
Shaohua Li41017f02006-02-08 17:11:38 +0800477 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700478 pci_intx_for_msi(dev, 0);
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800479 msix_clear_and_set_ctrl(dev, 0,
480 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800481
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800482 arch_restore_msi_irqs(dev);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000483 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400484 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800485 }
Shaohua Li41017f02006-02-08 17:11:38 +0800486
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800487 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800488}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100489
490void pci_restore_msi_state(struct pci_dev *dev)
491{
492 __pci_restore_msi_state(dev);
493 __pci_restore_msix_state(dev);
494}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600495EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800496
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400498 char *buf)
499{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800500 struct pci_dev *pdev = to_pci_dev(dev);
501 struct msi_desc *entry;
502 unsigned long irq;
503 int retval;
504
505 retval = kstrtoul(attr->attr.name, 10, &irq);
506 if (retval)
507 return retval;
508
509 list_for_each_entry(entry, &pdev->msi_list, list) {
510 if (entry->irq == irq) {
511 return sprintf(buf, "%s\n",
512 entry->msi_attrib.is_msix ? "msix" : "msi");
513 }
514 }
515 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400516}
517
Neil Hormanda8d1c82011-10-06 14:08:18 -0400518static int populate_msi_sysfs(struct pci_dev *pdev)
519{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800520 struct attribute **msi_attrs;
521 struct attribute *msi_attr;
522 struct device_attribute *msi_dev_attr;
523 struct attribute_group *msi_irq_group;
524 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400525 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800526 int ret = -ENOMEM;
527 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400528 int count = 0;
529
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800530 /* Determine how many msi entries we have */
Neil Hormanda8d1c82011-10-06 14:08:18 -0400531 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800532 ++num_msi;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400533 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800534 if (!num_msi)
535 return 0;
536
537 /* Dynamically create the MSI attributes for the PCI device */
538 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
539 if (!msi_attrs)
540 return -ENOMEM;
541 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700542 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600543 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700544 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600545 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700546
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800547 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600548 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
549 entry->irq);
550 if (!msi_dev_attr->attr.name)
551 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800552 msi_dev_attr->attr.mode = S_IRUGO;
553 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800554 ++count;
555 }
556
557 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
558 if (!msi_irq_group)
559 goto error_attrs;
560 msi_irq_group->name = "msi_irqs";
561 msi_irq_group->attrs = msi_attrs;
562
563 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
564 if (!msi_irq_groups)
565 goto error_irq_group;
566 msi_irq_groups[0] = msi_irq_group;
567
568 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
569 if (ret)
570 goto error_irq_groups;
571 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400572
573 return 0;
574
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800575error_irq_groups:
576 kfree(msi_irq_groups);
577error_irq_group:
578 kfree(msi_irq_group);
579error_attrs:
580 count = 0;
581 msi_attr = msi_attrs[count];
582 while (msi_attr) {
583 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
584 kfree(msi_attr->name);
585 kfree(msi_dev_attr);
586 ++count;
587 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400588 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700589 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400590 return ret;
591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/**
594 * msi_capability_init - configure device's MSI capability structure
595 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400596 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400598 * Setup the MSI capability structure of the device with the requested
599 * number of interrupts. A return value of zero indicates the successful
600 * setup of an entry with the new MSI irq. A negative return value indicates
601 * an error, and a positive return value indicates the number of interrupts
602 * which could have been allocated.
603 */
604static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000607 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 u16 control;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400609 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Gavin Shane375b562013-04-04 16:54:30 +0000611 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600612
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600613 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400615 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700616 if (!entry)
617 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700618
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900619 entry->msi_attrib.is_msix = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600620 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900621 entry->msi_attrib.entry_nr = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600622 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900623 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Gavin Shanf4651362013-04-04 16:54:32 +0000624 entry->msi_attrib.pos = dev->msi_cap;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900625
Dan Carpentere5f66ea2013-04-30 10:44:54 +0300626 if (control & PCI_MSI_FLAGS_64BIT)
627 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
628 else
629 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400630 /* All MSIs are unmasked by default, Mask them all */
631 if (entry->msi_attrib.maskbit)
632 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
633 mask = msi_capable_mask(control);
634 msi_mask_irq(entry, mask, mask);
635
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700636 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400639 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000640 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900641 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900642 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000643 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500644 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700645
Neil Hormanda8d1c82011-10-06 14:08:18 -0400646 ret = populate_msi_sysfs(dev);
647 if (ret) {
648 msi_mask_irq(entry, mask, ~mask);
649 free_msi_irqs(dev);
650 return ret;
651 }
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700654 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000655 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800656 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Michael Ellerman7fe37302007-04-18 19:39:21 +1000658 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
660}
661
Gavin Shan520fe9d2013-04-04 16:54:33 +0000662static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900663{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900664 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900665 u32 table_offset;
666 u8 bir;
667
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600668 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
669 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600670 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
671 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900672 phys_addr = pci_resource_start(dev, bir) + table_offset;
673
674 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
675}
676
Gavin Shan520fe9d2013-04-04 16:54:33 +0000677static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
678 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900679{
680 struct msi_desc *entry;
681 int i;
682
683 for (i = 0; i < nvec; i++) {
684 entry = alloc_msi_entry(dev);
685 if (!entry) {
686 if (!i)
687 iounmap(base);
688 else
689 free_msi_irqs(dev);
690 /* No enough memory. Don't try again */
691 return -ENOMEM;
692 }
693
694 entry->msi_attrib.is_msix = 1;
695 entry->msi_attrib.is_64 = 1;
696 entry->msi_attrib.entry_nr = entries[i].entry;
697 entry->msi_attrib.default_irq = dev->irq;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000698 entry->msi_attrib.pos = dev->msix_cap;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900699 entry->mask_base = base;
700
701 list_add_tail(&entry->list, &dev->msi_list);
702 }
703
704 return 0;
705}
706
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900707static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000708 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900709{
710 struct msi_desc *entry;
711 int i = 0;
712
713 list_for_each_entry(entry, &dev->msi_list, list) {
714 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
715 PCI_MSIX_ENTRY_VECTOR_CTRL;
716
717 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200718 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900719 entry->masked = readl(entry->mask_base + offset);
720 msix_mask_irq(entry, 1);
721 i++;
722 }
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725/**
726 * msix_capability_init - configure device's MSI-X capability
727 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700728 * @entries: pointer to an array of struct msix_entry entries
729 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600731 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700732 * single MSI-X irq. A return of zero indicates the successful setup of
733 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 **/
735static int msix_capability_init(struct pci_dev *dev,
736 struct msix_entry *entries, int nvec)
737{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000738 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900739 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 void __iomem *base;
741
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700742 /* Ensure MSI-X is disabled while it is set up */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800743 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700744
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800745 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600747 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900748 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return -ENOMEM;
750
Gavin Shan520fe9d2013-04-04 16:54:33 +0000751 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900752 if (ret)
753 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000754
755 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900756 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100757 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000758
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700759 /*
760 * Some devices require MSI-X to be enabled before we can touch the
761 * MSI-X registers. We need to mask all the vectors to prevent
762 * interrupts coming in before they're fully set up.
763 */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800764 msix_clear_and_set_ctrl(dev, 0,
765 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700766
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900767 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700768
Neil Hormanda8d1c82011-10-06 14:08:18 -0400769 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100770 if (ret)
771 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400772
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700773 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700774 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800775 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800777 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900780
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100781out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900782 if (ret < 0) {
783 /*
784 * If we had some success, report the number of irqs
785 * we succeeded in setting up.
786 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900787 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900788 int avail = 0;
789
790 list_for_each_entry(entry, &dev->msi_list, list) {
791 if (entry->irq != 0)
792 avail++;
793 }
794 if (avail != 0)
795 ret = avail;
796 }
797
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100798out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900799 free_msi_irqs(dev);
800
801 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000805 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400806 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000807 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100808 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400809 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700810 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000811 * to determine if MSI/-X are supported for the device. If MSI/-X is
812 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400813 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900814static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400815{
816 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000817 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400818
Brice Goglin0306ebf2006-10-05 10:24:31 +0200819 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400820 if (!pci_msi_enable || !dev || dev->no_msi)
821 return -EINVAL;
822
Michael Ellerman314e77b2007-04-05 17:19:12 +1000823 /*
824 * You can't ask to have 0 or less MSIs configured.
825 * a) it's stupid ..
826 * b) the list manipulation code assumes nvec >= 1.
827 */
828 if (nvec < 1)
829 return -ERANGE;
830
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900831 /*
832 * Any bridge which does NOT route MSI transactions from its
833 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200834 * the secondary pci_bus.
835 * We expect only arch-specific PCI host bus controller driver
836 * or quirks for specific PCI bridges to be setting NO_MSI.
837 */
Brice Goglin24334a12006-08-31 01:55:07 -0400838 for (bus = dev->bus; bus; bus = bus->parent)
839 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
840 return -EINVAL;
841
Michael Ellermanc9953a72007-04-05 17:19:08 +1000842 ret = arch_msi_check_device(dev, nvec, type);
843 if (ret)
844 return ret;
845
Brice Goglin24334a12006-08-31 01:55:07 -0400846 return 0;
847}
848
849/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100850 * pci_msi_vec_count - Return the number of MSI vectors a device can send
851 * @dev: device to report about
852 *
853 * This function returns the number of MSI vectors a device requested via
854 * Multiple Message Capable register. It returns a negative errno if the
855 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
856 * and returns a power of two, up to a maximum of 2^5 (32), according to the
857 * MSI specification.
858 **/
859int pci_msi_vec_count(struct pci_dev *dev)
860{
861 int ret;
862 u16 msgctl;
863
864 if (!dev->msi_cap)
865 return -EINVAL;
866
867 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
868 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
869
870 return ret;
871}
872EXPORT_SYMBOL(pci_msi_vec_count);
873
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400874void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400876 struct msi_desc *desc;
877 u32 mask;
878 u16 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100880 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700881 return;
882
Matthew Wilcox110828c2009-06-16 06:31:45 -0600883 BUG_ON(list_empty(&dev->msi_list));
884 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600885
Gavin Shane375b562013-04-04 16:54:30 +0000886 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700887 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800888 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700889
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900890 /* Return the device with MSI unmasked as initial states */
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600891 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400892 mask = msi_capable_mask(ctrl);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900893 /* Keep cached state to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500894 arch_msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100895
896 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400897 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700898}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400899
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900900void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700901{
Yinghai Lud52877c2008-04-23 14:58:09 -0700902 if (!pci_msi_enable || !dev || !dev->msi_enabled)
903 return;
904
905 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900906 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100908EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100911 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100912 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100913 * This function returns the number of device's MSI-X table entries and
914 * therefore the number of MSI-X vectors device is capable of sending.
915 * It returns a negative errno if the device is not capable of sending MSI-X
916 * interrupts.
917 **/
918int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100919{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100920 u16 control;
921
Gavin Shan520fe9d2013-04-04 16:54:33 +0000922 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100923 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100924
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600925 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600926 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100927}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100928EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100929
930/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * pci_enable_msix - configure device's MSI-X capability structure
932 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700933 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700934 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *
936 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700937 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 * MSI-X mode enabled on its hardware device function. A return of zero
939 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700940 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300942 * of irqs or MSI-X vectors available. Driver should use the returned value to
943 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900945int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100947 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700948 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Yijing Wang869a1612013-10-10 20:58:11 +0800950 if (!entries || !dev->msix_cap || dev->current_state != PCI_D0)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900951 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Michael Ellermanc9953a72007-04-05 17:19:08 +1000953 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
954 if (status)
955 return status;
956
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100957 nr_entries = pci_msix_vec_count(dev);
958 if (nr_entries < 0)
959 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300961 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /* Check for any invalid entries */
964 for (i = 0; i < nvec; i++) {
965 if (entries[i].entry >= nr_entries)
966 return -EINVAL; /* invalid entry */
967 for (j = i + 1; j < nvec; j++) {
968 if (entries[i].entry == entries[j].entry)
969 return -EINVAL; /* duplicate entry */
970 }
971 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700972 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700973
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700974 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900975 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400976 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return -EINVAL;
978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return status;
981}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100982EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900984void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100985{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900986 struct msi_desc *entry;
987
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100988 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700989 return;
990
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900991 /* Return the device with MSI-X masked as initial states */
992 list_for_each_entry(entry, &dev->msi_list, list) {
993 /* Keep cached states to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500994 arch_msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900995 }
996
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800997 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700998 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800999 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001000}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001001
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001002void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001003{
1004 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1005 return;
1006
1007 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001008 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001010EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001013 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 * @dev: pointer to the pci_dev data structure of MSI(X) device function
1015 *
Steven Coleeaae4b32005-05-03 18:38:30 -06001016 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001017 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 * allocated for this device function, are reclaimed to unused state,
1019 * which may be used later on.
1020 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001021void msi_remove_pci_irq_vectors(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (!pci_msi_enable || !dev)
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001024 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001026 if (dev->msi_enabled || dev->msix_enabled)
1027 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001030void pci_no_msi(void)
1031{
1032 pci_msi_enable = 0;
1033}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001034
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001035/**
1036 * pci_msi_enabled - is MSI enabled?
1037 *
1038 * Returns true if MSI has not been disabled by the command-line option
1039 * pci=nomsi.
1040 **/
1041int pci_msi_enabled(void)
1042{
1043 return pci_msi_enable;
1044}
1045EXPORT_SYMBOL(pci_msi_enabled);
1046
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001047void pci_msi_init_pci_dev(struct pci_dev *dev)
1048{
1049 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001050
1051 /* Disable the msi hardware to avoid screaming interrupts
1052 * during boot. This is the power on reset default so
1053 * usually this should be a noop.
1054 */
Gavin Shane375b562013-04-04 16:54:30 +00001055 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1056 if (dev->msi_cap)
1057 msi_set_enable(dev, 0);
1058
1059 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1060 if (dev->msix_cap)
Yijing Wang66f0d0c2014-06-19 16:29:53 +08001061 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001062}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001063
1064/**
1065 * pci_enable_msi_range - configure device's MSI capability structure
1066 * @dev: device to configure
1067 * @minvec: minimal number of interrupts to configure
1068 * @maxvec: maximum number of interrupts to configure
1069 *
1070 * This function tries to allocate a maximum possible number of interrupts in a
1071 * range between @minvec and @maxvec. It returns a negative errno if an error
1072 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1073 * and updates the @dev's irq member to the lowest new interrupt number;
1074 * the other interrupt numbers allocated to this device are consecutive.
1075 **/
1076int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1077{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001078 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001079 int rc;
1080
Alexander Gordeev034cd972014-04-14 15:28:35 +02001081 if (dev->current_state != PCI_D0)
1082 return -EINVAL;
1083
1084 WARN_ON(!!dev->msi_enabled);
1085
1086 /* Check whether driver already requested MSI-X irqs */
1087 if (dev->msix_enabled) {
1088 dev_info(&dev->dev,
1089 "can't enable MSI (MSI-X already enabled)\n");
1090 return -EINVAL;
1091 }
1092
Alexander Gordeev302a2522013-12-30 08:28:16 +01001093 if (maxvec < minvec)
1094 return -ERANGE;
1095
Alexander Gordeev034cd972014-04-14 15:28:35 +02001096 nvec = pci_msi_vec_count(dev);
1097 if (nvec < 0)
1098 return nvec;
1099 else if (nvec < minvec)
1100 return -EINVAL;
1101 else if (nvec > maxvec)
1102 nvec = maxvec;
1103
Alexander Gordeev302a2522013-12-30 08:28:16 +01001104 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001105 rc = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
1106 if (rc < 0) {
1107 return rc;
1108 } else if (rc > 0) {
1109 if (rc < minvec)
1110 return -ENOSPC;
1111 nvec = rc;
1112 }
1113 } while (rc);
1114
1115 do {
1116 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001117 if (rc < 0) {
1118 return rc;
1119 } else if (rc > 0) {
1120 if (rc < minvec)
1121 return -ENOSPC;
1122 nvec = rc;
1123 }
1124 } while (rc);
1125
1126 return nvec;
1127}
1128EXPORT_SYMBOL(pci_enable_msi_range);
1129
1130/**
1131 * pci_enable_msix_range - configure device's MSI-X capability structure
1132 * @dev: pointer to the pci_dev data structure of MSI-X device function
1133 * @entries: pointer to an array of MSI-X entries
1134 * @minvec: minimum number of MSI-X irqs requested
1135 * @maxvec: maximum number of MSI-X irqs requested
1136 *
1137 * Setup the MSI-X capability structure of device function with a maximum
1138 * possible number of interrupts in the range between @minvec and @maxvec
1139 * upon its software driver call to request for MSI-X mode enabled on its
1140 * hardware device function. It returns a negative errno if an error occurs.
1141 * If it succeeds, it returns the actual number of interrupts allocated and
1142 * indicates the successful configuration of MSI-X capability structure
1143 * with new allocated MSI-X interrupts.
1144 **/
1145int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1146 int minvec, int maxvec)
1147{
1148 int nvec = maxvec;
1149 int rc;
1150
1151 if (maxvec < minvec)
1152 return -ERANGE;
1153
1154 do {
1155 rc = pci_enable_msix(dev, entries, nvec);
1156 if (rc < 0) {
1157 return rc;
1158 } else if (rc > 0) {
1159 if (rc < minvec)
1160 return -ENOSPC;
1161 nvec = rc;
1162 }
1163 } while (rc);
1164
1165 return nvec;
1166}
1167EXPORT_SYMBOL(pci_enable_msix_range);