blob: dceea56f73424982f38903a5343fc686ba36c015 [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>
13#include <linux/init.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/errno.h>
21#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include "pci.h"
24#include "msi.h"
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int pci_msi_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010028/* Arch hooks */
29
Michael Ellerman11df1f02009-01-19 11:31:00 +110030#ifndef arch_msi_check_device
31int arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010032{
33 return 0;
34}
Michael Ellerman11df1f02009-01-19 11:31:00 +110035#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010036
Michael Ellerman11df1f02009-01-19 11:31:00 +110037#ifndef arch_setup_msi_irqs
38int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010039{
40 struct msi_desc *entry;
41 int ret;
42
43 list_for_each_entry(entry, &dev->msi_list, list) {
44 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110045 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010046 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110047 if (ret > 0)
48 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010049 }
50
51 return 0;
52}
Michael Ellerman11df1f02009-01-19 11:31:00 +110053#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010054
Michael Ellerman11df1f02009-01-19 11:31:00 +110055#ifndef arch_teardown_msi_irqs
56void arch_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010057{
58 struct msi_desc *entry;
59
60 list_for_each_entry(entry, &dev->msi_list, list) {
61 if (entry->irq != 0)
62 arch_teardown_msi_irq(entry->irq);
63 }
64}
Michael Ellerman11df1f02009-01-19 11:31:00 +110065#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010066
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +090067static void __msi_set_enable(struct pci_dev *dev, int pos, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080068{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080069 u16 control;
70
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080071 if (pos) {
72 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
73 control &= ~PCI_MSI_FLAGS_ENABLE;
74 if (enable)
75 control |= PCI_MSI_FLAGS_ENABLE;
76 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
77 }
78}
79
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +090080static void msi_set_enable(struct pci_dev *dev, int enable)
81{
82 __msi_set_enable(dev, pci_find_capability(dev, PCI_CAP_ID_MSI), enable);
83}
84
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080085static void msix_set_enable(struct pci_dev *dev, int enable)
86{
87 int pos;
88 u16 control;
89
90 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
91 if (pos) {
92 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
93 control &= ~PCI_MSIX_FLAGS_ENABLE;
94 if (enable)
95 control |= PCI_MSIX_FLAGS_ENABLE;
96 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
97 }
98}
99
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500100static inline __attribute_const__ u32 msi_mask(unsigned x)
101{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700102 /* Don't shift by >= width of type */
103 if (x >= 5)
104 return 0xffffffff;
105 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500106}
107
Yinghai Lu3145e942008-12-05 18:58:34 -0800108static void msix_flush_writes(struct irq_desc *desc)
Mitch Williams988cbb12007-03-30 11:54:08 -0700109{
110 struct msi_desc *entry;
111
Yinghai Lu3145e942008-12-05 18:58:34 -0800112 entry = get_irq_desc_msi(desc);
Mitch Williams988cbb12007-03-30 11:54:08 -0700113 BUG_ON(!entry || !entry->dev);
114 switch (entry->msi_attrib.type) {
115 case PCI_CAP_ID_MSI:
116 /* nothing to do */
117 break;
118 case PCI_CAP_ID_MSIX:
119 {
120 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
121 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
122 readl(entry->mask_base + offset);
123 break;
124 }
125 default:
126 BUG();
127 break;
128 }
129}
130
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600131/*
132 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
133 * mask all MSI interrupts by clearing the MSI enable bit does not work
134 * reliably as devices without an INTx disable bit will then generate a
135 * level IRQ which will never be cleared.
136 *
137 * Returns 1 if it succeeded in masking the interrupt and 0 if the device
138 * doesn't support MSI masking.
139 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800140static int msi_set_mask_bits(struct irq_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct msi_desc *entry;
143
Yinghai Lu3145e942008-12-05 18:58:34 -0800144 entry = get_irq_desc_msi(desc);
Eric W. Biederman277bc332006-10-04 02:16:57 -0700145 BUG_ON(!entry || !entry->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 switch (entry->msi_attrib.type) {
147 case PCI_CAP_ID_MSI:
Eric W. Biederman277bc332006-10-04 02:16:57 -0700148 if (entry->msi_attrib.maskbit) {
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900149 int pos;
150 u32 mask_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Eric W. Biederman277bc332006-10-04 02:16:57 -0700152 pos = (long)entry->mask_base;
153 pci_read_config_dword(entry->dev, pos, &mask_bits);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700154 mask_bits &= ~(mask);
155 mask_bits |= flag & mask;
Eric W. Biederman277bc332006-10-04 02:16:57 -0700156 pci_write_config_dword(entry->dev, pos, mask_bits);
Eric W. Biederman58e05432007-03-05 00:30:11 -0800157 } else {
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600158 return 0;
Eric W. Biederman277bc332006-10-04 02:16:57 -0700159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 case PCI_CAP_ID_MSIX:
162 {
163 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
164 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
165 writel(flag, entry->mask_base + offset);
Eric W. Biederman348e3fd2007-04-03 01:41:49 -0600166 readl(entry->mask_base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 break;
168 }
169 default:
Eric W. Biederman277bc332006-10-04 02:16:57 -0700170 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700173 entry->msi_attrib.masked = !!flag;
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600174 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Yinghai Lu3145e942008-12-05 18:58:34 -0800177void read_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700178{
Yinghai Lu3145e942008-12-05 18:58:34 -0800179 struct msi_desc *entry = get_irq_desc_msi(desc);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700180 switch(entry->msi_attrib.type) {
181 case PCI_CAP_ID_MSI:
182 {
183 struct pci_dev *dev = entry->dev;
184 int pos = entry->msi_attrib.pos;
185 u16 data;
186
187 pci_read_config_dword(dev, msi_lower_address_reg(pos),
188 &msg->address_lo);
189 if (entry->msi_attrib.is_64) {
190 pci_read_config_dword(dev, msi_upper_address_reg(pos),
191 &msg->address_hi);
192 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
193 } else {
194 msg->address_hi = 0;
Roland Dreiercbf5d9e2007-10-03 11:15:11 -0700195 pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700196 }
197 msg->data = data;
198 break;
199 }
200 case PCI_CAP_ID_MSIX:
201 {
202 void __iomem *base;
203 base = entry->mask_base +
204 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
205
206 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
207 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
208 msg->data = readl(base + PCI_MSIX_ENTRY_DATA_OFFSET);
209 break;
210 }
211 default:
212 BUG();
213 }
214}
215
Yinghai Lu3145e942008-12-05 18:58:34 -0800216void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700217{
Yinghai Lu3145e942008-12-05 18:58:34 -0800218 struct irq_desc *desc = irq_to_desc(irq);
219
220 read_msi_msg_desc(desc, msg);
221}
222
223void write_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg)
224{
225 struct msi_desc *entry = get_irq_desc_msi(desc);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700226 switch (entry->msi_attrib.type) {
227 case PCI_CAP_ID_MSI:
228 {
229 struct pci_dev *dev = entry->dev;
230 int pos = entry->msi_attrib.pos;
231
232 pci_write_config_dword(dev, msi_lower_address_reg(pos),
233 msg->address_lo);
234 if (entry->msi_attrib.is_64) {
235 pci_write_config_dword(dev, msi_upper_address_reg(pos),
236 msg->address_hi);
237 pci_write_config_word(dev, msi_data_reg(pos, 1),
238 msg->data);
239 } else {
240 pci_write_config_word(dev, msi_data_reg(pos, 0),
241 msg->data);
242 }
243 break;
244 }
245 case PCI_CAP_ID_MSIX:
246 {
247 void __iomem *base;
248 base = entry->mask_base +
249 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
250
251 writel(msg->address_lo,
252 base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
253 writel(msg->address_hi,
254 base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
255 writel(msg->data, base + PCI_MSIX_ENTRY_DATA_OFFSET);
256 break;
257 }
258 default:
259 BUG();
260 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700261 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700262}
263
Yinghai Lu3145e942008-12-05 18:58:34 -0800264void write_msi_msg(unsigned int irq, struct msi_msg *msg)
265{
266 struct irq_desc *desc = irq_to_desc(irq);
267
268 write_msi_msg_desc(desc, msg);
269}
270
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700271void mask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Yinghai Lu3145e942008-12-05 18:58:34 -0800273 struct irq_desc *desc = irq_to_desc(irq);
274
275 msi_set_mask_bits(desc, 1, 1);
276 msix_flush_writes(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700279void unmask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Yinghai Lu3145e942008-12-05 18:58:34 -0800281 struct irq_desc *desc = irq_to_desc(irq);
282
283 msi_set_mask_bits(desc, 1, 0);
284 msix_flush_writes(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Michael Ellerman032de8e2007-04-18 19:39:22 +1000287static int msi_free_irqs(struct pci_dev* dev);
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static struct msi_desc* alloc_msi_entry(void)
290{
291 struct msi_desc *entry;
292
Michael Ellerman3e916c02007-03-22 21:51:36 +1100293 entry = kzalloc(sizeof(struct msi_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (!entry)
295 return NULL;
296
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000297 INIT_LIST_HEAD(&entry->list);
298 entry->irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 entry->dev = NULL;
300
301 return entry;
302}
303
David Millerba698ad2007-10-25 01:16:30 -0700304static void pci_intx_for_msi(struct pci_dev *dev, int enable)
305{
306 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
307 pci_intx(dev, enable);
308}
309
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100310static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800311{
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700312 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800313 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700314 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800315
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800316 if (!dev->msi_enabled)
317 return;
318
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700319 entry = get_irq_msi(dev->irq);
320 pos = entry->msi_attrib.pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800321
David Millerba698ad2007-10-25 01:16:30 -0700322 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800323 msi_set_enable(dev, 0);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700324 write_msi_msg(dev->irq, &entry->msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800325 if (entry->msi_attrib.maskbit) {
326 struct irq_desc *desc = irq_to_desc(dev->irq);
327 msi_set_mask_bits(desc, entry->msi_attrib.maskbits_mask,
Yinghai Lu8e149e02008-04-23 14:56:30 -0700328 entry->msi_attrib.masked);
Yinghai Lu3145e942008-12-05 18:58:34 -0800329 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700330
331 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700332 control &= ~PCI_MSI_FLAGS_QSIZE;
333 control |= PCI_MSI_FLAGS_ENABLE;
Shaohua Li41017f02006-02-08 17:11:38 +0800334 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100335}
336
337static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800338{
Shaohua Li41017f02006-02-08 17:11:38 +0800339 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800340 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700341 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800342
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700343 if (!dev->msix_enabled)
344 return;
345
Shaohua Li41017f02006-02-08 17:11:38 +0800346 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700347 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800348 msix_set_enable(dev, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800349
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000350 list_for_each_entry(entry, &dev->msi_list, list) {
Yinghai Lu3145e942008-12-05 18:58:34 -0800351 struct irq_desc *desc = irq_to_desc(entry->irq);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000352 write_msi_msg(entry->irq, &entry->msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800353 msi_set_mask_bits(desc, 1, entry->msi_attrib.masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800354 }
Shaohua Li41017f02006-02-08 17:11:38 +0800355
Michael Ellerman314e77b2007-04-05 17:19:12 +1000356 BUG_ON(list_empty(&dev->msi_list));
357 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000358 pos = entry->msi_attrib.pos;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700359 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
360 control &= ~PCI_MSIX_FLAGS_MASKALL;
361 control |= PCI_MSIX_FLAGS_ENABLE;
362 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800363}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100364
365void pci_restore_msi_state(struct pci_dev *dev)
366{
367 __pci_restore_msi_state(dev);
368 __pci_restore_msix_state(dev);
369}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600370EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/**
373 * msi_capability_init - configure device's MSI capability structure
374 * @dev: pointer to the pci_dev data structure of MSI device function
375 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600376 * Setup the MSI capability structure of device function with a single
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700377 * MSI irq, regardless of device function is capable of handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * multiple messages. A return of zero indicates the successful setup
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700379 * of an entry zero with the new MSI irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 **/
381static int msi_capability_init(struct pci_dev *dev)
382{
383 struct msi_desc *entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000384 int pos, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 u16 control;
386
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800387 msi_set_enable(dev, 0); /* Ensure msi is disabled as I set it up */
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
390 pci_read_config_word(dev, msi_control_reg(pos), &control);
391 /* MSI Entry Initialization */
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700392 entry = alloc_msi_entry();
393 if (!entry)
394 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 entry->msi_attrib.type = PCI_CAP_ID_MSI;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700397 entry->msi_attrib.is_64 = is_64bit_address(control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 entry->msi_attrib.entry_nr = 0;
399 entry->msi_attrib.maskbit = is_mask_bit_support(control);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700400 entry->msi_attrib.masked = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700401 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700402 entry->msi_attrib.pos = pos;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700403 entry->dev = dev;
404 if (entry->msi_attrib.maskbit) {
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900405 unsigned int base, maskbits, temp;
406
407 base = msi_mask_bits_reg(pos, entry->msi_attrib.is_64);
408 entry->mask_base = (void __iomem *)(long)base;
409
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700410 /* All MSIs are unmasked by default, Mask them all */
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900411 pci_read_config_dword(dev, base, &maskbits);
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500412 temp = msi_mask((control & PCI_MSI_FLAGS_QMASK) >> 1);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700413 maskbits |= temp;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900414 pci_write_config_dword(dev, base, maskbits);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700415 entry->msi_attrib.maskbits_mask = temp;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700416 }
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700417 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* Configure MSI capability structure */
Michael Ellerman9c831332007-04-18 19:39:21 +1000420 ret = arch_setup_msi_irqs(dev, 1, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000421 if (ret) {
Michael Ellerman032de8e2007-04-18 19:39:22 +1000422 msi_free_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000423 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500424 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700427 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800428 msi_set_enable(dev, 1);
429 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Michael Ellerman7fe37302007-04-18 19:39:21 +1000431 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return 0;
433}
434
435/**
436 * msix_capability_init - configure device's MSI-X capability
437 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700438 * @entries: pointer to an array of struct msix_entry entries
439 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600441 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700442 * single MSI-X irq. A return of zero indicates the successful setup of
443 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 **/
445static int msix_capability_init(struct pci_dev *dev,
446 struct msix_entry *entries, int nvec)
447{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000448 struct msi_desc *entry;
Michael Ellerman9c831332007-04-18 19:39:21 +1000449 int pos, i, j, nr_entries, ret;
Grant Grundlera0454b42006-02-16 23:58:29 -0800450 unsigned long phys_addr;
451 u32 table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 u16 control;
453 u8 bir;
454 void __iomem *base;
455
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800456 msix_set_enable(dev, 0);/* Ensure msix is disabled as I set it up */
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
459 /* Request & Map MSI-X table region */
460 pci_read_config_word(dev, msi_control_reg(pos), &control);
461 nr_entries = multi_msix_capable(control);
Grant Grundlera0454b42006-02-16 23:58:29 -0800462
463 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
Grant Grundlera0454b42006-02-16 23:58:29 -0800465 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
466 phys_addr = pci_resource_start (dev, bir) + table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 base = ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
468 if (base == NULL)
469 return -ENOMEM;
470
471 /* MSI-X Table Initialization */
472 for (i = 0; i < nvec; i++) {
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700473 entry = alloc_msi_entry();
474 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 j = entries[i].entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 entry->msi_attrib.type = PCI_CAP_ID_MSIX;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700479 entry->msi_attrib.is_64 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 entry->msi_attrib.entry_nr = j;
481 entry->msi_attrib.maskbit = 1;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700482 entry->msi_attrib.masked = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700483 entry->msi_attrib.default_irq = dev->irq;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700484 entry->msi_attrib.pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 entry->dev = dev;
486 entry->mask_base = base;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700487
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700488 list_add_tail(&entry->list, &dev->msi_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000490
491 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100492 if (ret < 0) {
493 /* If we had some success report the number of irqs
494 * we succeeded in setting up. */
Michael Ellerman9c831332007-04-18 19:39:21 +1000495 int avail = 0;
496 list_for_each_entry(entry, &dev->msi_list, list) {
497 if (entry->irq != 0) {
498 avail++;
Michael Ellerman9c831332007-04-18 19:39:21 +1000499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000501
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100502 if (avail != 0)
503 ret = avail;
504 }
Michael Ellerman032de8e2007-04-18 19:39:22 +1000505
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100506 if (ret) {
507 msi_free_irqs(dev);
508 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000510
511 i = 0;
512 list_for_each_entry(entry, &dev->msi_list, list) {
513 entries[i].vector = entry->irq;
514 set_irq_msi(entry->irq, entry);
515 i++;
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* Set MSI-X enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700518 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800519 msix_set_enable(dev, 1);
520 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 return 0;
523}
524
525/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000526 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400527 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000528 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100529 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400530 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200531 * Look at global flags, the device itself, and its parent busses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000532 * to determine if MSI/-X are supported for the device. If MSI/-X is
533 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400534 **/
Michael Ellermanc9953a72007-04-05 17:19:08 +1000535static int pci_msi_check_device(struct pci_dev* dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400536{
537 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000538 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400539
Brice Goglin0306ebf2006-10-05 10:24:31 +0200540 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400541 if (!pci_msi_enable || !dev || dev->no_msi)
542 return -EINVAL;
543
Michael Ellerman314e77b2007-04-05 17:19:12 +1000544 /*
545 * You can't ask to have 0 or less MSIs configured.
546 * a) it's stupid ..
547 * b) the list manipulation code assumes nvec >= 1.
548 */
549 if (nvec < 1)
550 return -ERANGE;
551
Brice Goglin0306ebf2006-10-05 10:24:31 +0200552 /* Any bridge which does NOT route MSI transactions from it's
553 * secondary bus to it's primary bus must set NO_MSI flag on
554 * the secondary pci_bus.
555 * We expect only arch-specific PCI host bus controller driver
556 * or quirks for specific PCI bridges to be setting NO_MSI.
557 */
Brice Goglin24334a12006-08-31 01:55:07 -0400558 for (bus = dev->bus; bus; bus = bus->parent)
559 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
560 return -EINVAL;
561
Michael Ellermanc9953a72007-04-05 17:19:08 +1000562 ret = arch_msi_check_device(dev, nvec, type);
563 if (ret)
564 return ret;
565
Michael Ellermanb1e23032007-03-22 21:51:39 +1100566 if (!pci_find_capability(dev, type))
567 return -EINVAL;
568
Brice Goglin24334a12006-08-31 01:55:07 -0400569 return 0;
570}
571
572/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 * pci_enable_msi - configure device's MSI capability structure
574 * @dev: pointer to the pci_dev data structure of MSI device function
575 *
576 * Setup the MSI capability structure of device function with
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700577 * a single MSI irq upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * MSI mode enabled on its hardware device function. A return of zero
579 * indicates the successful setup of an entry zero with the new MSI
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700580 * irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 **/
582int pci_enable_msi(struct pci_dev* dev)
583{
Michael Ellermanb1e23032007-03-22 21:51:39 +1100584 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Michael Ellermanc9953a72007-04-05 17:19:08 +1000586 status = pci_msi_check_device(dev, 1, PCI_CAP_ID_MSI);
587 if (status)
588 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700590 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700592 /* Check whether driver already requested for MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800593 if (dev->msix_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600594 dev_info(&dev->dev, "can't enable MSI "
595 "(MSI-X already enabled)\n");
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800596 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 status = msi_capability_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return status;
600}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100601EXPORT_SYMBOL(pci_enable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Yinghai Lud52877c2008-04-23 14:58:09 -0700603void pci_msi_shutdown(struct pci_dev* dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 struct msi_desc *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100607 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700608 return;
609
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800610 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700611 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800612 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700613
Michael Ellerman314e77b2007-04-05 17:19:12 +1000614 BUG_ON(list_empty(&dev->msi_list));
615 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700616 /* Return the the pci reset with msi irqs unmasked */
617 if (entry->msi_attrib.maskbit) {
618 u32 mask = entry->msi_attrib.maskbits_mask;
Yinghai Lu3145e942008-12-05 18:58:34 -0800619 struct irq_desc *desc = irq_to_desc(dev->irq);
620 msi_set_mask_bits(desc, mask, ~mask);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700621 }
Yinghai Lud52877c2008-04-23 14:58:09 -0700622 if (!entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return;
Michael Ellermane387b9e2007-03-22 21:51:27 +1100624
625 /* Restore dev->irq to its default pin-assertion irq */
Yinghai Lud52877c2008-04-23 14:58:09 -0700626 dev->irq = entry->msi_attrib.default_irq;
627}
628void pci_disable_msi(struct pci_dev* dev)
629{
630 struct msi_desc *entry;
631
632 if (!pci_msi_enable || !dev || !dev->msi_enabled)
633 return;
634
635 pci_msi_shutdown(dev);
636
637 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
638 if (!entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI)
639 return;
640
641 msi_free_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100643EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Michael Ellerman032de8e2007-04-18 19:39:22 +1000645static int msi_free_irqs(struct pci_dev* dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Michael Ellerman032de8e2007-04-18 19:39:22 +1000647 struct msi_desc *entry, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
David Millerb3b7cc72007-05-11 13:26:44 -0700649 list_for_each_entry(entry, &dev->msi_list, list) {
650 if (entry->irq)
651 BUG_ON(irq_has_action(entry->irq));
652 }
Michael Ellerman7ede9c12007-03-22 21:51:34 +1100653
Michael Ellerman032de8e2007-04-18 19:39:22 +1000654 arch_teardown_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Michael Ellerman032de8e2007-04-18 19:39:22 +1000656 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
657 if (entry->msi_attrib.type == PCI_CAP_ID_MSIX) {
Michael Ellerman032de8e2007-04-18 19:39:22 +1000658 writel(1, entry->mask_base + entry->msi_attrib.entry_nr
659 * PCI_MSIX_ENTRY_SIZE
660 + PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
Eric W. Biederman78b76112007-06-01 00:46:33 -0700661
662 if (list_is_last(&entry->list, &dev->msi_list))
663 iounmap(entry->mask_base);
Michael Ellerman032de8e2007-04-18 19:39:22 +1000664 }
665 list_del(&entry->list);
666 kfree(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668
669 return 0;
670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/**
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100673 * pci_msix_table_size - return the number of device's MSI-X table entries
674 * @dev: pointer to the pci_dev data structure of MSI-X device function
675 */
676int pci_msix_table_size(struct pci_dev *dev)
677{
678 int pos;
679 u16 control;
680
681 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
682 if (!pos)
683 return 0;
684
685 pci_read_config_word(dev, msi_control_reg(pos), &control);
686 return multi_msix_capable(control);
687}
688
689/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 * pci_enable_msix - configure device's MSI-X capability structure
691 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700692 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700693 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 *
695 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700696 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * MSI-X mode enabled on its hardware device function. A return of zero
698 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700699 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 * Or a return of > 0 indicates that driver request is exceeding the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700701 * of irqs available. Driver should use the returned value to re-send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * its request.
703 **/
704int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
705{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100706 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700707 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Michael Ellermanc9953a72007-04-05 17:19:08 +1000709 if (!entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return -EINVAL;
711
Michael Ellermanc9953a72007-04-05 17:19:08 +1000712 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
713 if (status)
714 return status;
715
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100716 nr_entries = pci_msix_table_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (nvec > nr_entries)
718 return -EINVAL;
719
720 /* Check for any invalid entries */
721 for (i = 0; i < nvec; i++) {
722 if (entries[i].entry >= nr_entries)
723 return -EINVAL; /* invalid entry */
724 for (j = i + 1; j < nvec; j++) {
725 if (entries[i].entry == entries[j].entry)
726 return -EINVAL; /* duplicate entry */
727 }
728 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700729 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700730
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700731 /* Check whether driver already requested for MSI irq */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800732 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600733 dev_info(&dev->dev, "can't enable MSI-X "
734 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return -EINVAL;
736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return status;
739}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100740EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100742static void msix_free_all_irqs(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Michael Ellerman032de8e2007-04-18 19:39:22 +1000744 msi_free_irqs(dev);
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100745}
746
Yinghai Lud52877c2008-04-23 14:58:09 -0700747void pci_msix_shutdown(struct pci_dev* dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100748{
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100749 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700750 return;
751
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800752 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700753 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800754 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700755}
756void pci_disable_msix(struct pci_dev* dev)
757{
758 if (!pci_msi_enable || !dev || !dev->msix_enabled)
759 return;
760
761 pci_msix_shutdown(dev);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700762
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100763 msix_free_all_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100765EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700768 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 * @dev: pointer to the pci_dev data structure of MSI(X) device function
770 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600771 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700772 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * allocated for this device function, are reclaimed to unused state,
774 * which may be used later on.
775 **/
776void msi_remove_pci_irq_vectors(struct pci_dev* dev)
777{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (!pci_msi_enable || !dev)
779 return;
780
Michael Ellerman032de8e2007-04-18 19:39:22 +1000781 if (dev->msi_enabled)
782 msi_free_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100784 if (dev->msix_enabled)
785 msix_free_all_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700788void pci_no_msi(void)
789{
790 pci_msi_enable = 0;
791}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000792
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700793/**
794 * pci_msi_enabled - is MSI enabled?
795 *
796 * Returns true if MSI has not been disabled by the command-line option
797 * pci=nomsi.
798 **/
799int pci_msi_enabled(void)
800{
801 return pci_msi_enable;
802}
803EXPORT_SYMBOL(pci_msi_enabled);
804
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000805void pci_msi_init_pci_dev(struct pci_dev *dev)
806{
807 INIT_LIST_HEAD(&dev->msi_list);
808}