Merge branch 'x86/iommu' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / pci / msi.c
CommitLineData
1da177e4
LT
1/*
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
1ce03373 9#include <linux/err.h>
1da177e4
LT
10#include <linux/mm.h>
11#include <linux/irq.h>
12#include <linux/interrupt.h>
13#include <linux/init.h>
1da177e4 14#include <linux/ioport.h>
1da177e4
LT
15#include <linux/pci.h>
16#include <linux/proc_fs.h>
3b7d1921 17#include <linux/msi.h>
4fdadebc 18#include <linux/smp.h>
1da177e4
LT
19
20#include <asm/errno.h>
21#include <asm/io.h>
1da177e4
LT
22
23#include "pci.h"
24#include "msi.h"
25
1da177e4 26static int pci_msi_enable = 1;
1da177e4 27
6a9e7f20
AB
28/* Arch hooks */
29
30int __attribute__ ((weak))
31arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
32{
33 return 0;
34}
35
36int __attribute__ ((weak))
37arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *entry)
38{
39 return 0;
40}
41
42int __attribute__ ((weak))
43arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
44{
45 struct msi_desc *entry;
46 int ret;
47
48 list_for_each_entry(entry, &dev->msi_list, list) {
49 ret = arch_setup_msi_irq(dev, entry);
50 if (ret)
51 return ret;
52 }
53
54 return 0;
55}
56
57void __attribute__ ((weak)) arch_teardown_msi_irq(unsigned int irq)
58{
59 return;
60}
61
62void __attribute__ ((weak))
63arch_teardown_msi_irqs(struct pci_dev *dev)
64{
65 struct msi_desc *entry;
66
67 list_for_each_entry(entry, &dev->msi_list, list) {
68 if (entry->irq != 0)
69 arch_teardown_msi_irq(entry->irq);
70 }
71}
72
5ca5c02f 73static void __msi_set_enable(struct pci_dev *dev, int pos, int enable)
b1cbf4e4 74{
b1cbf4e4
EB
75 u16 control;
76
b1cbf4e4
EB
77 if (pos) {
78 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
79 control &= ~PCI_MSI_FLAGS_ENABLE;
80 if (enable)
81 control |= PCI_MSI_FLAGS_ENABLE;
82 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
83 }
84}
85
5ca5c02f
HS
86static void msi_set_enable(struct pci_dev *dev, int enable)
87{
88 __msi_set_enable(dev, pci_find_capability(dev, PCI_CAP_ID_MSI), enable);
89}
90
b1cbf4e4
EB
91static void msix_set_enable(struct pci_dev *dev, int enable)
92{
93 int pos;
94 u16 control;
95
96 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
97 if (pos) {
98 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
99 control &= ~PCI_MSIX_FLAGS_ENABLE;
100 if (enable)
101 control |= PCI_MSIX_FLAGS_ENABLE;
102 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
103 }
104}
105
988cbb15
MW
106static void msix_flush_writes(unsigned int irq)
107{
108 struct msi_desc *entry;
109
110 entry = get_irq_msi(irq);
111 BUG_ON(!entry || !entry->dev);
112 switch (entry->msi_attrib.type) {
113 case PCI_CAP_ID_MSI:
114 /* nothing to do */
115 break;
116 case PCI_CAP_ID_MSIX:
117 {
118 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
119 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
120 readl(entry->mask_base + offset);
121 break;
122 }
123 default:
124 BUG();
125 break;
126 }
127}
128
8e149e09 129static void msi_set_mask_bits(unsigned int irq, u32 mask, u32 flag)
1da177e4
LT
130{
131 struct msi_desc *entry;
132
5b912c10 133 entry = get_irq_msi(irq);
277bc33b 134 BUG_ON(!entry || !entry->dev);
1da177e4
LT
135 switch (entry->msi_attrib.type) {
136 case PCI_CAP_ID_MSI:
277bc33b 137 if (entry->msi_attrib.maskbit) {
c54c1879
ST
138 int pos;
139 u32 mask_bits;
277bc33b
EB
140
141 pos = (long)entry->mask_base;
142 pci_read_config_dword(entry->dev, pos, &mask_bits);
8e149e09
YL
143 mask_bits &= ~(mask);
144 mask_bits |= flag & mask;
277bc33b 145 pci_write_config_dword(entry->dev, pos, mask_bits);
58e0543e 146 } else {
5ca5c02f
HS
147 __msi_set_enable(entry->dev, entry->msi_attrib.pos,
148 !flag);
277bc33b 149 }
1da177e4 150 break;
1da177e4
LT
151 case PCI_CAP_ID_MSIX:
152 {
153 int offset = entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
154 PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET;
155 writel(flag, entry->mask_base + offset);
348e3fd1 156 readl(entry->mask_base + offset);
1da177e4
LT
157 break;
158 }
159 default:
277bc33b 160 BUG();
1da177e4
LT
161 break;
162 }
392ee1e6 163 entry->msi_attrib.masked = !!flag;
1da177e4
LT
164}
165
3b7d1921 166void read_msi_msg(unsigned int irq, struct msi_msg *msg)
1da177e4 167{
5b912c10 168 struct msi_desc *entry = get_irq_msi(irq);
0366f8f7
EB
169 switch(entry->msi_attrib.type) {
170 case PCI_CAP_ID_MSI:
171 {
172 struct pci_dev *dev = entry->dev;
173 int pos = entry->msi_attrib.pos;
174 u16 data;
175
176 pci_read_config_dword(dev, msi_lower_address_reg(pos),
177 &msg->address_lo);
178 if (entry->msi_attrib.is_64) {
179 pci_read_config_dword(dev, msi_upper_address_reg(pos),
180 &msg->address_hi);
181 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
182 } else {
183 msg->address_hi = 0;
cbf5d9e6 184 pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
0366f8f7
EB
185 }
186 msg->data = data;
187 break;
188 }
189 case PCI_CAP_ID_MSIX:
190 {
191 void __iomem *base;
192 base = entry->mask_base +
193 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
194
195 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
196 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
197 msg->data = readl(base + PCI_MSIX_ENTRY_DATA_OFFSET);
198 break;
199 }
200 default:
201 BUG();
202 }
203}
1da177e4 204
3b7d1921 205void write_msi_msg(unsigned int irq, struct msi_msg *msg)
0366f8f7 206{
5b912c10 207 struct msi_desc *entry = get_irq_msi(irq);
1da177e4
LT
208 switch (entry->msi_attrib.type) {
209 case PCI_CAP_ID_MSI:
210 {
0366f8f7
EB
211 struct pci_dev *dev = entry->dev;
212 int pos = entry->msi_attrib.pos;
213
214 pci_write_config_dword(dev, msi_lower_address_reg(pos),
215 msg->address_lo);
216 if (entry->msi_attrib.is_64) {
217 pci_write_config_dword(dev, msi_upper_address_reg(pos),
218 msg->address_hi);
219 pci_write_config_word(dev, msi_data_reg(pos, 1),
220 msg->data);
221 } else {
222 pci_write_config_word(dev, msi_data_reg(pos, 0),
223 msg->data);
224 }
1da177e4
LT
225 break;
226 }
227 case PCI_CAP_ID_MSIX:
228 {
0366f8f7
EB
229 void __iomem *base;
230 base = entry->mask_base +
231 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
232
233 writel(msg->address_lo,
234 base + PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET);
235 writel(msg->address_hi,
236 base + PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET);
237 writel(msg->data, base + PCI_MSIX_ENTRY_DATA_OFFSET);
1da177e4
LT
238 break;
239 }
240 default:
0366f8f7 241 BUG();
1da177e4 242 }
392ee1e6 243 entry->msg = *msg;
1da177e4 244}
0366f8f7 245
3b7d1921 246void mask_msi_irq(unsigned int irq)
1da177e4 247{
8e149e09 248 msi_set_mask_bits(irq, 1, 1);
988cbb15 249 msix_flush_writes(irq);
1da177e4
LT
250}
251
3b7d1921 252void unmask_msi_irq(unsigned int irq)
1da177e4 253{
8e149e09 254 msi_set_mask_bits(irq, 1, 0);
988cbb15 255 msix_flush_writes(irq);
1da177e4
LT
256}
257
032de8e2 258static int msi_free_irqs(struct pci_dev* dev);
c54c1879 259
1da177e4 260
1da177e4
LT
261static struct msi_desc* alloc_msi_entry(void)
262{
263 struct msi_desc *entry;
264
3e916c05 265 entry = kzalloc(sizeof(struct msi_desc), GFP_KERNEL);
1da177e4
LT
266 if (!entry)
267 return NULL;
268
4aa9bc95
ME
269 INIT_LIST_HEAD(&entry->list);
270 entry->irq = 0;
1da177e4
LT
271 entry->dev = NULL;
272
273 return entry;
274}
275
ba698ad4
DM
276static void pci_intx_for_msi(struct pci_dev *dev, int enable)
277{
278 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
279 pci_intx(dev, enable);
280}
281
8fed4b65 282static void __pci_restore_msi_state(struct pci_dev *dev)
41017f0c 283{
392ee1e6 284 int pos;
41017f0c 285 u16 control;
392ee1e6 286 struct msi_desc *entry;
41017f0c 287
b1cbf4e4
EB
288 if (!dev->msi_enabled)
289 return;
290
392ee1e6
EB
291 entry = get_irq_msi(dev->irq);
292 pos = entry->msi_attrib.pos;
41017f0c 293
ba698ad4 294 pci_intx_for_msi(dev, 0);
b1cbf4e4 295 msi_set_enable(dev, 0);
392ee1e6
EB
296 write_msi_msg(dev->irq, &entry->msg);
297 if (entry->msi_attrib.maskbit)
8e149e09
YL
298 msi_set_mask_bits(dev->irq, entry->msi_attrib.maskbits_mask,
299 entry->msi_attrib.masked);
392ee1e6
EB
300
301 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
302 control &= ~(PCI_MSI_FLAGS_QSIZE | PCI_MSI_FLAGS_ENABLE);
303 if (entry->msi_attrib.maskbit || !entry->msi_attrib.masked)
304 control |= PCI_MSI_FLAGS_ENABLE;
41017f0c 305 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
8fed4b65
ME
306}
307
308static void __pci_restore_msix_state(struct pci_dev *dev)
41017f0c 309{
41017f0c 310 int pos;
41017f0c 311 struct msi_desc *entry;
392ee1e6 312 u16 control;
41017f0c 313
ded86d8d
EB
314 if (!dev->msix_enabled)
315 return;
316
41017f0c 317 /* route the table */
ba698ad4 318 pci_intx_for_msi(dev, 0);
b1cbf4e4 319 msix_set_enable(dev, 0);
41017f0c 320
4aa9bc95
ME
321 list_for_each_entry(entry, &dev->msi_list, list) {
322 write_msi_msg(entry->irq, &entry->msg);
8e149e09 323 msi_set_mask_bits(entry->irq, 1, entry->msi_attrib.masked);
41017f0c 324 }
41017f0c 325
314e77b3
ME
326 BUG_ON(list_empty(&dev->msi_list));
327 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
4aa9bc95 328 pos = entry->msi_attrib.pos;
392ee1e6
EB
329 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
330 control &= ~PCI_MSIX_FLAGS_MASKALL;
331 control |= PCI_MSIX_FLAGS_ENABLE;
332 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
41017f0c 333}
8fed4b65
ME
334
335void pci_restore_msi_state(struct pci_dev *dev)
336{
337 __pci_restore_msi_state(dev);
338 __pci_restore_msix_state(dev);
339}
94688cf2 340EXPORT_SYMBOL_GPL(pci_restore_msi_state);
41017f0c 341
1da177e4
LT
342/**
343 * msi_capability_init - configure device's MSI capability structure
344 * @dev: pointer to the pci_dev data structure of MSI device function
345 *
eaae4b3a 346 * Setup the MSI capability structure of device function with a single
1ce03373 347 * MSI irq, regardless of device function is capable of handling
1da177e4 348 * multiple messages. A return of zero indicates the successful setup
1ce03373 349 * of an entry zero with the new MSI irq or non-zero for otherwise.
1da177e4
LT
350 **/
351static int msi_capability_init(struct pci_dev *dev)
352{
353 struct msi_desc *entry;
7fe3730d 354 int pos, ret;
1da177e4
LT
355 u16 control;
356
b1cbf4e4
EB
357 msi_set_enable(dev, 0); /* Ensure msi is disabled as I set it up */
358
1da177e4
LT
359 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
360 pci_read_config_word(dev, msi_control_reg(pos), &control);
361 /* MSI Entry Initialization */
f7feaca7
EB
362 entry = alloc_msi_entry();
363 if (!entry)
364 return -ENOMEM;
1ce03373 365
1da177e4 366 entry->msi_attrib.type = PCI_CAP_ID_MSI;
0366f8f7 367 entry->msi_attrib.is_64 = is_64bit_address(control);
1da177e4
LT
368 entry->msi_attrib.entry_nr = 0;
369 entry->msi_attrib.maskbit = is_mask_bit_support(control);
392ee1e6 370 entry->msi_attrib.masked = 1;
1ce03373 371 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
0366f8f7 372 entry->msi_attrib.pos = pos;
1da177e4
LT
373 if (is_mask_bit_support(control)) {
374 entry->mask_base = (void __iomem *)(long)msi_mask_bits_reg(pos,
375 is_64bit_address(control));
376 }
3b7d1921
EB
377 entry->dev = dev;
378 if (entry->msi_attrib.maskbit) {
379 unsigned int maskbits, temp;
380 /* All MSIs are unmasked by default, Mask them all */
381 pci_read_config_dword(dev,
382 msi_mask_bits_reg(pos, is_64bit_address(control)),
383 &maskbits);
384 temp = (1 << multi_msi_capable(control));
385 temp = ((temp - 1) & ~temp);
386 maskbits |= temp;
387 pci_write_config_dword(dev,
388 msi_mask_bits_reg(pos, is_64bit_address(control)),
389 maskbits);
8e149e09 390 entry->msi_attrib.maskbits_mask = temp;
3b7d1921 391 }
0dd11f9b 392 list_add_tail(&entry->list, &dev->msi_list);
9c831334 393
1da177e4 394 /* Configure MSI capability structure */
9c831334 395 ret = arch_setup_msi_irqs(dev, 1, PCI_CAP_ID_MSI);
7fe3730d 396 if (ret) {
032de8e2 397 msi_free_irqs(dev);
7fe3730d 398 return ret;
fd58e55f 399 }
f7feaca7 400
1da177e4 401 /* Set MSI enabled bits */
ba698ad4 402 pci_intx_for_msi(dev, 0);
b1cbf4e4
EB
403 msi_set_enable(dev, 1);
404 dev->msi_enabled = 1;
1da177e4 405
7fe3730d 406 dev->irq = entry->irq;
1da177e4
LT
407 return 0;
408}
409
410/**
411 * msix_capability_init - configure device's MSI-X capability
412 * @dev: pointer to the pci_dev data structure of MSI-X device function
8f7020d3
RD
413 * @entries: pointer to an array of struct msix_entry entries
414 * @nvec: number of @entries
1da177e4 415 *
eaae4b3a 416 * Setup the MSI-X capability structure of device function with a
1ce03373
EB
417 * single MSI-X irq. A return of zero indicates the successful setup of
418 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
1da177e4
LT
419 **/
420static int msix_capability_init(struct pci_dev *dev,
421 struct msix_entry *entries, int nvec)
422{
4aa9bc95 423 struct msi_desc *entry;
9c831334 424 int pos, i, j, nr_entries, ret;
a0454b40
GG
425 unsigned long phys_addr;
426 u32 table_offset;
1da177e4
LT
427 u16 control;
428 u8 bir;
429 void __iomem *base;
430
b1cbf4e4
EB
431 msix_set_enable(dev, 0);/* Ensure msix is disabled as I set it up */
432
1da177e4
LT
433 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
434 /* Request & Map MSI-X table region */
435 pci_read_config_word(dev, msi_control_reg(pos), &control);
436 nr_entries = multi_msix_capable(control);
a0454b40
GG
437
438 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
1da177e4 439 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
a0454b40
GG
440 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
441 phys_addr = pci_resource_start (dev, bir) + table_offset;
1da177e4
LT
442 base = ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
443 if (base == NULL)
444 return -ENOMEM;
445
446 /* MSI-X Table Initialization */
447 for (i = 0; i < nvec; i++) {
f7feaca7
EB
448 entry = alloc_msi_entry();
449 if (!entry)
1da177e4 450 break;
1da177e4
LT
451
452 j = entries[i].entry;
1da177e4 453 entry->msi_attrib.type = PCI_CAP_ID_MSIX;
0366f8f7 454 entry->msi_attrib.is_64 = 1;
1da177e4
LT
455 entry->msi_attrib.entry_nr = j;
456 entry->msi_attrib.maskbit = 1;
392ee1e6 457 entry->msi_attrib.masked = 1;
1ce03373 458 entry->msi_attrib.default_irq = dev->irq;
0366f8f7 459 entry->msi_attrib.pos = pos;
1da177e4
LT
460 entry->dev = dev;
461 entry->mask_base = base;
f7feaca7 462
0dd11f9b 463 list_add_tail(&entry->list, &dev->msi_list);
1da177e4 464 }
9c831334
ME
465
466 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
467 if (ret) {
468 int avail = 0;
469 list_for_each_entry(entry, &dev->msi_list, list) {
470 if (entry->irq != 0) {
471 avail++;
9c831334 472 }
1da177e4 473 }
9c831334 474
032de8e2
ME
475 msi_free_irqs(dev);
476
92db6d10
EB
477 /* If we had some success report the number of irqs
478 * we succeeded in setting up.
479 */
9c831334
ME
480 if (avail == 0)
481 avail = ret;
92db6d10 482 return avail;
1da177e4 483 }
9c831334
ME
484
485 i = 0;
486 list_for_each_entry(entry, &dev->msi_list, list) {
487 entries[i].vector = entry->irq;
488 set_irq_msi(entry->irq, entry);
489 i++;
490 }
1da177e4 491 /* Set MSI-X enabled bits */
ba698ad4 492 pci_intx_for_msi(dev, 0);
b1cbf4e4
EB
493 msix_set_enable(dev, 1);
494 dev->msix_enabled = 1;
1da177e4
LT
495
496 return 0;
497}
498
24334a12 499/**
17bbc12a 500 * pci_msi_check_device - check whether MSI may be enabled on a device
24334a12 501 * @dev: pointer to the pci_dev data structure of MSI device function
c9953a73 502 * @nvec: how many MSIs have been requested ?
b1e2303d 503 * @type: are we checking for MSI or MSI-X ?
24334a12 504 *
0306ebfa 505 * Look at global flags, the device itself, and its parent busses
17bbc12a
ME
506 * to determine if MSI/-X are supported for the device. If MSI/-X is
507 * supported return 0, else return an error code.
24334a12 508 **/
c9953a73 509static int pci_msi_check_device(struct pci_dev* dev, int nvec, int type)
24334a12
BG
510{
511 struct pci_bus *bus;
c9953a73 512 int ret;
24334a12 513
0306ebfa 514 /* MSI must be globally enabled and supported by the device */
24334a12
BG
515 if (!pci_msi_enable || !dev || dev->no_msi)
516 return -EINVAL;
517
314e77b3
ME
518 /*
519 * You can't ask to have 0 or less MSIs configured.
520 * a) it's stupid ..
521 * b) the list manipulation code assumes nvec >= 1.
522 */
523 if (nvec < 1)
524 return -ERANGE;
525
0306ebfa
BG
526 /* Any bridge which does NOT route MSI transactions from it's
527 * secondary bus to it's primary bus must set NO_MSI flag on
528 * the secondary pci_bus.
529 * We expect only arch-specific PCI host bus controller driver
530 * or quirks for specific PCI bridges to be setting NO_MSI.
531 */
24334a12
BG
532 for (bus = dev->bus; bus; bus = bus->parent)
533 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
534 return -EINVAL;
535
c9953a73
ME
536 ret = arch_msi_check_device(dev, nvec, type);
537 if (ret)
538 return ret;
539
b1e2303d
ME
540 if (!pci_find_capability(dev, type))
541 return -EINVAL;
542
24334a12
BG
543 return 0;
544}
545
1da177e4
LT
546/**
547 * pci_enable_msi - configure device's MSI capability structure
548 * @dev: pointer to the pci_dev data structure of MSI device function
549 *
550 * Setup the MSI capability structure of device function with
1ce03373 551 * a single MSI irq upon its software driver call to request for
1da177e4
LT
552 * MSI mode enabled on its hardware device function. A return of zero
553 * indicates the successful setup of an entry zero with the new MSI
1ce03373 554 * irq or non-zero for otherwise.
1da177e4
LT
555 **/
556int pci_enable_msi(struct pci_dev* dev)
557{
b1e2303d 558 int status;
1da177e4 559
c9953a73
ME
560 status = pci_msi_check_device(dev, 1, PCI_CAP_ID_MSI);
561 if (status)
562 return status;
1da177e4 563
ded86d8d 564 WARN_ON(!!dev->msi_enabled);
1da177e4 565
1ce03373 566 /* Check whether driver already requested for MSI-X irqs */
b1cbf4e4 567 if (dev->msix_enabled) {
80ccba11
BH
568 dev_info(&dev->dev, "can't enable MSI "
569 "(MSI-X already enabled)\n");
b1cbf4e4 570 return -EINVAL;
1da177e4
LT
571 }
572 status = msi_capability_init(dev);
1da177e4
LT
573 return status;
574}
4cc086fa 575EXPORT_SYMBOL(pci_enable_msi);
1da177e4 576
d52877c7 577void pci_msi_shutdown(struct pci_dev* dev)
1da177e4
LT
578{
579 struct msi_desc *entry;
1da177e4 580
128bc5fc 581 if (!pci_msi_enable || !dev || !dev->msi_enabled)
ded86d8d
EB
582 return;
583
b1cbf4e4 584 msi_set_enable(dev, 0);
ba698ad4 585 pci_intx_for_msi(dev, 1);
b1cbf4e4 586 dev->msi_enabled = 0;
7bd007e4 587
314e77b3
ME
588 BUG_ON(list_empty(&dev->msi_list));
589 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
8e149e09
YL
590 /* Return the the pci reset with msi irqs unmasked */
591 if (entry->msi_attrib.maskbit) {
592 u32 mask = entry->msi_attrib.maskbits_mask;
593 msi_set_mask_bits(dev->irq, mask, ~mask);
594 }
d52877c7 595 if (!entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI)
1da177e4 596 return;
e387b9ee
ME
597
598 /* Restore dev->irq to its default pin-assertion irq */
d52877c7
YL
599 dev->irq = entry->msi_attrib.default_irq;
600}
601void pci_disable_msi(struct pci_dev* dev)
602{
603 struct msi_desc *entry;
604
605 if (!pci_msi_enable || !dev || !dev->msi_enabled)
606 return;
607
608 pci_msi_shutdown(dev);
609
610 entry = list_entry(dev->msi_list.next, struct msi_desc, list);
611 if (!entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI)
612 return;
613
614 msi_free_irqs(dev);
1da177e4 615}
4cc086fa 616EXPORT_SYMBOL(pci_disable_msi);
1da177e4 617
032de8e2 618static int msi_free_irqs(struct pci_dev* dev)
1da177e4 619{
032de8e2 620 struct msi_desc *entry, *tmp;
7ede9c1f 621
b3b7cc7b
DM
622 list_for_each_entry(entry, &dev->msi_list, list) {
623 if (entry->irq)
624 BUG_ON(irq_has_action(entry->irq));
625 }
1da177e4 626
032de8e2 627 arch_teardown_msi_irqs(dev);
1da177e4 628
032de8e2
ME
629 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
630 if (entry->msi_attrib.type == PCI_CAP_ID_MSIX) {
032de8e2
ME
631 writel(1, entry->mask_base + entry->msi_attrib.entry_nr
632 * PCI_MSIX_ENTRY_SIZE
633 + PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET);
78b7611c
EB
634
635 if (list_is_last(&entry->list, &dev->msi_list))
636 iounmap(entry->mask_base);
032de8e2
ME
637 }
638 list_del(&entry->list);
639 kfree(entry);
1da177e4
LT
640 }
641
642 return 0;
643}
644
1da177e4
LT
645/**
646 * pci_enable_msix - configure device's MSI-X capability structure
647 * @dev: pointer to the pci_dev data structure of MSI-X device function
70549ad9 648 * @entries: pointer to an array of MSI-X entries
1ce03373 649 * @nvec: number of MSI-X irqs requested for allocation by device driver
1da177e4
LT
650 *
651 * Setup the MSI-X capability structure of device function with the number
1ce03373 652 * of requested irqs upon its software driver call to request for
1da177e4
LT
653 * MSI-X mode enabled on its hardware device function. A return of zero
654 * indicates the successful configuration of MSI-X capability structure
1ce03373 655 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
1da177e4 656 * Or a return of > 0 indicates that driver request is exceeding the number
1ce03373 657 * of irqs available. Driver should use the returned value to re-send
1da177e4
LT
658 * its request.
659 **/
660int pci_enable_msix(struct pci_dev* dev, struct msix_entry *entries, int nvec)
661{
92db6d10 662 int status, pos, nr_entries;
ded86d8d 663 int i, j;
1da177e4 664 u16 control;
1da177e4 665
c9953a73 666 if (!entries)
1da177e4
LT
667 return -EINVAL;
668
c9953a73
ME
669 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
670 if (status)
671 return status;
672
b64c05e7 673 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1da177e4 674 pci_read_config_word(dev, msi_control_reg(pos), &control);
1da177e4
LT
675 nr_entries = multi_msix_capable(control);
676 if (nvec > nr_entries)
677 return -EINVAL;
678
679 /* Check for any invalid entries */
680 for (i = 0; i < nvec; i++) {
681 if (entries[i].entry >= nr_entries)
682 return -EINVAL; /* invalid entry */
683 for (j = i + 1; j < nvec; j++) {
684 if (entries[i].entry == entries[j].entry)
685 return -EINVAL; /* duplicate entry */
686 }
687 }
ded86d8d 688 WARN_ON(!!dev->msix_enabled);
7bd007e4 689
1ce03373 690 /* Check whether driver already requested for MSI irq */
b1cbf4e4 691 if (dev->msi_enabled) {
80ccba11
BH
692 dev_info(&dev->dev, "can't enable MSI-X "
693 "(MSI IRQ already assigned)\n");
1da177e4
LT
694 return -EINVAL;
695 }
1da177e4 696 status = msix_capability_init(dev, entries, nvec);
1da177e4
LT
697 return status;
698}
4cc086fa 699EXPORT_SYMBOL(pci_enable_msix);
1da177e4 700
fc4afc7b 701static void msix_free_all_irqs(struct pci_dev *dev)
1da177e4 702{
032de8e2 703 msi_free_irqs(dev);
fc4afc7b
ME
704}
705
d52877c7 706void pci_msix_shutdown(struct pci_dev* dev)
fc4afc7b 707{
128bc5fc 708 if (!pci_msi_enable || !dev || !dev->msix_enabled)
ded86d8d
EB
709 return;
710
b1cbf4e4 711 msix_set_enable(dev, 0);
ba698ad4 712 pci_intx_for_msi(dev, 1);
b1cbf4e4 713 dev->msix_enabled = 0;
d52877c7
YL
714}
715void pci_disable_msix(struct pci_dev* dev)
716{
717 if (!pci_msi_enable || !dev || !dev->msix_enabled)
718 return;
719
720 pci_msix_shutdown(dev);
7bd007e4 721
fc4afc7b 722 msix_free_all_irqs(dev);
1da177e4 723}
4cc086fa 724EXPORT_SYMBOL(pci_disable_msix);
1da177e4
LT
725
726/**
1ce03373 727 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
1da177e4
LT
728 * @dev: pointer to the pci_dev data structure of MSI(X) device function
729 *
eaae4b3a 730 * Being called during hotplug remove, from which the device function
1ce03373 731 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
1da177e4
LT
732 * allocated for this device function, are reclaimed to unused state,
733 * which may be used later on.
734 **/
735void msi_remove_pci_irq_vectors(struct pci_dev* dev)
736{
1da177e4
LT
737 if (!pci_msi_enable || !dev)
738 return;
739
032de8e2
ME
740 if (dev->msi_enabled)
741 msi_free_irqs(dev);
1da177e4 742
fc4afc7b
ME
743 if (dev->msix_enabled)
744 msix_free_all_irqs(dev);
1da177e4
LT
745}
746
309e57df
MW
747void pci_no_msi(void)
748{
749 pci_msi_enable = 0;
750}
c9953a73 751
4aa9bc95
ME
752void pci_msi_init_pci_dev(struct pci_dev *dev)
753{
754 INIT_LIST_HEAD(&dev->msi_list);
755}