blob: a658c0f34e1655ae7e4fce9d10a4c1d08d812cc3 [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);
Matthew Wilcox379f5322009-03-17 08:54:07 -0400113 BUG_ON(!entry);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400114 if (entry->msi_attrib.is_msix) {
Mitch Williams988cbb12007-03-30 11:54:08 -0700115 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
116 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
117 readl(entry->mask_base + offset);
Mitch Williams988cbb12007-03-30 11:54:08 -0700118 }
119}
120
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600121/*
122 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
123 * mask all MSI interrupts by clearing the MSI enable bit does not work
124 * reliably as devices without an INTx disable bit will then generate a
125 * level IRQ which will never be cleared.
126 *
127 * Returns 1 if it succeeded in masking the interrupt and 0 if the device
128 * doesn't support MSI masking.
129 */
Yinghai Lu3145e942008-12-05 18:58:34 -0800130static int msi_set_mask_bits(struct irq_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 struct msi_desc *entry;
133
Yinghai Lu3145e942008-12-05 18:58:34 -0800134 entry = get_irq_desc_msi(desc);
Matthew Wilcox379f5322009-03-17 08:54:07 -0400135 BUG_ON(!entry);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400136 if (entry->msi_attrib.is_msix) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
138 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
139 writel(flag, entry->mask_base + offset);
Eric W. Biederman348e3fd2007-04-03 01:41:49 -0600140 readl(entry->mask_base + offset);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400141 } else {
142 int pos;
143 u32 mask_bits;
144
145 if (!entry->msi_attrib.maskbit)
146 return 0;
147
148 pos = (long)entry->mask_base;
149 pci_read_config_dword(entry->dev, pos, &mask_bits);
150 mask_bits &= ~mask;
151 mask_bits |= flag & mask;
152 pci_write_config_dword(entry->dev, pos, mask_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700154 entry->msi_attrib.masked = !!flag;
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600155 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Yinghai Lu3145e942008-12-05 18:58:34 -0800158void read_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700159{
Yinghai Lu3145e942008-12-05 18:58:34 -0800160 struct msi_desc *entry = get_irq_desc_msi(desc);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400161 if (entry->msi_attrib.is_msix) {
162 void __iomem *base = entry->mask_base +
163 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
164
165 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
166 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
167 msg->data = readl(base + PCI_MSIX_ENTRY_DATA_OFFSET);
168 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700169 struct pci_dev *dev = entry->dev;
170 int pos = entry->msi_attrib.pos;
171 u16 data;
172
173 pci_read_config_dword(dev, msi_lower_address_reg(pos),
174 &msg->address_lo);
175 if (entry->msi_attrib.is_64) {
176 pci_read_config_dword(dev, msi_upper_address_reg(pos),
177 &msg->address_hi);
178 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
179 } else {
180 msg->address_hi = 0;
Roland Dreiercbf5d9e2007-10-03 11:15:11 -0700181 pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700182 }
183 msg->data = data;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700184 }
185}
186
Yinghai Lu3145e942008-12-05 18:58:34 -0800187void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700188{
Yinghai Lu3145e942008-12-05 18:58:34 -0800189 struct irq_desc *desc = irq_to_desc(irq);
190
191 read_msi_msg_desc(desc, msg);
192}
193
194void write_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg)
195{
196 struct msi_desc *entry = get_irq_desc_msi(desc);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400197 if (entry->msi_attrib.is_msix) {
198 void __iomem *base;
199 base = entry->mask_base +
200 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
201
202 writel(msg->address_lo,
203 base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
204 writel(msg->address_hi,
205 base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
206 writel(msg->data, base + PCI_MSIX_ENTRY_DATA_OFFSET);
207 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700208 struct pci_dev *dev = entry->dev;
209 int pos = entry->msi_attrib.pos;
210
211 pci_write_config_dword(dev, msi_lower_address_reg(pos),
212 msg->address_lo);
213 if (entry->msi_attrib.is_64) {
214 pci_write_config_dword(dev, msi_upper_address_reg(pos),
215 msg->address_hi);
216 pci_write_config_word(dev, msi_data_reg(pos, 1),
217 msg->data);
218 } else {
219 pci_write_config_word(dev, msi_data_reg(pos, 0),
220 msg->data);
221 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700222 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700223 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700224}
225
Yinghai Lu3145e942008-12-05 18:58:34 -0800226void write_msi_msg(unsigned int irq, struct msi_msg *msg)
227{
228 struct irq_desc *desc = irq_to_desc(irq);
229
230 write_msi_msg_desc(desc, msg);
231}
232
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700233void mask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Yinghai Lu3145e942008-12-05 18:58:34 -0800235 struct irq_desc *desc = irq_to_desc(irq);
236
237 msi_set_mask_bits(desc, 1, 1);
238 msix_flush_writes(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700241void unmask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Yinghai Lu3145e942008-12-05 18:58:34 -0800243 struct irq_desc *desc = irq_to_desc(irq);
244
245 msi_set_mask_bits(desc, 1, 0);
246 msix_flush_writes(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Michael Ellerman032de8e2007-04-18 19:39:22 +1000249static int msi_free_irqs(struct pci_dev* dev);
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900250
Matthew Wilcox379f5322009-03-17 08:54:07 -0400251static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400253 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
254 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return NULL;
256
Matthew Wilcox379f5322009-03-17 08:54:07 -0400257 INIT_LIST_HEAD(&desc->list);
258 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Matthew Wilcox379f5322009-03-17 08:54:07 -0400260 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
David Millerba698ad2007-10-25 01:16:30 -0700263static void pci_intx_for_msi(struct pci_dev *dev, int enable)
264{
265 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
266 pci_intx(dev, enable);
267}
268
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100269static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800270{
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700271 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800272 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700273 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800274
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800275 if (!dev->msi_enabled)
276 return;
277
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700278 entry = get_irq_msi(dev->irq);
279 pos = entry->msi_attrib.pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800280
David Millerba698ad2007-10-25 01:16:30 -0700281 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800282 msi_set_enable(dev, 0);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700283 write_msi_msg(dev->irq, &entry->msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800284 if (entry->msi_attrib.maskbit) {
285 struct irq_desc *desc = irq_to_desc(dev->irq);
286 msi_set_mask_bits(desc, entry->msi_attrib.maskbits_mask,
Yinghai Lu8e149e02008-04-23 14:56:30 -0700287 entry->msi_attrib.masked);
Yinghai Lu3145e942008-12-05 18:58:34 -0800288 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700289
290 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700291 control &= ~PCI_MSI_FLAGS_QSIZE;
292 control |= PCI_MSI_FLAGS_ENABLE;
Shaohua Li41017f02006-02-08 17:11:38 +0800293 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100294}
295
296static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800297{
Shaohua Li41017f02006-02-08 17:11:38 +0800298 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800299 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700300 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800301
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700302 if (!dev->msix_enabled)
303 return;
304
Shaohua Li41017f02006-02-08 17:11:38 +0800305 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700306 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800307 msix_set_enable(dev, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800308
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000309 list_for_each_entry(entry, &dev->msi_list, list) {
Yinghai Lu3145e942008-12-05 18:58:34 -0800310 struct irq_desc *desc = irq_to_desc(entry->irq);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000311 write_msi_msg(entry->irq, &entry->msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800312 msi_set_mask_bits(desc, 1, entry->msi_attrib.masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800313 }
Shaohua Li41017f02006-02-08 17:11:38 +0800314
Michael Ellerman314e77b2007-04-05 17:19:12 +1000315 BUG_ON(list_empty(&dev->msi_list));
316 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000317 pos = entry->msi_attrib.pos;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700318 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
319 control &= ~PCI_MSIX_FLAGS_MASKALL;
320 control |= PCI_MSIX_FLAGS_ENABLE;
321 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800322}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100323
324void pci_restore_msi_state(struct pci_dev *dev)
325{
326 __pci_restore_msi_state(dev);
327 __pci_restore_msix_state(dev);
328}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600329EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/**
332 * msi_capability_init - configure device's MSI capability structure
333 * @dev: pointer to the pci_dev data structure of MSI device function
334 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600335 * Setup the MSI capability structure of device function with a single
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700336 * MSI irq, regardless of device function is capable of handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * multiple messages. A return of zero indicates the successful setup
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700338 * of an entry zero with the new MSI irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 **/
340static int msi_capability_init(struct pci_dev *dev)
341{
342 struct msi_desc *entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000343 int pos, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 u16 control;
345
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800346 msi_set_enable(dev, 0); /* Ensure msi is disabled as I set it up */
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
349 pci_read_config_word(dev, msi_control_reg(pos), &control);
350 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400351 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700352 if (!entry)
353 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700354
Matthew Wilcox24d27552009-03-17 08:54:06 -0400355 entry->msi_attrib.is_msix = 0;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700356 entry->msi_attrib.is_64 = is_64bit_address(control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 entry->msi_attrib.entry_nr = 0;
358 entry->msi_attrib.maskbit = is_mask_bit_support(control);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700359 entry->msi_attrib.masked = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700360 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700361 entry->msi_attrib.pos = pos;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700362 if (entry->msi_attrib.maskbit) {
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900363 unsigned int base, maskbits, temp;
364
365 base = msi_mask_bits_reg(pos, entry->msi_attrib.is_64);
366 entry->mask_base = (void __iomem *)(long)base;
367
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700368 /* All MSIs are unmasked by default, Mask them all */
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900369 pci_read_config_dword(dev, base, &maskbits);
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500370 temp = msi_mask((control & PCI_MSI_FLAGS_QMASK) >> 1);
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700371 maskbits |= temp;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900372 pci_write_config_dword(dev, base, maskbits);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700373 entry->msi_attrib.maskbits_mask = temp;
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700374 }
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700375 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* Configure MSI capability structure */
Michael Ellerman9c831332007-04-18 19:39:21 +1000378 ret = arch_setup_msi_irqs(dev, 1, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000379 if (ret) {
Michael Ellerman032de8e2007-04-18 19:39:22 +1000380 msi_free_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000381 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500382 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700385 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800386 msi_set_enable(dev, 1);
387 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Michael Ellerman7fe37302007-04-18 19:39:21 +1000389 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 0;
391}
392
393/**
394 * msix_capability_init - configure device's MSI-X capability
395 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700396 * @entries: pointer to an array of struct msix_entry entries
397 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600399 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700400 * single MSI-X irq. A return of zero indicates the successful setup of
401 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 **/
403static int msix_capability_init(struct pci_dev *dev,
404 struct msix_entry *entries, int nvec)
405{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000406 struct msi_desc *entry;
Michael Ellerman9c831332007-04-18 19:39:21 +1000407 int pos, i, j, nr_entries, ret;
Grant Grundlera0454b42006-02-16 23:58:29 -0800408 unsigned long phys_addr;
409 u32 table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 u16 control;
411 u8 bir;
412 void __iomem *base;
413
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800414 msix_set_enable(dev, 0);/* Ensure msix is disabled as I set it up */
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
417 /* Request & Map MSI-X table region */
418 pci_read_config_word(dev, msi_control_reg(pos), &control);
419 nr_entries = multi_msix_capable(control);
Grant Grundlera0454b42006-02-16 23:58:29 -0800420
421 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
Grant Grundlera0454b42006-02-16 23:58:29 -0800423 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
424 phys_addr = pci_resource_start (dev, bir) + table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 base = ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
426 if (base == NULL)
427 return -ENOMEM;
428
429 /* MSI-X Table Initialization */
430 for (i = 0; i < nvec; i++) {
Matthew Wilcox379f5322009-03-17 08:54:07 -0400431 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700432 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 j = entries[i].entry;
Matthew Wilcox24d27552009-03-17 08:54:06 -0400436 entry->msi_attrib.is_msix = 1;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700437 entry->msi_attrib.is_64 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 entry->msi_attrib.entry_nr = j;
439 entry->msi_attrib.maskbit = 1;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700440 entry->msi_attrib.masked = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700441 entry->msi_attrib.default_irq = dev->irq;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700442 entry->msi_attrib.pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 entry->mask_base = base;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700444
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700445 list_add_tail(&entry->list, &dev->msi_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000447
448 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100449 if (ret < 0) {
450 /* If we had some success report the number of irqs
451 * we succeeded in setting up. */
Michael Ellerman9c831332007-04-18 19:39:21 +1000452 int avail = 0;
453 list_for_each_entry(entry, &dev->msi_list, list) {
454 if (entry->irq != 0) {
455 avail++;
Michael Ellerman9c831332007-04-18 19:39:21 +1000456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000458
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100459 if (avail != 0)
460 ret = avail;
461 }
Michael Ellerman032de8e2007-04-18 19:39:22 +1000462
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100463 if (ret) {
464 msi_free_irqs(dev);
465 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000467
468 i = 0;
469 list_for_each_entry(entry, &dev->msi_list, list) {
470 entries[i].vector = entry->irq;
471 set_irq_msi(entry->irq, entry);
472 i++;
473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /* Set MSI-X enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700475 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800476 msix_set_enable(dev, 1);
477 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 return 0;
480}
481
482/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000483 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400484 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000485 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100486 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400487 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200488 * Look at global flags, the device itself, and its parent busses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000489 * to determine if MSI/-X are supported for the device. If MSI/-X is
490 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400491 **/
Michael Ellermanc9953a72007-04-05 17:19:08 +1000492static int pci_msi_check_device(struct pci_dev* dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400493{
494 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000495 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400496
Brice Goglin0306ebf2006-10-05 10:24:31 +0200497 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400498 if (!pci_msi_enable || !dev || dev->no_msi)
499 return -EINVAL;
500
Michael Ellerman314e77b2007-04-05 17:19:12 +1000501 /*
502 * You can't ask to have 0 or less MSIs configured.
503 * a) it's stupid ..
504 * b) the list manipulation code assumes nvec >= 1.
505 */
506 if (nvec < 1)
507 return -ERANGE;
508
Brice Goglin0306ebf2006-10-05 10:24:31 +0200509 /* Any bridge which does NOT route MSI transactions from it's
510 * secondary bus to it's primary bus must set NO_MSI flag on
511 * the secondary pci_bus.
512 * We expect only arch-specific PCI host bus controller driver
513 * or quirks for specific PCI bridges to be setting NO_MSI.
514 */
Brice Goglin24334a12006-08-31 01:55:07 -0400515 for (bus = dev->bus; bus; bus = bus->parent)
516 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
517 return -EINVAL;
518
Michael Ellermanc9953a72007-04-05 17:19:08 +1000519 ret = arch_msi_check_device(dev, nvec, type);
520 if (ret)
521 return ret;
522
Michael Ellermanb1e23032007-03-22 21:51:39 +1100523 if (!pci_find_capability(dev, type))
524 return -EINVAL;
525
Brice Goglin24334a12006-08-31 01:55:07 -0400526 return 0;
527}
528
529/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * pci_enable_msi - configure device's MSI capability structure
531 * @dev: pointer to the pci_dev data structure of MSI device function
532 *
533 * Setup the MSI capability structure of device function with
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700534 * a single MSI irq upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * MSI mode enabled on its hardware device function. A return of zero
536 * indicates the successful setup of an entry zero with the new MSI
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700537 * irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 **/
539int pci_enable_msi(struct pci_dev* dev)
540{
Michael Ellermanb1e23032007-03-22 21:51:39 +1100541 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Michael Ellermanc9953a72007-04-05 17:19:08 +1000543 status = pci_msi_check_device(dev, 1, PCI_CAP_ID_MSI);
544 if (status)
545 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700547 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700549 /* Check whether driver already requested for MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800550 if (dev->msix_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600551 dev_info(&dev->dev, "can't enable MSI "
552 "(MSI-X already enabled)\n");
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800553 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 status = msi_capability_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return status;
557}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100558EXPORT_SYMBOL(pci_enable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Yinghai Lud52877c2008-04-23 14:58:09 -0700560void pci_msi_shutdown(struct pci_dev* dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 struct msi_desc *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100564 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700565 return;
566
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800567 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700568 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800569 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700570
Michael Ellerman314e77b2007-04-05 17:19:12 +1000571 BUG_ON(list_empty(&dev->msi_list));
572 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700573 /* Return the the pci reset with msi irqs unmasked */
574 if (entry->msi_attrib.maskbit) {
575 u32 mask = entry->msi_attrib.maskbits_mask;
Yinghai Lu3145e942008-12-05 18:58:34 -0800576 struct irq_desc *desc = irq_to_desc(dev->irq);
577 msi_set_mask_bits(desc, mask, ~mask);
Yinghai Lu8e149e02008-04-23 14:56:30 -0700578 }
Matthew Wilcox379f5322009-03-17 08:54:07 -0400579 if (entry->msi_attrib.is_msix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return;
Michael Ellermane387b9e2007-03-22 21:51:27 +1100581
582 /* Restore dev->irq to its default pin-assertion irq */
Yinghai Lud52877c2008-04-23 14:58:09 -0700583 dev->irq = entry->msi_attrib.default_irq;
584}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400585
Yinghai Lud52877c2008-04-23 14:58:09 -0700586void pci_disable_msi(struct pci_dev* dev)
587{
588 struct msi_desc *entry;
589
590 if (!pci_msi_enable || !dev || !dev->msi_enabled)
591 return;
592
593 pci_msi_shutdown(dev);
594
595 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
Matthew Wilcox379f5322009-03-17 08:54:07 -0400596 if (entry->msi_attrib.is_msix)
Yinghai Lud52877c2008-04-23 14:58:09 -0700597 return;
598
599 msi_free_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100601EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Michael Ellerman032de8e2007-04-18 19:39:22 +1000603static int msi_free_irqs(struct pci_dev* dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Michael Ellerman032de8e2007-04-18 19:39:22 +1000605 struct msi_desc *entry, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
David Millerb3b7cc72007-05-11 13:26:44 -0700607 list_for_each_entry(entry, &dev->msi_list, list) {
608 if (entry->irq)
609 BUG_ON(irq_has_action(entry->irq));
610 }
Michael Ellerman7ede9c12007-03-22 21:51:34 +1100611
Michael Ellerman032de8e2007-04-18 19:39:22 +1000612 arch_teardown_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Michael Ellerman032de8e2007-04-18 19:39:22 +1000614 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400615 if (entry->msi_attrib.is_msix) {
Michael Ellerman032de8e2007-04-18 19:39:22 +1000616 writel(1, entry->mask_base + entry->msi_attrib.entry_nr
617 * PCI_MSIX_ENTRY_SIZE
618 + PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
Eric W. Biederman78b76112007-06-01 00:46:33 -0700619
620 if (list_is_last(&entry->list, &dev->msi_list))
621 iounmap(entry->mask_base);
Michael Ellerman032de8e2007-04-18 19:39:22 +1000622 }
623 list_del(&entry->list);
624 kfree(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 return 0;
628}
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630/**
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100631 * pci_msix_table_size - return the number of device's MSI-X table entries
632 * @dev: pointer to the pci_dev data structure of MSI-X device function
633 */
634int pci_msix_table_size(struct pci_dev *dev)
635{
636 int pos;
637 u16 control;
638
639 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
640 if (!pos)
641 return 0;
642
643 pci_read_config_word(dev, msi_control_reg(pos), &control);
644 return multi_msix_capable(control);
645}
646
647/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * pci_enable_msix - configure device's MSI-X capability structure
649 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700650 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700651 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 *
653 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700654 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 * MSI-X mode enabled on its hardware device function. A return of zero
656 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700657 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 * Or a return of > 0 indicates that driver request is exceeding the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700659 * of irqs available. Driver should use the returned value to re-send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 * its request.
661 **/
662int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
663{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100664 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700665 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Michael Ellermanc9953a72007-04-05 17:19:08 +1000667 if (!entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return -EINVAL;
669
Michael Ellermanc9953a72007-04-05 17:19:08 +1000670 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
671 if (status)
672 return status;
673
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100674 nr_entries = pci_msix_table_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (nvec > nr_entries)
676 return -EINVAL;
677
678 /* Check for any invalid entries */
679 for (i = 0; i < nvec; i++) {
680 if (entries[i].entry >= nr_entries)
681 return -EINVAL; /* invalid entry */
682 for (j = i + 1; j < nvec; j++) {
683 if (entries[i].entry == entries[j].entry)
684 return -EINVAL; /* duplicate entry */
685 }
686 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700687 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700688
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700689 /* Check whether driver already requested for MSI irq */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800690 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600691 dev_info(&dev->dev, "can't enable MSI-X "
692 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return -EINVAL;
694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return status;
697}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100698EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100700static void msix_free_all_irqs(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Michael Ellerman032de8e2007-04-18 19:39:22 +1000702 msi_free_irqs(dev);
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100703}
704
Yinghai Lud52877c2008-04-23 14:58:09 -0700705void pci_msix_shutdown(struct pci_dev* dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100706{
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100707 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700708 return;
709
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800710 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700711 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800712 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700713}
714void pci_disable_msix(struct pci_dev* dev)
715{
716 if (!pci_msi_enable || !dev || !dev->msix_enabled)
717 return;
718
719 pci_msix_shutdown(dev);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700720
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100721 msix_free_all_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100723EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700726 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * @dev: pointer to the pci_dev data structure of MSI(X) device function
728 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600729 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700730 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * allocated for this device function, are reclaimed to unused state,
732 * which may be used later on.
733 **/
734void msi_remove_pci_irq_vectors(struct pci_dev* dev)
735{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (!pci_msi_enable || !dev)
737 return;
738
Michael Ellerman032de8e2007-04-18 19:39:22 +1000739 if (dev->msi_enabled)
740 msi_free_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100742 if (dev->msix_enabled)
743 msix_free_all_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700746void pci_no_msi(void)
747{
748 pci_msi_enable = 0;
749}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000750
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700751/**
752 * pci_msi_enabled - is MSI enabled?
753 *
754 * Returns true if MSI has not been disabled by the command-line option
755 * pci=nomsi.
756 **/
757int pci_msi_enabled(void)
758{
759 return pci_msi_enable;
760}
761EXPORT_SYMBOL(pci_msi_enabled);
762
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000763void pci_msi_init_pci_dev(struct pci_dev *dev)
764{
765 INIT_LIST_HEAD(&dev->msi_list);
766}