blob: 07c9f09c856dba943a15f7e794ba8e1eaef78387 [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
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080028static void msi_set_enable(struct pci_dev *dev, int enable)
29{
30 int pos;
31 u16 control;
32
33 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
34 if (pos) {
35 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
36 control &= ~PCI_MSI_FLAGS_ENABLE;
37 if (enable)
38 control |= PCI_MSI_FLAGS_ENABLE;
39 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
40 }
41}
42
43static void msix_set_enable(struct pci_dev *dev, int enable)
44{
45 int pos;
46 u16 control;
47
48 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
49 if (pos) {
50 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
51 control &= ~PCI_MSIX_FLAGS_ENABLE;
52 if (enable)
53 control |= PCI_MSIX_FLAGS_ENABLE;
54 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
55 }
56}
57
Mitch Williams988cbb12007-03-30 11:54:08 -070058static void msix_flush_writes(unsigned int irq)
59{
60 struct msi_desc *entry;
61
62 entry = get_irq_msi(irq);
63 BUG_ON(!entry || !entry->dev);
64 switch (entry->msi_attrib.type) {
65 case PCI_CAP_ID_MSI:
66 /* nothing to do */
67 break;
68 case PCI_CAP_ID_MSIX:
69 {
70 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
71 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
72 readl(entry->mask_base + offset);
73 break;
74 }
75 default:
76 BUG();
77 break;
78 }
79}
80
Eric W. Biederman1ce03372006-10-04 02:16:41 -070081static void msi_set_mask_bit(unsigned int irq, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct msi_desc *entry;
84
Eric W. Biederman5b912c12007-01-28 12:52:03 -070085 entry = get_irq_msi(irq);
Eric W. Biederman277bc332006-10-04 02:16:57 -070086 BUG_ON(!entry || !entry->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 switch (entry->msi_attrib.type) {
88 case PCI_CAP_ID_MSI:
Eric W. Biederman277bc332006-10-04 02:16:57 -070089 if (entry->msi_attrib.maskbit) {
Satoru Takeuchic54c1872007-01-18 13:50:05 +090090 int pos;
91 u32 mask_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Eric W. Biederman277bc332006-10-04 02:16:57 -070093 pos = (long)entry->mask_base;
94 pci_read_config_dword(entry->dev, pos, &mask_bits);
95 mask_bits &= ~(1);
96 mask_bits |= flag;
97 pci_write_config_dword(entry->dev, pos, mask_bits);
Eric W. Biederman58e05432007-03-05 00:30:11 -080098 } else {
99 msi_set_enable(entry->dev, !flag);
Eric W. Biederman277bc332006-10-04 02:16:57 -0700100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 case PCI_CAP_ID_MSIX:
103 {
104 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
105 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
106 writel(flag, entry->mask_base + offset);
Eric W. Biederman348e3fd2007-04-03 01:41:49 -0600107 readl(entry->mask_base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 break;
109 }
110 default:
Eric W. Biederman277bc332006-10-04 02:16:57 -0700111 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 break;
113 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700114 entry->msi_attrib.masked = !!flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700117void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700118{
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700119 struct msi_desc *entry = get_irq_msi(irq);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700120 switch(entry->msi_attrib.type) {
121 case PCI_CAP_ID_MSI:
122 {
123 struct pci_dev *dev = entry->dev;
124 int pos = entry->msi_attrib.pos;
125 u16 data;
126
127 pci_read_config_dword(dev, msi_lower_address_reg(pos),
128 &msg->address_lo);
129 if (entry->msi_attrib.is_64) {
130 pci_read_config_dword(dev, msi_upper_address_reg(pos),
131 &msg->address_hi);
132 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
133 } else {
134 msg->address_hi = 0;
Roland Dreiercbf5d9e2007-10-03 11:15:11 -0700135 pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700136 }
137 msg->data = data;
138 break;
139 }
140 case PCI_CAP_ID_MSIX:
141 {
142 void __iomem *base;
143 base = entry->mask_base +
144 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
145
146 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
147 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
148 msg->data = readl(base + PCI_MSIX_ENTRY_DATA_OFFSET);
149 break;
150 }
151 default:
152 BUG();
153 }
154}
155
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700156void write_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700157{
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700158 struct msi_desc *entry = get_irq_msi(irq);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700159 switch (entry->msi_attrib.type) {
160 case PCI_CAP_ID_MSI:
161 {
162 struct pci_dev *dev = entry->dev;
163 int pos = entry->msi_attrib.pos;
164
165 pci_write_config_dword(dev, msi_lower_address_reg(pos),
166 msg->address_lo);
167 if (entry->msi_attrib.is_64) {
168 pci_write_config_dword(dev, msi_upper_address_reg(pos),
169 msg->address_hi);
170 pci_write_config_word(dev, msi_data_reg(pos, 1),
171 msg->data);
172 } else {
173 pci_write_config_word(dev, msi_data_reg(pos, 0),
174 msg->data);
175 }
176 break;
177 }
178 case PCI_CAP_ID_MSIX:
179 {
180 void __iomem *base;
181 base = entry->mask_base +
182 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
183
184 writel(msg->address_lo,
185 base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
186 writel(msg->address_hi,
187 base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
188 writel(msg->data, base + PCI_MSIX_ENTRY_DATA_OFFSET);
189 break;
190 }
191 default:
192 BUG();
193 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700194 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700195}
196
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700197void mask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700199 msi_set_mask_bit(irq, 1);
Mitch Williams988cbb12007-03-30 11:54:08 -0700200 msix_flush_writes(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700203void unmask_msi_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700205 msi_set_mask_bit(irq, 0);
Mitch Williams988cbb12007-03-30 11:54:08 -0700206 msix_flush_writes(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Michael Ellerman032de8e2007-04-18 19:39:22 +1000209static int msi_free_irqs(struct pci_dev* dev);
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static struct msi_desc* alloc_msi_entry(void)
213{
214 struct msi_desc *entry;
215
Michael Ellerman3e916c02007-03-22 21:51:36 +1100216 entry = kzalloc(sizeof(struct msi_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (!entry)
218 return NULL;
219
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000220 INIT_LIST_HEAD(&entry->list);
221 entry->irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 entry->dev = NULL;
223
224 return entry;
225}
226
David Millerba698ad2007-10-25 01:16:30 -0700227static void pci_intx_for_msi(struct pci_dev *dev, int enable)
228{
229 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
230 pci_intx(dev, enable);
231}
232
Shaohua Li41017f02006-02-08 17:11:38 +0800233#ifdef CONFIG_PM
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100234static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800235{
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700236 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800237 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700238 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800239
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800240 if (!dev->msi_enabled)
241 return;
242
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700243 entry = get_irq_msi(dev->irq);
244 pos = entry->msi_attrib.pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800245
David Millerba698ad2007-10-25 01:16:30 -0700246 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800247 msi_set_enable(dev, 0);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700248 write_msi_msg(dev->irq, &entry->msg);
249 if (entry->msi_attrib.maskbit)
250 msi_set_mask_bit(dev->irq, entry->msi_attrib.masked);
251
252 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
253 control &= ~(PCI_MSI_FLAGS_QSIZE | PCI_MSI_FLAGS_ENABLE);
254 if (entry->msi_attrib.maskbit || !entry->msi_attrib.masked)
255 control |= PCI_MSI_FLAGS_ENABLE;
Shaohua Li41017f02006-02-08 17:11:38 +0800256 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100257}
258
259static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800260{
Shaohua Li41017f02006-02-08 17:11:38 +0800261 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800262 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700263 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800264
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700265 if (!dev->msix_enabled)
266 return;
267
Shaohua Li41017f02006-02-08 17:11:38 +0800268 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700269 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800270 msix_set_enable(dev, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800271
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000272 list_for_each_entry(entry, &dev->msi_list, list) {
273 write_msi_msg(entry->irq, &entry->msg);
274 msi_set_mask_bit(entry->irq, entry->msi_attrib.masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800275 }
Shaohua Li41017f02006-02-08 17:11:38 +0800276
Michael Ellerman314e77b2007-04-05 17:19:12 +1000277 BUG_ON(list_empty(&dev->msi_list));
278 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000279 pos = entry->msi_attrib.pos;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700280 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
281 control &= ~PCI_MSIX_FLAGS_MASKALL;
282 control |= PCI_MSIX_FLAGS_ENABLE;
283 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800284}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100285
286void pci_restore_msi_state(struct pci_dev *dev)
287{
288 __pci_restore_msi_state(dev);
289 __pci_restore_msix_state(dev);
290}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900291#endif /* CONFIG_PM */
Shaohua Li41017f02006-02-08 17:11:38 +0800292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/**
294 * msi_capability_init - configure device's MSI capability structure
295 * @dev: pointer to the pci_dev data structure of MSI device function
296 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600297 * Setup the MSI capability structure of device function with a single
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700298 * MSI irq, regardless of device function is capable of handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * multiple messages. A return of zero indicates the successful setup
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700300 * of an entry zero with the new MSI irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 **/
302static int msi_capability_init(struct pci_dev *dev)
303{
304 struct msi_desc *entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000305 int pos, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 u16 control;
307
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800308 msi_set_enable(dev, 0); /* Ensure msi is disabled as I set it up */
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
311 pci_read_config_word(dev, msi_control_reg(pos), &control);
312 /* MSI Entry Initialization */
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700313 entry = alloc_msi_entry();
314 if (!entry)
315 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 entry->msi_attrib.type = PCI_CAP_ID_MSI;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700318 entry->msi_attrib.is_64 = is_64bit_address(control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 entry->msi_attrib.entry_nr = 0;
320 entry->msi_attrib.maskbit = is_mask_bit_support(control);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700321 entry->msi_attrib.masked = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700322 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700323 entry->msi_attrib.pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (is_mask_bit_support(control)) {
325 entry->mask_base = (void __iomem *)(long)msi_mask_bits_reg(pos,
326 is_64bit_address(control));
327 }
Eric W. Biederman3b7d1922006-10-04 02:16:59 -0700328 entry->dev = dev;
329 if (entry->msi_attrib.maskbit) {
330 unsigned int maskbits, temp;
331 /* All MSIs are unmasked by default, Mask them all */
332 pci_read_config_dword(dev,
333 msi_mask_bits_reg(pos, is_64bit_address(control)),
334 &maskbits);
335 temp = (1 << multi_msi_capable(control));
336 temp = ((temp - 1) & ~temp);
337 maskbits |= temp;
338 pci_write_config_dword(dev,
339 msi_mask_bits_reg(pos, is_64bit_address(control)),
340 maskbits);
341 }
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700342 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* Configure MSI capability structure */
Michael Ellerman9c831332007-04-18 19:39:21 +1000345 ret = arch_setup_msi_irqs(dev, 1, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000346 if (ret) {
Michael Ellerman032de8e2007-04-18 19:39:22 +1000347 msi_free_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000348 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500349 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700352 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800353 msi_set_enable(dev, 1);
354 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Michael Ellerman7fe37302007-04-18 19:39:21 +1000356 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358}
359
360/**
361 * msix_capability_init - configure device's MSI-X capability
362 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700363 * @entries: pointer to an array of struct msix_entry entries
364 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600366 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700367 * single MSI-X irq. A return of zero indicates the successful setup of
368 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 **/
370static int msix_capability_init(struct pci_dev *dev,
371 struct msix_entry *entries, int nvec)
372{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000373 struct msi_desc *entry;
Michael Ellerman9c831332007-04-18 19:39:21 +1000374 int pos, i, j, nr_entries, ret;
Grant Grundlera0454b42006-02-16 23:58:29 -0800375 unsigned long phys_addr;
376 u32 table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u16 control;
378 u8 bir;
379 void __iomem *base;
380
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800381 msix_set_enable(dev, 0);/* Ensure msix is disabled as I set it up */
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
384 /* Request & Map MSI-X table region */
385 pci_read_config_word(dev, msi_control_reg(pos), &control);
386 nr_entries = multi_msix_capable(control);
Grant Grundlera0454b42006-02-16 23:58:29 -0800387
388 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
Grant Grundlera0454b42006-02-16 23:58:29 -0800390 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
391 phys_addr = pci_resource_start (dev, bir) + table_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 base = ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
393 if (base == NULL)
394 return -ENOMEM;
395
396 /* MSI-X Table Initialization */
397 for (i = 0; i < nvec; i++) {
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700398 entry = alloc_msi_entry();
399 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 j = entries[i].entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 entry->msi_attrib.type = PCI_CAP_ID_MSIX;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700404 entry->msi_attrib.is_64 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 entry->msi_attrib.entry_nr = j;
406 entry->msi_attrib.maskbit = 1;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700407 entry->msi_attrib.masked = 1;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700408 entry->msi_attrib.default_irq = dev->irq;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700409 entry->msi_attrib.pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 entry->dev = dev;
411 entry->mask_base = base;
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700412
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700413 list_add_tail(&entry->list, &dev->msi_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000415
416 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
417 if (ret) {
418 int avail = 0;
419 list_for_each_entry(entry, &dev->msi_list, list) {
420 if (entry->irq != 0) {
421 avail++;
Michael Ellerman9c831332007-04-18 19:39:21 +1000422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000424
Michael Ellerman032de8e2007-04-18 19:39:22 +1000425 msi_free_irqs(dev);
426
Eric W. Biederman92db6d12006-10-04 02:16:35 -0700427 /* If we had some success report the number of irqs
428 * we succeeded in setting up.
429 */
Michael Ellerman9c831332007-04-18 19:39:21 +1000430 if (avail == 0)
431 avail = ret;
Eric W. Biederman92db6d12006-10-04 02:16:35 -0700432 return avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Michael Ellerman9c831332007-04-18 19:39:21 +1000434
435 i = 0;
436 list_for_each_entry(entry, &dev->msi_list, list) {
437 entries[i].vector = entry->irq;
438 set_irq_msi(entry->irq, entry);
439 i++;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* Set MSI-X enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700442 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800443 msix_set_enable(dev, 1);
444 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 return 0;
447}
448
449/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000450 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400451 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000452 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100453 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400454 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200455 * Look at global flags, the device itself, and its parent busses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000456 * to determine if MSI/-X are supported for the device. If MSI/-X is
457 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400458 **/
Michael Ellermanc9953a72007-04-05 17:19:08 +1000459static int pci_msi_check_device(struct pci_dev* dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400460{
461 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000462 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400463
Brice Goglin0306ebf2006-10-05 10:24:31 +0200464 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400465 if (!pci_msi_enable || !dev || dev->no_msi)
466 return -EINVAL;
467
Michael Ellerman314e77b2007-04-05 17:19:12 +1000468 /*
469 * You can't ask to have 0 or less MSIs configured.
470 * a) it's stupid ..
471 * b) the list manipulation code assumes nvec >= 1.
472 */
473 if (nvec < 1)
474 return -ERANGE;
475
Brice Goglin0306ebf2006-10-05 10:24:31 +0200476 /* Any bridge which does NOT route MSI transactions from it's
477 * secondary bus to it's primary bus must set NO_MSI flag on
478 * the secondary pci_bus.
479 * We expect only arch-specific PCI host bus controller driver
480 * or quirks for specific PCI bridges to be setting NO_MSI.
481 */
Brice Goglin24334a12006-08-31 01:55:07 -0400482 for (bus = dev->bus; bus; bus = bus->parent)
483 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
484 return -EINVAL;
485
Michael Ellermanc9953a72007-04-05 17:19:08 +1000486 ret = arch_msi_check_device(dev, nvec, type);
487 if (ret)
488 return ret;
489
Michael Ellermanb1e23032007-03-22 21:51:39 +1100490 if (!pci_find_capability(dev, type))
491 return -EINVAL;
492
Brice Goglin24334a12006-08-31 01:55:07 -0400493 return 0;
494}
495
496/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * pci_enable_msi - configure device's MSI capability structure
498 * @dev: pointer to the pci_dev data structure of MSI device function
499 *
500 * Setup the MSI capability structure of device function with
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700501 * a single MSI irq upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 * MSI mode enabled on its hardware device function. A return of zero
503 * indicates the successful setup of an entry zero with the new MSI
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700504 * irq or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 **/
506int pci_enable_msi(struct pci_dev* dev)
507{
Michael Ellermanb1e23032007-03-22 21:51:39 +1100508 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Michael Ellermanc9953a72007-04-05 17:19:08 +1000510 status = pci_msi_check_device(dev, 1, PCI_CAP_ID_MSI);
511 if (status)
512 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700514 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700516 /* Check whether driver already requested for MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800517 if (dev->msix_enabled) {
518 printk(KERN_INFO "PCI: %s: Can't enable MSI. "
519 "Device already has MSI-X enabled\n",
520 pci_name(dev));
521 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 status = msi_capability_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return status;
525}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100526EXPORT_SYMBOL(pci_enable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528void pci_disable_msi(struct pci_dev* dev)
529{
530 struct msi_desc *entry;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800531 int default_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100533 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700534 return;
535
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800536 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700537 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800538 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700539
Michael Ellerman314e77b2007-04-05 17:19:12 +1000540 BUG_ON(list_empty(&dev->msi_list));
541 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
542 if (!entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return;
544 }
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700545
Michael Ellermane387b9e2007-03-22 21:51:27 +1100546 default_irq = entry->msi_attrib.default_irq;
Michael Ellerman032de8e2007-04-18 19:39:22 +1000547 msi_free_irqs(dev);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100548
549 /* Restore dev->irq to its default pin-assertion irq */
550 dev->irq = default_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100552EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Michael Ellerman032de8e2007-04-18 19:39:22 +1000554static int msi_free_irqs(struct pci_dev* dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Michael Ellerman032de8e2007-04-18 19:39:22 +1000556 struct msi_desc *entry, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
David Millerb3b7cc72007-05-11 13:26:44 -0700558 list_for_each_entry(entry, &dev->msi_list, list) {
559 if (entry->irq)
560 BUG_ON(irq_has_action(entry->irq));
561 }
Michael Ellerman7ede9c12007-03-22 21:51:34 +1100562
Michael Ellerman032de8e2007-04-18 19:39:22 +1000563 arch_teardown_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Michael Ellerman032de8e2007-04-18 19:39:22 +1000565 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
566 if (entry->msi_attrib.type == PCI_CAP_ID_MSIX) {
Michael Ellerman032de8e2007-04-18 19:39:22 +1000567 writel(1, entry->mask_base + entry->msi_attrib.entry_nr
568 * PCI_MSIX_ENTRY_SIZE
569 + PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
Eric W. Biederman78b76112007-06-01 00:46:33 -0700570
571 if (list_is_last(&entry->list, &dev->msi_list))
572 iounmap(entry->mask_base);
Michael Ellerman032de8e2007-04-18 19:39:22 +1000573 }
574 list_del(&entry->list);
575 kfree(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
578 return 0;
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/**
582 * pci_enable_msix - configure device's MSI-X capability structure
583 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700584 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700585 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 *
587 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700588 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 * MSI-X mode enabled on its hardware device function. A return of zero
590 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700591 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * Or a return of > 0 indicates that driver request is exceeding the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700593 * of irqs available. Driver should use the returned value to re-send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * its request.
595 **/
596int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
597{
Eric W. Biederman92db6d12006-10-04 02:16:35 -0700598 int status, pos, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700599 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Michael Ellermanc9953a72007-04-05 17:19:08 +1000602 if (!entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -EINVAL;
604
Michael Ellermanc9953a72007-04-05 17:19:08 +1000605 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
606 if (status)
607 return status;
608
Grant Grundlerb64c05e2006-01-14 00:34:53 -0700609 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 pci_read_config_word(dev, msi_control_reg(pos), &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 nr_entries = multi_msix_capable(control);
612 if (nvec > nr_entries)
613 return -EINVAL;
614
615 /* Check for any invalid entries */
616 for (i = 0; i < nvec; i++) {
617 if (entries[i].entry >= nr_entries)
618 return -EINVAL; /* invalid entry */
619 for (j = i + 1; j < nvec; j++) {
620 if (entries[i].entry == entries[j].entry)
621 return -EINVAL; /* duplicate entry */
622 }
623 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700624 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700625
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700626 /* Check whether driver already requested for MSI irq */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800627 if (dev->msi_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 printk(KERN_INFO "PCI: %s: Can't enable MSI-X. "
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700629 "Device already has an MSI irq assigned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -EINVAL;
632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return status;
635}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100636EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100638static void msix_free_all_irqs(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Michael Ellerman032de8e2007-04-18 19:39:22 +1000640 msi_free_irqs(dev);
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100641}
642
643void pci_disable_msix(struct pci_dev* dev)
644{
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100645 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700646 return;
647
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800648 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700649 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800650 dev->msix_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700651
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100652 msix_free_all_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100654EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700657 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 * @dev: pointer to the pci_dev data structure of MSI(X) device function
659 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600660 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700661 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 * allocated for this device function, are reclaimed to unused state,
663 * which may be used later on.
664 **/
665void msi_remove_pci_irq_vectors(struct pci_dev* dev)
666{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (!pci_msi_enable || !dev)
668 return;
669
Michael Ellerman032de8e2007-04-18 19:39:22 +1000670 if (dev->msi_enabled)
671 msi_free_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100673 if (dev->msix_enabled)
674 msix_free_all_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700677void pci_no_msi(void)
678{
679 pci_msi_enable = 0;
680}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000681
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000682void pci_msi_init_pci_dev(struct pci_dev *dev)
683{
684 INIT_LIST_HEAD(&dev->msi_list);
685}
686
Michael Ellermanc9953a72007-04-05 17:19:08 +1000687
688/* Arch hooks */
689
690int __attribute__ ((weak))
691arch_msi_check_device(struct pci_dev* dev, int nvec, int type)
692{
693 return 0;
694}
695
Michael Ellerman9c831332007-04-18 19:39:21 +1000696int __attribute__ ((weak))
697arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *entry)
698{
699 return 0;
700}
701
702int __attribute__ ((weak))
703arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
704{
705 struct msi_desc *entry;
706 int ret;
707
708 list_for_each_entry(entry, &dev->msi_list, list) {
709 ret = arch_setup_msi_irq(dev, entry);
710 if (ret)
711 return ret;
712 }
713
714 return 0;
715}
Michael Ellerman032de8e2007-04-18 19:39:22 +1000716
717void __attribute__ ((weak)) arch_teardown_msi_irq(unsigned int irq)
718{
719 return;
720}
721
722void __attribute__ ((weak))
723arch_teardown_msi_irqs(struct pci_dev *dev)
724{
725 struct msi_desc *entry;
726
727 list_for_each_entry(entry, &dev->msi_list, list) {
728 if (entry->irq != 0)
729 arch_teardown_msi_irq(entry->irq);
730 }
731}