blob: b945470bef18ddcf1af12efbe04a25b7e1fab17f [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>
15#include <linux/smp_lock.h>
16#include <linux/pci.h>
17#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070018#include <linux/msi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/errno.h>
21#include <asm/io.h>
22#include <asm/smp.h>
23
24#include "pci.h"
25#include "msi.h"
26
27static DEFINE_SPINLOCK(msi_lock);
28static struct msi_desc* msi_desc[NR_IRQS] = { [0 ... NR_IRQS-1] = NULL };
Christoph Lametere18b8902006-12-06 20:33:20 -080029static struct kmem_cache* msi_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static int pci_msi_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static int msi_cache_init(void)
34{
Pekka J Enberg57181782006-09-27 01:51:03 -070035 msi_cachep = kmem_cache_create("msi_cache", sizeof(struct msi_desc),
36 0, SLAB_HWCACHE_ALIGN, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 if (!msi_cachep)
38 return -ENOMEM;
39
40 return 0;
41}
42
Eric W. Biederman1ce03372006-10-04 02:16:41 -070043static void msi_set_mask_bit(unsigned int irq, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 struct msi_desc *entry;
46
Eric W. Biederman1ce03372006-10-04 02:16:41 -070047 entry = msi_desc[irq];
Eric W. Biederman277bc332006-10-04 02:16:57 -070048 BUG_ON(!entry || !entry->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 switch (entry->msi_attrib.type) {
50 case PCI_CAP_ID_MSI:
Eric W. Biederman277bc332006-10-04 02:16:57 -070051 if (entry->msi_attrib.maskbit) {
Satoru Takeuchic54c1872007-01-18 13:50:05 +090052 int pos;
53 u32 mask_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Eric W. Biederman277bc332006-10-04 02:16:57 -070055 pos = (long)entry->mask_base;
56 pci_read_config_dword(entry->dev, pos, &mask_bits);
57 mask_bits &= ~(1);
58 mask_bits |= flag;
59 pci_write_config_dword(entry->dev, pos, mask_bits);
60 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 case PCI_CAP_ID_MSIX:
63 {
64 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
65 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
66 writel(flag, entry->mask_base + offset);
67 break;
68 }
69 default:
Eric W. Biederman277bc332006-10-04 02:16:57 -070070 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 break;
72 }
73}
74
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070075void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -070076{
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070077 struct msi_desc *entry = get_irq_data(irq);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -070078 switch(entry->msi_attrib.type) {
79 case PCI_CAP_ID_MSI:
80 {
81 struct pci_dev *dev = entry->dev;
82 int pos = entry->msi_attrib.pos;
83 u16 data;
84
85 pci_read_config_dword(dev, msi_lower_address_reg(pos),
86 &msg->address_lo);
87 if (entry->msi_attrib.is_64) {
88 pci_read_config_dword(dev, msi_upper_address_reg(pos),
89 &msg->address_hi);
90 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
91 } else {
92 msg->address_hi = 0;
93 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
94 }
95 msg->data = data;
96 break;
97 }
98 case PCI_CAP_ID_MSIX:
99 {
100 void __iomem *base;
101 base = entry->mask_base +
102 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
103
104 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
105 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
106 msg->data = readl(base + PCI_MSIX_ENTRY_DATA_OFFSET);
107 break;
108 }
109 default:
110 BUG();
111 }
112}
113
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700114void write_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700115{
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700116 struct msi_desc *entry = get_irq_data(irq);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700117 switch (entry->msi_attrib.type) {
118 case PCI_CAP_ID_MSI:
119 {
120 struct pci_dev *dev = entry->dev;
121 int pos = entry->msi_attrib.pos;
122
123 pci_write_config_dword(dev, msi_lower_address_reg(pos),
124 msg->address_lo);
125 if (entry->msi_attrib.is_64) {
126 pci_write_config_dword(dev, msi_upper_address_reg(pos),
127 msg->address_hi);
128 pci_write_config_word(dev, msi_data_reg(pos, 1),
129 msg->data);
130 } else {
131 pci_write_config_word(dev, msi_data_reg(pos, 0),
132 msg->data);
133 }
134 break;
135 }
136 case PCI_CAP_ID_MSIX:
137 {
138 void __iomem *base;
139 base = entry->mask_base +
140 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
141
142 writel(msg->address_lo,
143 base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
144 writel(msg->address_hi,
145 base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
146 writel(msg->data, base + PCI_MSIX_ENTRY_DATA_OFFSET);
147 break;
148 }
149 default:
150 BUG();
151 }
152}
153
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700154void mask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700156 msi_set_mask_bit(irq, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700159void unmask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700161 msi_set_mask_bit(irq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700164static int msi_free_irq(struct pci_dev* dev, int irq);
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static int msi_init(void)
167{
168 static int status = -ENOMEM;
169
170 if (!status)
171 return status;
172
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700173 status = msi_cache_init();
174 if (status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 pci_msi_enable = 0;
176 printk(KERN_WARNING "PCI: MSI cache init failed\n");
177 return status;
178 }
Mark Maulefd58e552006-04-10 21:17:48 -0500179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return status;
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static struct msi_desc* alloc_msi_entry(void)
184{
185 struct msi_desc *entry;
186
Pekka J Enberg57181782006-09-27 01:51:03 -0700187 entry = kmem_cache_zalloc(msi_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!entry)
189 return NULL;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 entry->link.tail = entry->link.head = 0; /* single message */
192 entry->dev = NULL;
193
194 return entry;
195}
196
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700197static void attach_msi_entry(struct msi_desc *entry, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 unsigned long flags;
200
201 spin_lock_irqsave(&msi_lock, flags);
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700202 msi_desc[irq] = entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 spin_unlock_irqrestore(&msi_lock, flags);
204}
205
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700206static int create_msi_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700208 struct msi_desc *entry;
209 int irq;
Ingo Molnarf6bc2662006-01-26 01:42:11 +0100210
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700211 entry = alloc_msi_entry();
212 if (!entry)
213 return -ENOMEM;
214
215 irq = create_irq();
216 if (irq < 0) {
217 kmem_cache_free(msi_cachep, entry);
218 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700220
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700221 set_irq_data(irq, entry);
222
223 return irq;
224}
225
226static void destroy_msi_irq(unsigned int irq)
227{
228 struct msi_desc *entry;
229
230 entry = get_irq_data(irq);
231 set_irq_chip(irq, NULL);
232 set_irq_data(irq, NULL);
233 destroy_irq(irq);
234 kmem_cache_free(msi_cachep, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237static void enable_msi_mode(struct pci_dev *dev, int pos, int type)
238{
239 u16 control;
240
241 pci_read_config_word(dev, msi_control_reg(pos), &control);
242 if (type == PCI_CAP_ID_MSI) {
243 /* Set enabled bits to single MSI & enable MSI_enable bit */
244 msi_enable(control, 1);
245 pci_write_config_word(dev, msi_control_reg(pos), control);
Shaohua Li99dc8042006-05-26 10:58:27 +0800246 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 } else {
248 msix_enable(control);
249 pci_write_config_word(dev, msi_control_reg(pos), control);
Shaohua Li99dc8042006-05-26 10:58:27 +0800250 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
Jeff Garzik1769b462006-12-07 17:56:06 -0500252
253 pci_intx(dev, 0); /* disable intx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Kristen Accardi4602b882005-08-16 15:15:58 -0700256void disable_msi_mode(struct pci_dev *dev, int pos, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 u16 control;
259
260 pci_read_config_word(dev, msi_control_reg(pos), &control);
261 if (type == PCI_CAP_ID_MSI) {
262 /* Set enabled bits to single MSI & enable MSI_enable bit */
263 msi_disable(control);
264 pci_write_config_word(dev, msi_control_reg(pos), control);
Shaohua Li99dc8042006-05-26 10:58:27 +0800265 dev->msi_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 } else {
267 msix_disable(control);
268 pci_write_config_word(dev, msi_control_reg(pos), control);
Shaohua Li99dc8042006-05-26 10:58:27 +0800269 dev->msix_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
Jeff Garzik1769b462006-12-07 17:56:06 -0500271
272 pci_intx(dev, 1); /* enable intx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Shaohua Li41017f02006-02-08 17:11:38 +0800275#ifdef CONFIG_PM
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100276static int __pci_save_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800277{
278 int pos, i = 0;
279 u16 control;
280 struct pci_cap_saved_state *save_state;
281 u32 *cap;
282
283 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
284 if (pos <= 0 || dev->no_msi)
285 return 0;
286
287 pci_read_config_word(dev, msi_control_reg(pos), &control);
288 if (!(control & PCI_MSI_FLAGS_ENABLE))
289 return 0;
290
291 save_state = kzalloc(sizeof(struct pci_cap_saved_state) + sizeof(u32) * 5,
292 GFP_KERNEL);
293 if (!save_state) {
294 printk(KERN_ERR "Out of memory in pci_save_msi_state\n");
295 return -ENOMEM;
296 }
297 cap = &save_state->data[0];
298
299 pci_read_config_dword(dev, pos, &cap[i++]);
300 control = cap[0] >> 16;
301 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO, &cap[i++]);
302 if (control & PCI_MSI_FLAGS_64BIT) {
303 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI, &cap[i++]);
304 pci_read_config_dword(dev, pos + PCI_MSI_DATA_64, &cap[i++]);
305 } else
306 pci_read_config_dword(dev, pos + PCI_MSI_DATA_32, &cap[i++]);
307 if (control & PCI_MSI_FLAGS_MASKBIT)
308 pci_read_config_dword(dev, pos + PCI_MSI_MASK_BIT, &cap[i++]);
Shaohua Li41017f02006-02-08 17:11:38 +0800309 save_state->cap_nr = PCI_CAP_ID_MSI;
310 pci_add_saved_cap(dev, save_state);
311 return 0;
312}
313
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100314static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800315{
316 int i = 0, pos;
317 u16 control;
318 struct pci_cap_saved_state *save_state;
319 u32 *cap;
320
321 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_MSI);
322 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
323 if (!save_state || pos <= 0)
324 return;
325 cap = &save_state->data[0];
326
327 control = cap[i++] >> 16;
328 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO, cap[i++]);
329 if (control & PCI_MSI_FLAGS_64BIT) {
330 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI, cap[i++]);
331 pci_write_config_dword(dev, pos + PCI_MSI_DATA_64, cap[i++]);
332 } else
333 pci_write_config_dword(dev, pos + PCI_MSI_DATA_32, cap[i++]);
334 if (control & PCI_MSI_FLAGS_MASKBIT)
335 pci_write_config_dword(dev, pos + PCI_MSI_MASK_BIT, cap[i++]);
336 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
337 enable_msi_mode(dev, pos, PCI_CAP_ID_MSI);
338 pci_remove_saved_cap(save_state);
339 kfree(save_state);
340}
341
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100342static int __pci_save_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800343{
344 int pos;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700345 int irq, head, tail = 0;
Shaohua Li41017f02006-02-08 17:11:38 +0800346 u16 control;
347 struct pci_cap_saved_state *save_state;
348
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700349 if (!dev->msix_enabled)
350 return 0;
351
Shaohua Li41017f02006-02-08 17:11:38 +0800352 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
353 if (pos <= 0 || dev->no_msi)
354 return 0;
355
Mark Maulefd58e552006-04-10 21:17:48 -0500356 /* save the capability */
Shaohua Li41017f02006-02-08 17:11:38 +0800357 pci_read_config_word(dev, msi_control_reg(pos), &control);
358 if (!(control & PCI_MSIX_FLAGS_ENABLE))
359 return 0;
360 save_state = kzalloc(sizeof(struct pci_cap_saved_state) + sizeof(u16),
361 GFP_KERNEL);
362 if (!save_state) {
363 printk(KERN_ERR "Out of memory in pci_save_msix_state\n");
364 return -ENOMEM;
365 }
366 *((u16 *)&save_state->data[0]) = control;
367
Mark Maulefd58e552006-04-10 21:17:48 -0500368 /* save the table */
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700369 irq = head = dev->first_msi_irq;
Mark Maulefd58e552006-04-10 21:17:48 -0500370 while (head != tail) {
Mark Maulefd58e552006-04-10 21:17:48 -0500371 struct msi_desc *entry;
372
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700373 entry = msi_desc[irq];
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700374 read_msi_msg(irq, &entry->msg_save);
Mark Maulefd58e552006-04-10 21:17:48 -0500375
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700376 tail = msi_desc[irq]->link.tail;
377 irq = tail;
Mark Maulefd58e552006-04-10 21:17:48 -0500378 }
Mark Maulefd58e552006-04-10 21:17:48 -0500379
Shaohua Li41017f02006-02-08 17:11:38 +0800380 save_state->cap_nr = PCI_CAP_ID_MSIX;
381 pci_add_saved_cap(dev, save_state);
382 return 0;
383}
384
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100385int pci_save_msi_state(struct pci_dev *dev)
386{
387 int rc;
388
389 rc = __pci_save_msi_state(dev);
390 if (rc)
391 return rc;
392
393 rc = __pci_save_msix_state(dev);
394
395 return rc;
396}
397
398static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800399{
400 u16 save;
401 int pos;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700402 int irq, head, tail = 0;
Shaohua Li41017f02006-02-08 17:11:38 +0800403 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800404 struct pci_cap_saved_state *save_state;
405
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700406 if (!dev->msix_enabled)
407 return;
408
Shaohua Li41017f02006-02-08 17:11:38 +0800409 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_MSIX);
410 if (!save_state)
411 return;
412 save = *((u16 *)&save_state->data[0]);
413 pci_remove_saved_cap(save_state);
414 kfree(save_state);
415
416 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
417 if (pos <= 0)
418 return;
419
420 /* route the table */
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700421 irq = head = dev->first_msi_irq;
Shaohua Li41017f02006-02-08 17:11:38 +0800422 while (head != tail) {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700423 entry = msi_desc[irq];
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700424 write_msi_msg(irq, &entry->msg_save);
Shaohua Li41017f02006-02-08 17:11:38 +0800425
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700426 tail = msi_desc[irq]->link.tail;
427 irq = tail;
Shaohua Li41017f02006-02-08 17:11:38 +0800428 }
Shaohua Li41017f02006-02-08 17:11:38 +0800429
430 pci_write_config_word(dev, msi_control_reg(pos), save);
431 enable_msi_mode(dev, pos, PCI_CAP_ID_MSIX);
432}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100433
434void pci_restore_msi_state(struct pci_dev *dev)
435{
436 __pci_restore_msi_state(dev);
437 __pci_restore_msix_state(dev);
438}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900439#endif /* CONFIG_PM */
Shaohua Li41017f02006-02-08 17:11:38 +0800440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/**
442 * msi_capability_init - configure device's MSI capability structure
443 * @dev: pointer to the pci_dev data structure of MSI device function
444 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600445 * Setup the MSI capability structure of device function with a single
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700446 * MSI irq, regardless of device function is capable of handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * multiple messages. A return of zero indicates the successful setup
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700448 * of an entry zero with the new MSI irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 **/
450static int msi_capability_init(struct pci_dev *dev)
451{
Mark Maulefd58e552006-04-10 21:17:48 -0500452 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct msi_desc *entry;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700454 int pos, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 u16 control;
456
457 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
458 pci_read_config_word(dev, msi_control_reg(pos), &control);
459 /* MSI Entry Initialization */
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700460 irq = create_msi_irq();
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700461 if (irq < 0)
462 return irq;
463
464 entry = get_irq_data(irq);
465 entry->link.head = irq;
466 entry->link.tail = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 entry->msi_attrib.type = PCI_CAP_ID_MSI;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700468 entry->msi_attrib.is_64 = is_64bit_address(control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 entry->msi_attrib.entry_nr = 0;
470 entry->msi_attrib.maskbit = is_mask_bit_support(control);
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700471 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700472 entry->msi_attrib.pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (is_mask_bit_support(control)) {
474 entry->mask_base = (void __iomem *)(long)msi_mask_bits_reg(pos,
475 is_64bit_address(control));
476 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700477 entry->dev = dev;
478 if (entry->msi_attrib.maskbit) {
479 unsigned int maskbits, temp;
480 /* All MSIs are unmasked by default, Mask them all */
481 pci_read_config_dword(dev,
482 msi_mask_bits_reg(pos, is_64bit_address(control)),
483 &maskbits);
484 temp = (1 << multi_msi_capable(control));
485 temp = ((temp - 1) & ~temp);
486 maskbits |= temp;
487 pci_write_config_dword(dev,
488 msi_mask_bits_reg(pos, is_64bit_address(control)),
489 maskbits);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* Configure MSI capability structure */
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700492 status = arch_setup_msi_irq(irq, dev);
493 if (status < 0) {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700494 destroy_msi_irq(irq);
Mark Maulefd58e552006-04-10 21:17:48 -0500495 return status;
496 }
Shaohua Li41017f02006-02-08 17:11:38 +0800497
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700498 dev->first_msi_irq = irq;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700499 attach_msi_entry(entry, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* Set MSI enabled bits */
501 enable_msi_mode(dev, pos, PCI_CAP_ID_MSI);
502
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700503 dev->irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return 0;
505}
506
507/**
508 * msix_capability_init - configure device's MSI-X capability
509 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700510 * @entries: pointer to an array of struct msix_entry entries
511 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600513 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700514 * single MSI-X irq. A return of zero indicates the successful setup of
515 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 **/
517static int msix_capability_init(struct pci_dev *dev,
518 struct msix_entry *entries, int nvec)
519{
520 struct msi_desc *head = NULL, *tail = NULL, *entry = NULL;
Mark Maulefd58e552006-04-10 21:17:48 -0500521 int status;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700522 int irq, pos, i, j, nr_entries, temp = 0;
Grant Grundlera0454b42006-02-16 23:58:29 -0800523 unsigned long phys_addr;
524 u32 table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 u16 control;
526 u8 bir;
527 void __iomem *base;
528
529 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
530 /* Request & Map MSI-X table region */
531 pci_read_config_word(dev, msi_control_reg(pos), &control);
532 nr_entries = multi_msix_capable(control);
Grant Grundlera0454b42006-02-16 23:58:29 -0800533
534 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
Grant Grundlera0454b42006-02-16 23:58:29 -0800536 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
537 phys_addr = pci_resource_start (dev, bir) + table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 base = ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
539 if (base == NULL)
540 return -ENOMEM;
541
542 /* MSI-X Table Initialization */
543 for (i = 0; i < nvec; i++) {
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700544 irq = create_msi_irq();
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700545 if (irq < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700548 entry = get_irq_data(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 j = entries[i].entry;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700550 entries[i].vector = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 entry->msi_attrib.type = PCI_CAP_ID_MSIX;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700552 entry->msi_attrib.is_64 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 entry->msi_attrib.entry_nr = j;
554 entry->msi_attrib.maskbit = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700555 entry->msi_attrib.default_irq = dev->irq;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700556 entry->msi_attrib.pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 entry->dev = dev;
558 entry->mask_base = base;
559 if (!head) {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700560 entry->link.head = irq;
561 entry->link.tail = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 head = entry;
563 } else {
564 entry->link.head = temp;
565 entry->link.tail = tail->link.tail;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700566 tail->link.tail = irq;
567 head->link.head = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700569 temp = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 tail = entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* Configure MSI-X capability structure */
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700572 status = arch_setup_msi_irq(irq, dev);
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700573 if (status < 0) {
574 destroy_msi_irq(irq);
Mark Maulefd58e552006-04-10 21:17:48 -0500575 break;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700576 }
Mark Maulefd58e552006-04-10 21:17:48 -0500577
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700578 attach_msi_entry(entry, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580 if (i != nvec) {
Eric W. Biederman92db6d12006-10-04 02:16:35 -0700581 int avail = i - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 i--;
583 for (; i >= 0; i--) {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700584 irq = (entries + i)->vector;
585 msi_free_irq(dev, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 (entries + i)->vector = 0;
587 }
Eric W. Biederman92db6d12006-10-04 02:16:35 -0700588 /* If we had some success report the number of irqs
589 * we succeeded in setting up.
590 */
591 if (avail <= 0)
592 avail = -EBUSY;
593 return avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700595 dev->first_msi_irq = entries[0].vector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* Set MSI-X enabled bits */
597 enable_msi_mode(dev, pos, PCI_CAP_ID_MSIX);
598
599 return 0;
600}
601
602/**
Brice Goglin24334a12006-08-31 01:55:07 -0400603 * pci_msi_supported - check whether MSI may be enabled on device
604 * @dev: pointer to the pci_dev data structure of MSI device function
605 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200606 * Look at global flags, the device itself, and its parent busses
607 * to return 0 if MSI are supported for the device.
Brice Goglin24334a12006-08-31 01:55:07 -0400608 **/
609static
610int pci_msi_supported(struct pci_dev * dev)
611{
612 struct pci_bus *bus;
613
Brice Goglin0306ebf2006-10-05 10:24:31 +0200614 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400615 if (!pci_msi_enable || !dev || dev->no_msi)
616 return -EINVAL;
617
Brice Goglin0306ebf2006-10-05 10:24:31 +0200618 /* Any bridge which does NOT route MSI transactions from it's
619 * secondary bus to it's primary bus must set NO_MSI flag on
620 * the secondary pci_bus.
621 * We expect only arch-specific PCI host bus controller driver
622 * or quirks for specific PCI bridges to be setting NO_MSI.
623 */
Brice Goglin24334a12006-08-31 01:55:07 -0400624 for (bus = dev->bus; bus; bus = bus->parent)
625 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
626 return -EINVAL;
627
628 return 0;
629}
630
631/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * pci_enable_msi - configure device's MSI capability structure
633 * @dev: pointer to the pci_dev data structure of MSI device function
634 *
635 * Setup the MSI capability structure of device function with
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700636 * a single MSI irq upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * MSI mode enabled on its hardware device function. A return of zero
638 * indicates the successful setup of an entry zero with the new MSI
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700639 * irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 **/
641int pci_enable_msi(struct pci_dev* dev)
642{
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700643 int pos, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Brice Goglin24334a12006-08-31 01:55:07 -0400645 if (pci_msi_supported(dev) < 0)
646 return -EINVAL;
Michael S. Tsirkin6e325a62006-02-14 18:52:22 +0200647
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700648 status = msi_init();
649 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return status;
651
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700652 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
653 if (!pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -EINVAL;
655
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700656 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700658 /* Check whether driver already requested for MSI-X irqs */
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700659 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700660 if (pos > 0 && dev->msix_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 printk(KERN_INFO "PCI: %s: Can't enable MSI. "
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700662 "Device already has MSI-X enabled\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return -EINVAL;
665 }
666 status = msi_capability_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return status;
668}
669
670void pci_disable_msi(struct pci_dev* dev)
671{
672 struct msi_desc *entry;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700673 int pos, default_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 u16 control;
675 unsigned long flags;
676
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700677 if (!pci_msi_enable)
678 return;
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700679 if (!dev)
680 return;
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700681
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700682 if (!dev->msi_enabled)
683 return;
684
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700685 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
686 if (!pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return;
688
689 pci_read_config_word(dev, msi_control_reg(pos), &control);
690 if (!(control & PCI_MSI_FLAGS_ENABLE))
691 return;
692
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700693
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700694 disable_msi_mode(dev, pos, PCI_CAP_ID_MSI);
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 spin_lock_irqsave(&msi_lock, flags);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700697 entry = msi_desc[dev->first_msi_irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (!entry || !entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI) {
699 spin_unlock_irqrestore(&msi_lock, flags);
700 return;
701 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700702 if (irq_has_action(dev->first_msi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 spin_unlock_irqrestore(&msi_lock, flags);
704 printk(KERN_WARNING "PCI: %s: pci_disable_msi() called without "
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700705 "free_irq() on MSI irq %d\n",
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700706 pci_name(dev), dev->first_msi_irq);
707 BUG_ON(irq_has_action(dev->first_msi_irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700709 default_irq = entry->msi_attrib.default_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 spin_unlock_irqrestore(&msi_lock, flags);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700711 msi_free_irq(dev, dev->first_msi_irq);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700712
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700713 /* Restore dev->irq to its default pin-assertion irq */
714 dev->irq = default_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700716 dev->first_msi_irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700719static int msi_free_irq(struct pci_dev* dev, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 struct msi_desc *entry;
722 int head, entry_nr, type;
723 void __iomem *base;
724 unsigned long flags;
725
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700726 arch_teardown_msi_irq(irq);
Mark Maulefd58e552006-04-10 21:17:48 -0500727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 spin_lock_irqsave(&msi_lock, flags);
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700729 entry = msi_desc[irq];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (!entry || entry->dev != dev) {
731 spin_unlock_irqrestore(&msi_lock, flags);
732 return -EINVAL;
733 }
734 type = entry->msi_attrib.type;
735 entry_nr = entry->msi_attrib.entry_nr;
736 head = entry->link.head;
737 base = entry->mask_base;
738 msi_desc[entry->link.head]->link.tail = entry->link.tail;
739 msi_desc[entry->link.tail]->link.head = entry->link.head;
740 entry->dev = NULL;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700741 msi_desc[irq] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 spin_unlock_irqrestore(&msi_lock, flags);
743
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700744 destroy_msi_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 if (type == PCI_CAP_ID_MSIX) {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700747 writel(1, base + entry_nr * PCI_MSIX_ENTRY_SIZE +
748 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700750 if (head == irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 iounmap(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
754 return 0;
755}
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757/**
758 * pci_enable_msix - configure device's MSI-X capability structure
759 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700760 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700761 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 *
763 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700764 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * MSI-X mode enabled on its hardware device function. A return of zero
766 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700767 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * Or a return of > 0 indicates that driver request is exceeding the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700769 * of irqs available. Driver should use the returned value to re-send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * its request.
771 **/
772int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
773{
Eric W. Biederman92db6d12006-10-04 02:16:35 -0700774 int status, pos, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700775 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Brice Goglin24334a12006-08-31 01:55:07 -0400778 if (!entries || pci_msi_supported(dev) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return -EINVAL;
780
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700781 status = msi_init();
782 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return status;
784
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700785 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
786 if (!pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return -EINVAL;
788
789 pci_read_config_word(dev, msi_control_reg(pos), &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 nr_entries = multi_msix_capable(control);
791 if (nvec > nr_entries)
792 return -EINVAL;
793
794 /* Check for any invalid entries */
795 for (i = 0; i < nvec; i++) {
796 if (entries[i].entry >= nr_entries)
797 return -EINVAL; /* invalid entry */
798 for (j = i + 1; j < nvec; j++) {
799 if (entries[i].entry == entries[j].entry)
800 return -EINVAL; /* duplicate entry */
801 }
802 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700803 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700804
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700805 /* Check whether driver already requested for MSI irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (pci_find_capability(dev, PCI_CAP_ID_MSI) > 0 &&
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700807 dev->msi_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 printk(KERN_INFO "PCI: %s: Can't enable MSI-X. "
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700809 "Device already has an MSI irq assigned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return -EINVAL;
812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return status;
815}
816
817void pci_disable_msix(struct pci_dev* dev)
818{
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700819 int irq, head, tail = 0, warning = 0;
820 unsigned long flags;
821 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 u16 control;
823
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700824 if (!pci_msi_enable)
825 return;
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700826 if (!dev)
827 return;
828
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700829 if (!dev->msix_enabled)
830 return;
831
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700832 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
833 if (!pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return;
835
836 pci_read_config_word(dev, msi_control_reg(pos), &control);
837 if (!(control & PCI_MSIX_FLAGS_ENABLE))
838 return;
839
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700840 disable_msi_mode(dev, pos, PCI_CAP_ID_MSIX);
841
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700842 irq = head = dev->first_msi_irq;
843 while (head != tail) {
844 spin_lock_irqsave(&msi_lock, flags);
845 tail = msi_desc[irq]->link.tail;
846 spin_unlock_irqrestore(&msi_lock, flags);
847 if (irq_has_action(irq))
848 warning = 1;
849 else if (irq != head) /* Release MSI-X irq */
850 msi_free_irq(dev, irq);
851 irq = tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700853 msi_free_irq(dev, irq);
854 if (warning) {
855 printk(KERN_WARNING "PCI: %s: pci_disable_msix() called without "
856 "free_irq() on all MSI-X irqs\n",
857 pci_name(dev));
858 BUG_ON(warning > 0);
859 }
860 dev->first_msi_irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700864 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * @dev: pointer to the pci_dev data structure of MSI(X) device function
866 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600867 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700868 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 * allocated for this device function, are reclaimed to unused state,
870 * which may be used later on.
871 **/
872void msi_remove_pci_irq_vectors(struct pci_dev* dev)
873{
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700874 int pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 unsigned long flags;
876
877 if (!pci_msi_enable || !dev)
878 return;
879
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700880 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700881 if (pos > 0 && dev->msi_enabled) {
882 if (irq_has_action(dev->first_msi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 printk(KERN_WARNING "PCI: %s: msi_remove_pci_irq_vectors() "
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700884 "called without free_irq() on MSI irq %d\n",
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700885 pci_name(dev), dev->first_msi_irq);
886 BUG_ON(irq_has_action(dev->first_msi_irq));
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700887 } else /* Release MSI irq assigned to this device */
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700888 msi_free_irq(dev, dev->first_msi_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700890 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700891 if (pos > 0 && dev->msix_enabled) {
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700892 int irq, head, tail = 0, warning = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 void __iomem *base = NULL;
894
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700895 irq = head = dev->first_msi_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 while (head != tail) {
897 spin_lock_irqsave(&msi_lock, flags);
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700898 tail = msi_desc[irq]->link.tail;
899 base = msi_desc[irq]->mask_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 spin_unlock_irqrestore(&msi_lock, flags);
Eric W. Biederman1f800252006-10-04 02:16:56 -0700901 if (irq_has_action(irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 warning = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700903 else if (irq != head) /* Release MSI-X irq */
904 msi_free_irq(dev, irq);
905 irq = tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700907 msi_free_irq(dev, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (warning) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 iounmap(base);
910 printk(KERN_WARNING "PCI: %s: msi_remove_pci_irq_vectors() "
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700911 "called without free_irq() on all MSI-X irqs\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 pci_name(dev));
913 BUG_ON(warning > 0);
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916}
917
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700918void pci_no_msi(void)
919{
920 pci_msi_enable = 0;
921}
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923EXPORT_SYMBOL(pci_enable_msi);
924EXPORT_SYMBOL(pci_disable_msi);
925EXPORT_SYMBOL(pci_enable_msix);
926EXPORT_SYMBOL(pci_disable_msix);