blob: 27a7e67ddfe4c53617eea8c506fe96683a3d668d [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
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800152static void msix_set_enable(struct pci_dev *dev, int enable)
153{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800154 u16 control;
155
Gavin Shane375b562013-04-04 16:54:30 +0000156 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
157 control &= ~PCI_MSIX_FLAGS_ENABLE;
158 if (enable)
159 control |= PCI_MSIX_FLAGS_ENABLE;
160 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800161}
162
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500163static inline __attribute_const__ u32 msi_mask(unsigned x)
164{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700165 /* Don't shift by >= width of type */
166 if (x >= 5)
167 return 0xffffffff;
168 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500169}
170
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400171static inline __attribute_const__ u32 msi_capable_mask(u16 control)
Mitch Williams988cbb12007-03-30 11:54:08 -0700172{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400173 return msi_mask((control >> 1) & 7);
174}
Mitch Williams988cbb12007-03-30 11:54:08 -0700175
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400176static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
177{
178 return msi_mask((control >> 4) & 7);
Mitch Williams988cbb12007-03-30 11:54:08 -0700179}
180
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600181/*
182 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
183 * mask all MSI interrupts by clearing the MSI enable bit does not work
184 * reliably as devices without an INTx disable bit will then generate a
185 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600186 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500187u32 default_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400189 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400191 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900192 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400193
194 mask_bits &= ~mask;
195 mask_bits |= flag;
196 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900197
198 return mask_bits;
199}
200
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500201__weak u32 arch_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
202{
203 return default_msi_mask_irq(desc, mask, flag);
204}
205
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900206static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
207{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500208 desc->masked = arch_msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400209}
210
211/*
212 * This internal function does not flush PCI writes to the device.
213 * All users must ensure that they read from the device before either
214 * assuming that the device state is up to date, or returning out of this
215 * file. This saves a few milliseconds when initialising devices with lots
216 * of MSI-X interrupts.
217 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500218u32 default_msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400219{
220 u32 mask_bits = desc->masked;
221 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900222 PCI_MSIX_ENTRY_VECTOR_CTRL;
Sheng Yang8d805282010-11-11 15:46:55 +0800223 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
224 if (flag)
225 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400226 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900227
228 return mask_bits;
229}
230
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500231__weak u32 arch_msix_mask_irq(struct msi_desc *desc, u32 flag)
232{
233 return default_msix_mask_irq(desc, flag);
234}
235
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900236static void msix_mask_irq(struct msi_desc *desc, u32 flag)
237{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500238 desc->masked = arch_msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400239}
240
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200241static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400242{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200243 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400244
245 if (desc->msi_attrib.is_msix) {
246 msix_mask_irq(desc, flag);
247 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400248 } else {
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200249 unsigned offset = data->irq - desc->dev->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400250 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400252}
253
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200254void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400255{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200256 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400257}
258
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200259void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400260{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200261 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800264void default_restore_msi_irqs(struct pci_dev *dev)
265{
266 struct msi_desc *entry;
267
268 list_for_each_entry(entry, &dev->msi_list, list) {
269 default_restore_msi_irq(dev, entry->irq);
270 }
271}
272
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200273void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700274{
Ben Hutchings30da5522010-07-23 14:56:28 +0100275 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700276
Ben Hutchings30da5522010-07-23 14:56:28 +0100277 if (entry->msi_attrib.is_msix) {
278 void __iomem *base = entry->mask_base +
279 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
280
281 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
282 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
283 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
284 } else {
285 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600286 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100287 u16 data;
288
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600289 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
290 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100291 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600292 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
293 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600294 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100295 } else {
296 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600297 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100298 }
299 msg->data = data;
300 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700301}
302
Yinghai Lu3145e942008-12-05 18:58:34 -0800303void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700304{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200305 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800306
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200307 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800308}
309
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200310void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100311{
Ben Hutchings30da5522010-07-23 14:56:28 +0100312 /* Assert that the cache is valid, assuming that
313 * valid messages are not all-zeroes. */
314 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
315 entry->msg.data));
316
317 *msg = entry->msg;
318}
319
320void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
321{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200322 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100323
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200324 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100325}
326
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200327void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800328{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100329 if (entry->dev->current_state != PCI_D0) {
330 /* Don't touch the hardware now */
331 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400332 void __iomem *base;
333 base = entry->mask_base +
334 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
335
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900336 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
337 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
338 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400339 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700340 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600341 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400342 u16 msgctl;
343
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600344 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400345 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
346 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600347 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700348
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600349 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
350 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700351 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600352 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
353 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600354 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
355 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700356 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600357 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
358 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700359 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700360 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700361 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700362}
363
Yinghai Lu3145e942008-12-05 18:58:34 -0800364void write_msi_msg(unsigned int irq, struct msi_msg *msg)
365{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200366 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800367
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200368 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800369}
370
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900371static void free_msi_irqs(struct pci_dev *dev)
372{
373 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800374 struct attribute **msi_attrs;
375 struct device_attribute *dev_attr;
376 int count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900377
378 list_for_each_entry(entry, &dev->msi_list, list) {
379 int i, nvec;
380 if (!entry->irq)
381 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200382 if (entry->nvec_used)
383 nvec = entry->nvec_used;
384 else
385 nvec = 1 << entry->msi_attrib.multiple;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900386 for (i = 0; i < nvec; i++)
387 BUG_ON(irq_has_action(entry->irq + i));
388 }
389
390 arch_teardown_msi_irqs(dev);
391
392 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
393 if (entry->msi_attrib.is_msix) {
394 if (list_is_last(&entry->list, &dev->msi_list))
395 iounmap(entry->mask_base);
396 }
Neil Horman424eb392012-01-03 10:29:54 -0500397
398 /*
399 * Its possible that we get into this path
400 * When populate_msi_sysfs fails, which means the entries
401 * were not registered with sysfs. In that case don't
402 * unregister them.
403 */
404 if (entry->kobj.parent) {
405 kobject_del(&entry->kobj);
406 kobject_put(&entry->kobj);
407 }
408
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900409 list_del(&entry->list);
410 kfree(entry);
411 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800412
413 if (dev->msi_irq_groups) {
414 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
415 msi_attrs = dev->msi_irq_groups[0]->attrs;
416 list_for_each_entry(entry, &dev->msi_list, list) {
417 dev_attr = container_of(msi_attrs[count],
418 struct device_attribute, attr);
419 kfree(dev_attr->attr.name);
420 kfree(dev_attr);
421 ++count;
422 }
423 kfree(msi_attrs);
424 kfree(dev->msi_irq_groups[0]);
425 kfree(dev->msi_irq_groups);
426 dev->msi_irq_groups = NULL;
427 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900428}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900429
Matthew Wilcox379f5322009-03-17 08:54:07 -0400430static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400432 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
433 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return NULL;
435
Matthew Wilcox379f5322009-03-17 08:54:07 -0400436 INIT_LIST_HEAD(&desc->list);
437 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Matthew Wilcox379f5322009-03-17 08:54:07 -0400439 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
David Millerba698ad2007-10-25 01:16:30 -0700442static void pci_intx_for_msi(struct pci_dev *dev, int enable)
443{
444 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
445 pci_intx(dev, enable);
446}
447
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100448static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800449{
Shaohua Li41017f02006-02-08 17:11:38 +0800450 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700451 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800452
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800453 if (!dev->msi_enabled)
454 return;
455
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200456 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800457
David Millerba698ad2007-10-25 01:16:30 -0700458 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000459 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800460 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700461
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600462 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400463 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700464 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400465 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600466 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100467}
468
469static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800470{
Shaohua Li41017f02006-02-08 17:11:38 +0800471 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700472 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800473
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700474 if (!dev->msix_enabled)
475 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700476 BUG_ON(list_empty(&dev->msi_list));
Hidetoshi Seto9cc8d542009-08-06 11:32:04 +0900477 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600478 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700479
Shaohua Li41017f02006-02-08 17:11:38 +0800480 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700481 pci_intx_for_msi(dev, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700482 control |= PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600483 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800484
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800485 arch_restore_msi_irqs(dev);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000486 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400487 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800488 }
Shaohua Li41017f02006-02-08 17:11:38 +0800489
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700490 control &= ~PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600491 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800492}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100493
494void pci_restore_msi_state(struct pci_dev *dev)
495{
496 __pci_restore_msi_state(dev);
497 __pci_restore_msix_state(dev);
498}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600499EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800500
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800501static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400502 char *buf)
503{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800504 struct pci_dev *pdev = to_pci_dev(dev);
505 struct msi_desc *entry;
506 unsigned long irq;
507 int retval;
508
509 retval = kstrtoul(attr->attr.name, 10, &irq);
510 if (retval)
511 return retval;
512
513 list_for_each_entry(entry, &pdev->msi_list, list) {
514 if (entry->irq == irq) {
515 return sprintf(buf, "%s\n",
516 entry->msi_attrib.is_msix ? "msix" : "msi");
517 }
518 }
519 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400520}
521
Neil Hormanda8d1c82011-10-06 14:08:18 -0400522static int populate_msi_sysfs(struct pci_dev *pdev)
523{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800524 struct attribute **msi_attrs;
525 struct attribute *msi_attr;
526 struct device_attribute *msi_dev_attr;
527 struct attribute_group *msi_irq_group;
528 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400529 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800530 int ret = -ENOMEM;
531 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400532 int count = 0;
533
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800534 /* Determine how many msi entries we have */
Neil Hormanda8d1c82011-10-06 14:08:18 -0400535 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800536 ++num_msi;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400537 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800538 if (!num_msi)
539 return 0;
540
541 /* Dynamically create the MSI attributes for the PCI device */
542 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
543 if (!msi_attrs)
544 return -ENOMEM;
545 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700546 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600547 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700548 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600549 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700550
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800551 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600552 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
553 entry->irq);
554 if (!msi_dev_attr->attr.name)
555 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800556 msi_dev_attr->attr.mode = S_IRUGO;
557 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800558 ++count;
559 }
560
561 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
562 if (!msi_irq_group)
563 goto error_attrs;
564 msi_irq_group->name = "msi_irqs";
565 msi_irq_group->attrs = msi_attrs;
566
567 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
568 if (!msi_irq_groups)
569 goto error_irq_group;
570 msi_irq_groups[0] = msi_irq_group;
571
572 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
573 if (ret)
574 goto error_irq_groups;
575 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400576
577 return 0;
578
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800579error_irq_groups:
580 kfree(msi_irq_groups);
581error_irq_group:
582 kfree(msi_irq_group);
583error_attrs:
584 count = 0;
585 msi_attr = msi_attrs[count];
586 while (msi_attr) {
587 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
588 kfree(msi_attr->name);
589 kfree(msi_dev_attr);
590 ++count;
591 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400592 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700593 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400594 return ret;
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/**
598 * msi_capability_init - configure device's MSI capability structure
599 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400600 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400602 * Setup the MSI capability structure of the device with the requested
603 * number of interrupts. A return value of zero indicates the successful
604 * setup of an entry with the new MSI irq. A negative return value indicates
605 * an error, and a positive return value indicates the number of interrupts
606 * which could have been allocated.
607 */
608static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000611 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 u16 control;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400613 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Gavin Shane375b562013-04-04 16:54:30 +0000615 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600616
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600617 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400619 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700620 if (!entry)
621 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700622
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900623 entry->msi_attrib.is_msix = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600624 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900625 entry->msi_attrib.entry_nr = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600626 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900627 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Gavin Shanf4651362013-04-04 16:54:32 +0000628 entry->msi_attrib.pos = dev->msi_cap;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900629
Dan Carpentere5f66ea2013-04-30 10:44:54 +0300630 if (control & PCI_MSI_FLAGS_64BIT)
631 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
632 else
633 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400634 /* All MSIs are unmasked by default, Mask them all */
635 if (entry->msi_attrib.maskbit)
636 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
637 mask = msi_capable_mask(control);
638 msi_mask_irq(entry, mask, mask);
639
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700640 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400643 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000644 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900645 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900646 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000647 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500648 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700649
Neil Hormanda8d1c82011-10-06 14:08:18 -0400650 ret = populate_msi_sysfs(dev);
651 if (ret) {
652 msi_mask_irq(entry, mask, ~mask);
653 free_msi_irqs(dev);
654 return ret;
655 }
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700658 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000659 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800660 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Michael Ellerman7fe37302007-04-18 19:39:21 +1000662 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return 0;
664}
665
Gavin Shan520fe9d2013-04-04 16:54:33 +0000666static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900667{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900668 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900669 u32 table_offset;
670 u8 bir;
671
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600672 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
673 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600674 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
675 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900676 phys_addr = pci_resource_start(dev, bir) + table_offset;
677
678 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
679}
680
Gavin Shan520fe9d2013-04-04 16:54:33 +0000681static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
682 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900683{
684 struct msi_desc *entry;
685 int i;
686
687 for (i = 0; i < nvec; i++) {
688 entry = alloc_msi_entry(dev);
689 if (!entry) {
690 if (!i)
691 iounmap(base);
692 else
693 free_msi_irqs(dev);
694 /* No enough memory. Don't try again */
695 return -ENOMEM;
696 }
697
698 entry->msi_attrib.is_msix = 1;
699 entry->msi_attrib.is_64 = 1;
700 entry->msi_attrib.entry_nr = entries[i].entry;
701 entry->msi_attrib.default_irq = dev->irq;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000702 entry->msi_attrib.pos = dev->msix_cap;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900703 entry->mask_base = base;
704
705 list_add_tail(&entry->list, &dev->msi_list);
706 }
707
708 return 0;
709}
710
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900711static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000712 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900713{
714 struct msi_desc *entry;
715 int i = 0;
716
717 list_for_each_entry(entry, &dev->msi_list, list) {
718 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
719 PCI_MSIX_ENTRY_VECTOR_CTRL;
720
721 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200722 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900723 entry->masked = readl(entry->mask_base + offset);
724 msix_mask_irq(entry, 1);
725 i++;
726 }
727}
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/**
730 * msix_capability_init - configure device's MSI-X capability
731 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700732 * @entries: pointer to an array of struct msix_entry entries
733 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600735 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700736 * single MSI-X irq. A return of zero indicates the successful setup of
737 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 **/
739static int msix_capability_init(struct pci_dev *dev,
740 struct msix_entry *entries, int nvec)
741{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000742 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900743 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 void __iomem *base;
745
Gavin Shan520fe9d2013-04-04 16:54:33 +0000746 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700747
748 /* Ensure MSI-X is disabled while it is set up */
749 control &= ~PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000750 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600753 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900754 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return -ENOMEM;
756
Gavin Shan520fe9d2013-04-04 16:54:33 +0000757 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900758 if (ret)
759 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000760
761 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900762 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100763 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000764
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700765 /*
766 * Some devices require MSI-X to be enabled before we can touch the
767 * MSI-X registers. We need to mask all the vectors to prevent
768 * interrupts coming in before they're fully set up.
769 */
770 control |= PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000771 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700772
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900773 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700774
Neil Hormanda8d1c82011-10-06 14:08:18 -0400775 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100776 if (ret)
777 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400778
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700779 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700780 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800781 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700783 control &= ~PCI_MSIX_FLAGS_MASKALL;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000784 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900787
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100788out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900789 if (ret < 0) {
790 /*
791 * If we had some success, report the number of irqs
792 * we succeeded in setting up.
793 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900794 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900795 int avail = 0;
796
797 list_for_each_entry(entry, &dev->msi_list, list) {
798 if (entry->irq != 0)
799 avail++;
800 }
801 if (avail != 0)
802 ret = avail;
803 }
804
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100805out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900806 free_msi_irqs(dev);
807
808 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000812 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400813 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000814 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100815 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400816 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700817 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000818 * to determine if MSI/-X are supported for the device. If MSI/-X is
819 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400820 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900821static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400822{
823 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000824 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400825
Brice Goglin0306ebf2006-10-05 10:24:31 +0200826 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400827 if (!pci_msi_enable || !dev || dev->no_msi)
828 return -EINVAL;
829
Michael Ellerman314e77b2007-04-05 17:19:12 +1000830 /*
831 * You can't ask to have 0 or less MSIs configured.
832 * a) it's stupid ..
833 * b) the list manipulation code assumes nvec >= 1.
834 */
835 if (nvec < 1)
836 return -ERANGE;
837
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900838 /*
839 * Any bridge which does NOT route MSI transactions from its
840 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200841 * the secondary pci_bus.
842 * We expect only arch-specific PCI host bus controller driver
843 * or quirks for specific PCI bridges to be setting NO_MSI.
844 */
Brice Goglin24334a12006-08-31 01:55:07 -0400845 for (bus = dev->bus; bus; bus = bus->parent)
846 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
847 return -EINVAL;
848
Michael Ellermanc9953a72007-04-05 17:19:08 +1000849 ret = arch_msi_check_device(dev, nvec, type);
850 if (ret)
851 return ret;
852
Brice Goglin24334a12006-08-31 01:55:07 -0400853 return 0;
854}
855
856/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100857 * pci_msi_vec_count - Return the number of MSI vectors a device can send
858 * @dev: device to report about
859 *
860 * This function returns the number of MSI vectors a device requested via
861 * Multiple Message Capable register. It returns a negative errno if the
862 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
863 * and returns a power of two, up to a maximum of 2^5 (32), according to the
864 * MSI specification.
865 **/
866int pci_msi_vec_count(struct pci_dev *dev)
867{
868 int ret;
869 u16 msgctl;
870
871 if (!dev->msi_cap)
872 return -EINVAL;
873
874 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
875 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
876
877 return ret;
878}
879EXPORT_SYMBOL(pci_msi_vec_count);
880
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400881void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400883 struct msi_desc *desc;
884 u32 mask;
885 u16 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100887 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700888 return;
889
Matthew Wilcox110828c2009-06-16 06:31:45 -0600890 BUG_ON(list_empty(&dev->msi_list));
891 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600892
Gavin Shane375b562013-04-04 16:54:30 +0000893 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700894 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800895 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700896
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900897 /* Return the device with MSI unmasked as initial states */
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600898 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400899 mask = msi_capable_mask(ctrl);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900900 /* Keep cached state to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500901 arch_msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100902
903 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400904 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700905}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400906
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900907void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700908{
Yinghai Lud52877c2008-04-23 14:58:09 -0700909 if (!pci_msi_enable || !dev || !dev->msi_enabled)
910 return;
911
912 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900913 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100915EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100918 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100919 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100920 * This function returns the number of device's MSI-X table entries and
921 * therefore the number of MSI-X vectors device is capable of sending.
922 * It returns a negative errno if the device is not capable of sending MSI-X
923 * interrupts.
924 **/
925int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100926{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100927 u16 control;
928
Gavin Shan520fe9d2013-04-04 16:54:33 +0000929 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100930 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100931
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600932 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600933 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100934}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100935EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100936
937/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 * pci_enable_msix - configure device's MSI-X capability structure
939 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700940 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700941 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 *
943 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700944 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 * MSI-X mode enabled on its hardware device function. A return of zero
946 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700947 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300949 * of irqs or MSI-X vectors available. Driver should use the returned value to
950 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900952int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100954 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700955 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Yijing Wang869a1612013-10-10 20:58:11 +0800957 if (!entries || !dev->msix_cap || dev->current_state != PCI_D0)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900958 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Michael Ellermanc9953a72007-04-05 17:19:08 +1000960 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
961 if (status)
962 return status;
963
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100964 nr_entries = pci_msix_vec_count(dev);
965 if (nr_entries < 0)
966 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300968 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 /* Check for any invalid entries */
971 for (i = 0; i < nvec; i++) {
972 if (entries[i].entry >= nr_entries)
973 return -EINVAL; /* invalid entry */
974 for (j = i + 1; j < nvec; j++) {
975 if (entries[i].entry == entries[j].entry)
976 return -EINVAL; /* duplicate entry */
977 }
978 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700979 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700980
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700981 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900982 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600983 dev_info(&dev->dev, "can't enable MSI-X "
984 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return -EINVAL;
986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return status;
989}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100990EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900992void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100993{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900994 struct msi_desc *entry;
995
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100996 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700997 return;
998
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900999 /* Return the device with MSI-X masked as initial states */
1000 list_for_each_entry(entry, &dev->msi_list, list) {
1001 /* Keep cached states to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -05001002 arch_msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001003 }
1004
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001005 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -07001006 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001007 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001008}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001009
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001010void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001011{
1012 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1013 return;
1014
1015 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001016 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001018EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001021 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * @dev: pointer to the pci_dev data structure of MSI(X) device function
1023 *
Steven Coleeaae4b32005-05-03 18:38:30 -06001024 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001025 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * allocated for this device function, are reclaimed to unused state,
1027 * which may be used later on.
1028 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001029void msi_remove_pci_irq_vectors(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (!pci_msi_enable || !dev)
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001032 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001034 if (dev->msi_enabled || dev->msix_enabled)
1035 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001038void pci_no_msi(void)
1039{
1040 pci_msi_enable = 0;
1041}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001042
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001043/**
1044 * pci_msi_enabled - is MSI enabled?
1045 *
1046 * Returns true if MSI has not been disabled by the command-line option
1047 * pci=nomsi.
1048 **/
1049int pci_msi_enabled(void)
1050{
1051 return pci_msi_enable;
1052}
1053EXPORT_SYMBOL(pci_msi_enabled);
1054
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001055void pci_msi_init_pci_dev(struct pci_dev *dev)
1056{
1057 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001058
1059 /* Disable the msi hardware to avoid screaming interrupts
1060 * during boot. This is the power on reset default so
1061 * usually this should be a noop.
1062 */
Gavin Shane375b562013-04-04 16:54:30 +00001063 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1064 if (dev->msi_cap)
1065 msi_set_enable(dev, 0);
1066
1067 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1068 if (dev->msix_cap)
1069 msix_set_enable(dev, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001070}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001071
1072/**
1073 * pci_enable_msi_range - configure device's MSI capability structure
1074 * @dev: device to configure
1075 * @minvec: minimal number of interrupts to configure
1076 * @maxvec: maximum number of interrupts to configure
1077 *
1078 * This function tries to allocate a maximum possible number of interrupts in a
1079 * range between @minvec and @maxvec. It returns a negative errno if an error
1080 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1081 * and updates the @dev's irq member to the lowest new interrupt number;
1082 * the other interrupt numbers allocated to this device are consecutive.
1083 **/
1084int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1085{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001086 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001087 int rc;
1088
Alexander Gordeev034cd972014-04-14 15:28:35 +02001089 if (dev->current_state != PCI_D0)
1090 return -EINVAL;
1091
1092 WARN_ON(!!dev->msi_enabled);
1093
1094 /* Check whether driver already requested MSI-X irqs */
1095 if (dev->msix_enabled) {
1096 dev_info(&dev->dev,
1097 "can't enable MSI (MSI-X already enabled)\n");
1098 return -EINVAL;
1099 }
1100
Alexander Gordeev302a2522013-12-30 08:28:16 +01001101 if (maxvec < minvec)
1102 return -ERANGE;
1103
Alexander Gordeev034cd972014-04-14 15:28:35 +02001104 nvec = pci_msi_vec_count(dev);
1105 if (nvec < 0)
1106 return nvec;
1107 else if (nvec < minvec)
1108 return -EINVAL;
1109 else if (nvec > maxvec)
1110 nvec = maxvec;
1111
Alexander Gordeev302a2522013-12-30 08:28:16 +01001112 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001113 rc = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
1114 if (rc < 0) {
1115 return rc;
1116 } else if (rc > 0) {
1117 if (rc < minvec)
1118 return -ENOSPC;
1119 nvec = rc;
1120 }
1121 } while (rc);
1122
1123 do {
1124 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001125 if (rc < 0) {
1126 return rc;
1127 } else if (rc > 0) {
1128 if (rc < minvec)
1129 return -ENOSPC;
1130 nvec = rc;
1131 }
1132 } while (rc);
1133
1134 return nvec;
1135}
1136EXPORT_SYMBOL(pci_enable_msi_range);
1137
1138/**
1139 * pci_enable_msix_range - configure device's MSI-X capability structure
1140 * @dev: pointer to the pci_dev data structure of MSI-X device function
1141 * @entries: pointer to an array of MSI-X entries
1142 * @minvec: minimum number of MSI-X irqs requested
1143 * @maxvec: maximum number of MSI-X irqs requested
1144 *
1145 * Setup the MSI-X capability structure of device function with a maximum
1146 * possible number of interrupts in the range between @minvec and @maxvec
1147 * upon its software driver call to request for MSI-X mode enabled on its
1148 * hardware device function. It returns a negative errno if an error occurs.
1149 * If it succeeds, it returns the actual number of interrupts allocated and
1150 * indicates the successful configuration of MSI-X capability structure
1151 * with new allocated MSI-X interrupts.
1152 **/
1153int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1154 int minvec, int maxvec)
1155{
1156 int nvec = maxvec;
1157 int rc;
1158
1159 if (maxvec < minvec)
1160 return -ERANGE;
1161
1162 do {
1163 rc = pci_enable_msix(dev, entries, nvec);
1164 if (rc < 0) {
1165 return rc;
1166 } else if (rc > 0) {
1167 if (rc < minvec)
1168 return -ENOSPC;
1169 nvec = rc;
1170 }
1171 } while (rc);
1172
1173 return nvec;
1174}
1175EXPORT_SYMBOL(pci_enable_msix_range);