PCI/MSI: Rename write_msi_msg() to pci_write_msi_msg()
[deliverable/linux.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>
363c75db 13#include <linux/export.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>
500559a9
HS
19#include <linux/errno.h>
20#include <linux/io.h>
5a0e3ad6 21#include <linux/slab.h>
1da177e4
LT
22
23#include "pci.h"
1da177e4 24
1da177e4 25static int pci_msi_enable = 1;
38737d82 26int pci_msi_ignore_mask;
1da177e4 27
527eee29
BH
28#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
29
30
6a9e7f20
AB
31/* Arch hooks */
32
262a2baf
YW
33struct msi_controller * __weak pcibios_msi_controller(struct pci_dev *dev)
34{
35 return NULL;
36}
37
38static struct msi_controller *pci_msi_controller(struct pci_dev *dev)
39{
40 struct msi_controller *msi_ctrl = dev->bus->msi;
41
42 if (msi_ctrl)
43 return msi_ctrl;
44
45 return pcibios_msi_controller(dev);
46}
47
4287d824
TP
48int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
49{
262a2baf 50 struct msi_controller *chip = pci_msi_controller(dev);
0cbdcfcf
TR
51 int err;
52
53 if (!chip || !chip->setup_irq)
54 return -EINVAL;
55
56 err = chip->setup_irq(chip, dev, desc);
57 if (err < 0)
58 return err;
59
60 irq_set_chip_data(desc->irq, chip);
61
62 return 0;
4287d824
TP
63}
64
65void __weak arch_teardown_msi_irq(unsigned int irq)
6a9e7f20 66{
c2791b80 67 struct msi_controller *chip = irq_get_chip_data(irq);
0cbdcfcf
TR
68
69 if (!chip || !chip->teardown_irq)
70 return;
71
72 chip->teardown_irq(chip, irq);
6a9e7f20
AB
73}
74
4287d824 75int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
6a9e7f20
AB
76{
77 struct msi_desc *entry;
78 int ret;
79
1c8d7b0a
MW
80 /*
81 * If an architecture wants to support multiple MSI, it needs to
82 * override arch_setup_msi_irqs()
83 */
84 if (type == PCI_CAP_ID_MSI && nvec > 1)
85 return 1;
86
6a9e7f20
AB
87 list_for_each_entry(entry, &dev->msi_list, list) {
88 ret = arch_setup_msi_irq(dev, entry);
b5fbf533 89 if (ret < 0)
6a9e7f20 90 return ret;
b5fbf533
ME
91 if (ret > 0)
92 return -ENOSPC;
6a9e7f20
AB
93 }
94
95 return 0;
96}
1525bf0d 97
4287d824
TP
98/*
99 * We have a default implementation available as a separate non-weak
100 * function, as it is used by the Xen x86 PCI code
101 */
1525bf0d 102void default_teardown_msi_irqs(struct pci_dev *dev)
6a9e7f20 103{
63a7b17e 104 int i;
6a9e7f20
AB
105 struct msi_desc *entry;
106
63a7b17e
JL
107 list_for_each_entry(entry, &dev->msi_list, list)
108 if (entry->irq)
109 for (i = 0; i < entry->nvec_used; i++)
110 arch_teardown_msi_irq(entry->irq + i);
6a9e7f20
AB
111}
112
4287d824
TP
113void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
114{
115 return default_teardown_msi_irqs(dev);
116}
76ccc297 117
ac8344c4 118static void default_restore_msi_irq(struct pci_dev *dev, int irq)
76ccc297
KRW
119{
120 struct msi_desc *entry;
121
122 entry = NULL;
123 if (dev->msix_enabled) {
124 list_for_each_entry(entry, &dev->msi_list, list) {
125 if (irq == entry->irq)
126 break;
127 }
128 } else if (dev->msi_enabled) {
129 entry = irq_get_msi_desc(irq);
130 }
131
132 if (entry)
83a18912 133 __pci_write_msi_msg(entry, &entry->msg);
76ccc297 134}
4287d824 135
ac8344c4 136void __weak arch_restore_msi_irqs(struct pci_dev *dev)
4287d824 137{
ac8344c4 138 return default_restore_msi_irqs(dev);
4287d824 139}
76ccc297 140
e375b561 141static void msi_set_enable(struct pci_dev *dev, int enable)
b1cbf4e4 142{
b1cbf4e4
EB
143 u16 control;
144
e375b561 145 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
110828c9
MW
146 control &= ~PCI_MSI_FLAGS_ENABLE;
147 if (enable)
148 control |= PCI_MSI_FLAGS_ENABLE;
e375b561 149 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
5ca5c02f
HS
150}
151
66f0d0c4 152static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
b1cbf4e4 153{
66f0d0c4 154 u16 ctrl;
b1cbf4e4 155
66f0d0c4
YW
156 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
157 ctrl &= ~clear;
158 ctrl |= set;
159 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
b1cbf4e4
EB
160}
161
bffac3c5
MW
162static inline __attribute_const__ u32 msi_mask(unsigned x)
163{
0b49ec37
MW
164 /* Don't shift by >= width of type */
165 if (x >= 5)
166 return 0xffffffff;
167 return (1 << (1 << x)) - 1;
bffac3c5
MW
168}
169
ce6fce42
MW
170/*
171 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
172 * mask all MSI interrupts by clearing the MSI enable bit does not work
173 * reliably as devices without an INTx disable bit will then generate a
174 * level IRQ which will never be cleared.
ce6fce42 175 */
03f56e42 176u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
1da177e4 177{
f2440d9a 178 u32 mask_bits = desc->masked;
1da177e4 179
38737d82 180 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
12abb8ba 181 return 0;
f2440d9a
MW
182
183 mask_bits &= ~mask;
184 mask_bits |= flag;
185 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
12abb8ba
HS
186
187 return mask_bits;
188}
189
190static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
191{
03f56e42 192 desc->masked = __msi_mask_irq(desc, mask, flag);
f2440d9a
MW
193}
194
195/*
196 * This internal function does not flush PCI writes to the device.
197 * All users must ensure that they read from the device before either
198 * assuming that the device state is up to date, or returning out of this
199 * file. This saves a few milliseconds when initialising devices with lots
200 * of MSI-X interrupts.
201 */
03f56e42 202u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
f2440d9a
MW
203{
204 u32 mask_bits = desc->masked;
205 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
2c21fd4b 206 PCI_MSIX_ENTRY_VECTOR_CTRL;
38737d82
YW
207
208 if (pci_msi_ignore_mask)
209 return 0;
210
8d805286
SY
211 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
212 if (flag)
213 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
f2440d9a 214 writel(mask_bits, desc->mask_base + offset);
12abb8ba
HS
215
216 return mask_bits;
217}
218
219static void msix_mask_irq(struct msi_desc *desc, u32 flag)
220{
03f56e42 221 desc->masked = __msix_mask_irq(desc, flag);
f2440d9a 222}
24d27553 223
1c9db525 224static void msi_set_mask_bit(struct irq_data *data, u32 flag)
f2440d9a 225{
1c9db525 226 struct msi_desc *desc = irq_data_get_msi(data);
24d27553 227
f2440d9a
MW
228 if (desc->msi_attrib.is_msix) {
229 msix_mask_irq(desc, flag);
230 readl(desc->mask_base); /* Flush write to device */
231 } else {
a281b788 232 unsigned offset = data->irq - desc->irq;
1c8d7b0a 233 msi_mask_irq(desc, 1 << offset, flag << offset);
1da177e4 234 }
f2440d9a
MW
235}
236
1c9db525 237void mask_msi_irq(struct irq_data *data)
f2440d9a 238{
1c9db525 239 msi_set_mask_bit(data, 1);
f2440d9a
MW
240}
241
1c9db525 242void unmask_msi_irq(struct irq_data *data)
f2440d9a 243{
1c9db525 244 msi_set_mask_bit(data, 0);
1da177e4
LT
245}
246
ac8344c4
D
247void default_restore_msi_irqs(struct pci_dev *dev)
248{
249 struct msi_desc *entry;
250
3f3cecae 251 list_for_each_entry(entry, &dev->msi_list, list)
ac8344c4 252 default_restore_msi_irq(dev, entry->irq);
ac8344c4
D
253}
254
891d4a48 255void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
1da177e4 256{
30da5524
BH
257 BUG_ON(entry->dev->current_state != PCI_D0);
258
259 if (entry->msi_attrib.is_msix) {
260 void __iomem *base = entry->mask_base +
261 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
262
263 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
264 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
265 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
266 } else {
267 struct pci_dev *dev = entry->dev;
f5322169 268 int pos = dev->msi_cap;
30da5524
BH
269 u16 data;
270
9925ad0c
BH
271 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
272 &msg->address_lo);
30da5524 273 if (entry->msi_attrib.is_64) {
9925ad0c
BH
274 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
275 &msg->address_hi);
2f221349 276 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
30da5524
BH
277 } else {
278 msg->address_hi = 0;
2f221349 279 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
30da5524
BH
280 }
281 msg->data = data;
282 }
283}
284
39431acb 285void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
30da5524 286{
30da5524 287 /* Assert that the cache is valid, assuming that
fcd097f3
BH
288 * valid messages are not all-zeroes. */
289 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
290 entry->msg.data));
0366f8f7 291
fcd097f3 292 *msg = entry->msg;
0366f8f7 293}
1da177e4 294
30da5524 295void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
0366f8f7 296{
dced35ae 297 struct msi_desc *entry = irq_get_msi_desc(irq);
3145e941 298
39431acb 299 __get_cached_msi_msg(entry, msg);
3145e941 300}
3b307ffe 301EXPORT_SYMBOL_GPL(get_cached_msi_msg);
3145e941 302
83a18912 303void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
3145e941 304{
fcd097f3
BH
305 if (entry->dev->current_state != PCI_D0) {
306 /* Don't touch the hardware now */
307 } else if (entry->msi_attrib.is_msix) {
24d27553
MW
308 void __iomem *base;
309 base = entry->mask_base +
310 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
311
2c21fd4b
HS
312 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
313 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
314 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
24d27553 315 } else {
0366f8f7 316 struct pci_dev *dev = entry->dev;
f5322169 317 int pos = dev->msi_cap;
1c8d7b0a
MW
318 u16 msgctl;
319
f84ecd28 320 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
1c8d7b0a
MW
321 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
322 msgctl |= entry->msi_attrib.multiple << 4;
f84ecd28 323 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
0366f8f7 324
9925ad0c
BH
325 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
326 msg->address_lo);
0366f8f7 327 if (entry->msi_attrib.is_64) {
9925ad0c
BH
328 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
329 msg->address_hi);
2f221349
BH
330 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
331 msg->data);
0366f8f7 332 } else {
2f221349
BH
333 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
334 msg->data);
0366f8f7 335 }
1da177e4 336 }
392ee1e6 337 entry->msg = *msg;
1da177e4 338}
0366f8f7 339
83a18912 340void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
3145e941 341{
dced35ae 342 struct msi_desc *entry = irq_get_msi_desc(irq);
3145e941 343
83a18912 344 __pci_write_msi_msg(entry, msg);
3145e941 345}
83a18912 346EXPORT_SYMBOL_GPL(pci_write_msi_msg);
3145e941 347
f56e4481
HS
348static void free_msi_irqs(struct pci_dev *dev)
349{
350 struct msi_desc *entry, *tmp;
1c51b50c
GKH
351 struct attribute **msi_attrs;
352 struct device_attribute *dev_attr;
63a7b17e 353 int i, count = 0;
f56e4481 354
63a7b17e
JL
355 list_for_each_entry(entry, &dev->msi_list, list)
356 if (entry->irq)
357 for (i = 0; i < entry->nvec_used; i++)
358 BUG_ON(irq_has_action(entry->irq + i));
f56e4481
HS
359
360 arch_teardown_msi_irqs(dev);
361
362 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
363 if (entry->msi_attrib.is_msix) {
364 if (list_is_last(&entry->list, &dev->msi_list))
365 iounmap(entry->mask_base);
366 }
424eb391 367
f56e4481
HS
368 list_del(&entry->list);
369 kfree(entry);
370 }
1c51b50c
GKH
371
372 if (dev->msi_irq_groups) {
373 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
374 msi_attrs = dev->msi_irq_groups[0]->attrs;
b701c0b1 375 while (msi_attrs[count]) {
1c51b50c
GKH
376 dev_attr = container_of(msi_attrs[count],
377 struct device_attribute, attr);
378 kfree(dev_attr->attr.name);
379 kfree(dev_attr);
380 ++count;
381 }
382 kfree(msi_attrs);
383 kfree(dev->msi_irq_groups[0]);
384 kfree(dev->msi_irq_groups);
385 dev->msi_irq_groups = NULL;
386 }
f56e4481 387}
c54c1879 388
379f5327 389static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
1da177e4 390{
379f5327
MW
391 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
392 if (!desc)
1da177e4
LT
393 return NULL;
394
379f5327
MW
395 INIT_LIST_HEAD(&desc->list);
396 desc->dev = dev;
1da177e4 397
379f5327 398 return desc;
1da177e4
LT
399}
400
ba698ad4
DM
401static void pci_intx_for_msi(struct pci_dev *dev, int enable)
402{
403 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
404 pci_intx(dev, enable);
405}
406
8fed4b65 407static void __pci_restore_msi_state(struct pci_dev *dev)
41017f0c 408{
41017f0c 409 u16 control;
392ee1e6 410 struct msi_desc *entry;
41017f0c 411
b1cbf4e4
EB
412 if (!dev->msi_enabled)
413 return;
414
dced35ae 415 entry = irq_get_msi_desc(dev->irq);
41017f0c 416
ba698ad4 417 pci_intx_for_msi(dev, 0);
e375b561 418 msi_set_enable(dev, 0);
ac8344c4 419 arch_restore_msi_irqs(dev);
392ee1e6 420
f5322169 421 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
31ea5d4d
YW
422 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
423 entry->masked);
abad2ec9 424 control &= ~PCI_MSI_FLAGS_QSIZE;
1c8d7b0a 425 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
f5322169 426 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
8fed4b65
ME
427}
428
429static void __pci_restore_msix_state(struct pci_dev *dev)
41017f0c 430{
41017f0c 431 struct msi_desc *entry;
41017f0c 432
ded86d8d
EB
433 if (!dev->msix_enabled)
434 return;
f598282f 435 BUG_ON(list_empty(&dev->msi_list));
ded86d8d 436
41017f0c 437 /* route the table */
ba698ad4 438 pci_intx_for_msi(dev, 0);
66f0d0c4
YW
439 msix_clear_and_set_ctrl(dev, 0,
440 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
41017f0c 441
ac8344c4 442 arch_restore_msi_irqs(dev);
3f3cecae 443 list_for_each_entry(entry, &dev->msi_list, list)
f2440d9a 444 msix_mask_irq(entry, entry->masked);
41017f0c 445
66f0d0c4 446 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
41017f0c 447}
8fed4b65
ME
448
449void pci_restore_msi_state(struct pci_dev *dev)
450{
451 __pci_restore_msi_state(dev);
452 __pci_restore_msix_state(dev);
453}
94688cf2 454EXPORT_SYMBOL_GPL(pci_restore_msi_state);
41017f0c 455
1c51b50c 456static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
da8d1c8b
NH
457 char *buf)
458{
1c51b50c
GKH
459 struct msi_desc *entry;
460 unsigned long irq;
461 int retval;
da8d1c8b 462
1c51b50c
GKH
463 retval = kstrtoul(attr->attr.name, 10, &irq);
464 if (retval)
465 return retval;
da8d1c8b 466
e11ece5a
YW
467 entry = irq_get_msi_desc(irq);
468 if (entry)
469 return sprintf(buf, "%s\n",
470 entry->msi_attrib.is_msix ? "msix" : "msi");
471
1c51b50c 472 return -ENODEV;
da8d1c8b
NH
473}
474
da8d1c8b
NH
475static int populate_msi_sysfs(struct pci_dev *pdev)
476{
1c51b50c
GKH
477 struct attribute **msi_attrs;
478 struct attribute *msi_attr;
479 struct device_attribute *msi_dev_attr;
480 struct attribute_group *msi_irq_group;
481 const struct attribute_group **msi_irq_groups;
da8d1c8b 482 struct msi_desc *entry;
1c51b50c
GKH
483 int ret = -ENOMEM;
484 int num_msi = 0;
da8d1c8b
NH
485 int count = 0;
486
1c51b50c 487 /* Determine how many msi entries we have */
3f3cecae 488 list_for_each_entry(entry, &pdev->msi_list, list)
1c51b50c 489 ++num_msi;
1c51b50c
GKH
490 if (!num_msi)
491 return 0;
da8d1c8b 492
1c51b50c
GKH
493 /* Dynamically create the MSI attributes for the PCI device */
494 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
495 if (!msi_attrs)
496 return -ENOMEM;
da8d1c8b 497 list_for_each_entry(entry, &pdev->msi_list, list) {
1c51b50c 498 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
1406276c 499 if (!msi_dev_attr)
1c51b50c 500 goto error_attrs;
1406276c 501 msi_attrs[count] = &msi_dev_attr->attr;
86bb4f69 502
1c51b50c 503 sysfs_attr_init(&msi_dev_attr->attr);
1406276c
JB
504 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
505 entry->irq);
506 if (!msi_dev_attr->attr.name)
507 goto error_attrs;
1c51b50c
GKH
508 msi_dev_attr->attr.mode = S_IRUGO;
509 msi_dev_attr->show = msi_mode_show;
1c51b50c 510 ++count;
da8d1c8b
NH
511 }
512
1c51b50c
GKH
513 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
514 if (!msi_irq_group)
515 goto error_attrs;
516 msi_irq_group->name = "msi_irqs";
517 msi_irq_group->attrs = msi_attrs;
518
519 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
520 if (!msi_irq_groups)
521 goto error_irq_group;
522 msi_irq_groups[0] = msi_irq_group;
523
524 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
525 if (ret)
526 goto error_irq_groups;
527 pdev->msi_irq_groups = msi_irq_groups;
528
da8d1c8b
NH
529 return 0;
530
1c51b50c
GKH
531error_irq_groups:
532 kfree(msi_irq_groups);
533error_irq_group:
534 kfree(msi_irq_group);
535error_attrs:
536 count = 0;
537 msi_attr = msi_attrs[count];
538 while (msi_attr) {
539 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
540 kfree(msi_attr->name);
541 kfree(msi_dev_attr);
542 ++count;
543 msi_attr = msi_attrs[count];
da8d1c8b 544 }
29237756 545 kfree(msi_attrs);
da8d1c8b
NH
546 return ret;
547}
548
63a7b17e 549static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
d873b4d4
YW
550{
551 u16 control;
552 struct msi_desc *entry;
553
554 /* MSI Entry Initialization */
555 entry = alloc_msi_entry(dev);
556 if (!entry)
557 return NULL;
558
559 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
560
561 entry->msi_attrib.is_msix = 0;
562 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
563 entry->msi_attrib.entry_nr = 0;
564 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
565 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
d873b4d4 566 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
63a7b17e
JL
567 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
568 entry->nvec_used = nvec;
d873b4d4
YW
569
570 if (control & PCI_MSI_FLAGS_64BIT)
571 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
572 else
573 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
574
575 /* Save the initial mask status */
576 if (entry->msi_attrib.maskbit)
577 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
578
579 return entry;
580}
581
1da177e4
LT
582/**
583 * msi_capability_init - configure device's MSI capability structure
584 * @dev: pointer to the pci_dev data structure of MSI device function
1c8d7b0a 585 * @nvec: number of interrupts to allocate
1da177e4 586 *
1c8d7b0a
MW
587 * Setup the MSI capability structure of the device with the requested
588 * number of interrupts. A return value of zero indicates the successful
589 * setup of an entry with the new MSI irq. A negative return value indicates
590 * an error, and a positive return value indicates the number of interrupts
591 * which could have been allocated.
592 */
593static int msi_capability_init(struct pci_dev *dev, int nvec)
1da177e4
LT
594{
595 struct msi_desc *entry;
f465136d 596 int ret;
f2440d9a 597 unsigned mask;
1da177e4 598
e375b561 599 msi_set_enable(dev, 0); /* Disable MSI during set up */
110828c9 600
63a7b17e 601 entry = msi_setup_entry(dev, nvec);
f7feaca7
EB
602 if (!entry)
603 return -ENOMEM;
1ce03373 604
f2440d9a 605 /* All MSIs are unmasked by default, Mask them all */
31ea5d4d 606 mask = msi_mask(entry->msi_attrib.multi_cap);
f2440d9a
MW
607 msi_mask_irq(entry, mask, mask);
608
0dd11f9b 609 list_add_tail(&entry->list, &dev->msi_list);
9c831334 610
1da177e4 611 /* Configure MSI capability structure */
1c8d7b0a 612 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
7fe3730d 613 if (ret) {
7ba1930d 614 msi_mask_irq(entry, mask, ~mask);
f56e4481 615 free_msi_irqs(dev);
7fe3730d 616 return ret;
fd58e55f 617 }
f7feaca7 618
da8d1c8b
NH
619 ret = populate_msi_sysfs(dev);
620 if (ret) {
621 msi_mask_irq(entry, mask, ~mask);
622 free_msi_irqs(dev);
623 return ret;
624 }
625
1da177e4 626 /* Set MSI enabled bits */
ba698ad4 627 pci_intx_for_msi(dev, 0);
e375b561 628 msi_set_enable(dev, 1);
b1cbf4e4 629 dev->msi_enabled = 1;
1da177e4 630
7fe3730d 631 dev->irq = entry->irq;
1da177e4
LT
632 return 0;
633}
634
520fe9dc 635static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
5a05a9d8 636{
4302e0fb 637 resource_size_t phys_addr;
5a05a9d8
HS
638 u32 table_offset;
639 u8 bir;
640
909094c6
BH
641 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
642 &table_offset);
4d18760c
BH
643 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
644 table_offset &= PCI_MSIX_TABLE_OFFSET;
5a05a9d8
HS
645 phys_addr = pci_resource_start(dev, bir) + table_offset;
646
647 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
648}
649
520fe9dc
GS
650static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
651 struct msix_entry *entries, int nvec)
d9d7070e
HS
652{
653 struct msi_desc *entry;
654 int i;
655
656 for (i = 0; i < nvec; i++) {
657 entry = alloc_msi_entry(dev);
658 if (!entry) {
659 if (!i)
660 iounmap(base);
661 else
662 free_msi_irqs(dev);
663 /* No enough memory. Don't try again */
664 return -ENOMEM;
665 }
666
667 entry->msi_attrib.is_msix = 1;
668 entry->msi_attrib.is_64 = 1;
669 entry->msi_attrib.entry_nr = entries[i].entry;
670 entry->msi_attrib.default_irq = dev->irq;
d9d7070e 671 entry->mask_base = base;
63a7b17e 672 entry->nvec_used = 1;
d9d7070e
HS
673
674 list_add_tail(&entry->list, &dev->msi_list);
675 }
676
677 return 0;
678}
679
75cb3426 680static void msix_program_entries(struct pci_dev *dev,
520fe9dc 681 struct msix_entry *entries)
75cb3426
HS
682{
683 struct msi_desc *entry;
684 int i = 0;
685
686 list_for_each_entry(entry, &dev->msi_list, list) {
687 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
688 PCI_MSIX_ENTRY_VECTOR_CTRL;
689
690 entries[i].vector = entry->irq;
75cb3426
HS
691 entry->masked = readl(entry->mask_base + offset);
692 msix_mask_irq(entry, 1);
693 i++;
694 }
695}
696
1da177e4
LT
697/**
698 * msix_capability_init - configure device's MSI-X capability
699 * @dev: pointer to the pci_dev data structure of MSI-X device function
8f7020d3
RD
700 * @entries: pointer to an array of struct msix_entry entries
701 * @nvec: number of @entries
1da177e4 702 *
eaae4b3a 703 * Setup the MSI-X capability structure of device function with a
1ce03373
EB
704 * single MSI-X irq. A return of zero indicates the successful setup of
705 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
1da177e4
LT
706 **/
707static int msix_capability_init(struct pci_dev *dev,
708 struct msix_entry *entries, int nvec)
709{
520fe9dc 710 int ret;
5a05a9d8 711 u16 control;
1da177e4
LT
712 void __iomem *base;
713
f598282f 714 /* Ensure MSI-X is disabled while it is set up */
66f0d0c4 715 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
f598282f 716
66f0d0c4 717 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
1da177e4 718 /* Request & Map MSI-X table region */
527eee29 719 base = msix_map_region(dev, msix_table_size(control));
5a05a9d8 720 if (!base)
1da177e4
LT
721 return -ENOMEM;
722
520fe9dc 723 ret = msix_setup_entries(dev, base, entries, nvec);
d9d7070e
HS
724 if (ret)
725 return ret;
9c831334
ME
726
727 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
583871d4 728 if (ret)
2adc7907 729 goto out_avail;
9c831334 730
f598282f
MW
731 /*
732 * Some devices require MSI-X to be enabled before we can touch the
733 * MSI-X registers. We need to mask all the vectors to prevent
734 * interrupts coming in before they're fully set up.
735 */
66f0d0c4
YW
736 msix_clear_and_set_ctrl(dev, 0,
737 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
f598282f 738
75cb3426 739 msix_program_entries(dev, entries);
f598282f 740
da8d1c8b 741 ret = populate_msi_sysfs(dev);
2adc7907
AG
742 if (ret)
743 goto out_free;
da8d1c8b 744
f598282f 745 /* Set MSI-X enabled bits and unmask the function */
ba698ad4 746 pci_intx_for_msi(dev, 0);
b1cbf4e4 747 dev->msix_enabled = 1;
1da177e4 748
66f0d0c4 749 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
8d181018 750
1da177e4 751 return 0;
583871d4 752
2adc7907 753out_avail:
583871d4
HS
754 if (ret < 0) {
755 /*
756 * If we had some success, report the number of irqs
757 * we succeeded in setting up.
758 */
d9d7070e 759 struct msi_desc *entry;
583871d4
HS
760 int avail = 0;
761
762 list_for_each_entry(entry, &dev->msi_list, list) {
763 if (entry->irq != 0)
764 avail++;
765 }
766 if (avail != 0)
767 ret = avail;
768 }
769
2adc7907 770out_free:
583871d4
HS
771 free_msi_irqs(dev);
772
773 return ret;
1da177e4
LT
774}
775
24334a12 776/**
a06cd74c 777 * pci_msi_supported - check whether MSI may be enabled on a device
24334a12 778 * @dev: pointer to the pci_dev data structure of MSI device function
c9953a73 779 * @nvec: how many MSIs have been requested ?
24334a12 780 *
f7625980 781 * Look at global flags, the device itself, and its parent buses
17bbc12a 782 * to determine if MSI/-X are supported for the device. If MSI/-X is
a06cd74c 783 * supported return 1, else return 0.
24334a12 784 **/
a06cd74c 785static int pci_msi_supported(struct pci_dev *dev, int nvec)
24334a12
BG
786{
787 struct pci_bus *bus;
788
0306ebfa 789 /* MSI must be globally enabled and supported by the device */
27e20603 790 if (!pci_msi_enable)
a06cd74c 791 return 0;
27e20603
AG
792
793 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
a06cd74c 794 return 0;
24334a12 795
314e77b3
ME
796 /*
797 * You can't ask to have 0 or less MSIs configured.
798 * a) it's stupid ..
799 * b) the list manipulation code assumes nvec >= 1.
800 */
801 if (nvec < 1)
a06cd74c 802 return 0;
314e77b3 803
500559a9
HS
804 /*
805 * Any bridge which does NOT route MSI transactions from its
806 * secondary bus to its primary bus must set NO_MSI flag on
0306ebfa
BG
807 * the secondary pci_bus.
808 * We expect only arch-specific PCI host bus controller driver
809 * or quirks for specific PCI bridges to be setting NO_MSI.
810 */
24334a12
BG
811 for (bus = dev->bus; bus; bus = bus->parent)
812 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
a06cd74c 813 return 0;
24334a12 814
a06cd74c 815 return 1;
24334a12
BG
816}
817
d1ac1d26
AG
818/**
819 * pci_msi_vec_count - Return the number of MSI vectors a device can send
820 * @dev: device to report about
821 *
822 * This function returns the number of MSI vectors a device requested via
823 * Multiple Message Capable register. It returns a negative errno if the
824 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
825 * and returns a power of two, up to a maximum of 2^5 (32), according to the
826 * MSI specification.
827 **/
828int pci_msi_vec_count(struct pci_dev *dev)
829{
830 int ret;
831 u16 msgctl;
832
833 if (!dev->msi_cap)
834 return -EINVAL;
835
836 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
837 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
838
839 return ret;
840}
841EXPORT_SYMBOL(pci_msi_vec_count);
842
f2440d9a 843void pci_msi_shutdown(struct pci_dev *dev)
1da177e4 844{
f2440d9a
MW
845 struct msi_desc *desc;
846 u32 mask;
1da177e4 847
128bc5fc 848 if (!pci_msi_enable || !dev || !dev->msi_enabled)
ded86d8d
EB
849 return;
850
110828c9
MW
851 BUG_ON(list_empty(&dev->msi_list));
852 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
110828c9 853
e375b561 854 msi_set_enable(dev, 0);
ba698ad4 855 pci_intx_for_msi(dev, 1);
b1cbf4e4 856 dev->msi_enabled = 0;
7bd007e4 857
12abb8ba 858 /* Return the device with MSI unmasked as initial states */
31ea5d4d 859 mask = msi_mask(desc->msi_attrib.multi_cap);
12abb8ba 860 /* Keep cached state to be restored */
03f56e42 861 __msi_mask_irq(desc, mask, ~mask);
e387b9ee
ME
862
863 /* Restore dev->irq to its default pin-assertion irq */
f2440d9a 864 dev->irq = desc->msi_attrib.default_irq;
d52877c7 865}
24d27553 866
500559a9 867void pci_disable_msi(struct pci_dev *dev)
d52877c7 868{
d52877c7
YL
869 if (!pci_msi_enable || !dev || !dev->msi_enabled)
870 return;
871
872 pci_msi_shutdown(dev);
f56e4481 873 free_msi_irqs(dev);
1da177e4 874}
4cc086fa 875EXPORT_SYMBOL(pci_disable_msi);
1da177e4 876
a52e2e35 877/**
ff1aa430 878 * pci_msix_vec_count - return the number of device's MSI-X table entries
a52e2e35 879 * @dev: pointer to the pci_dev data structure of MSI-X device function
ff1aa430
AG
880 * This function returns the number of device's MSI-X table entries and
881 * therefore the number of MSI-X vectors device is capable of sending.
882 * It returns a negative errno if the device is not capable of sending MSI-X
883 * interrupts.
884 **/
885int pci_msix_vec_count(struct pci_dev *dev)
a52e2e35 886{
a52e2e35
RW
887 u16 control;
888
520fe9dc 889 if (!dev->msix_cap)
ff1aa430 890 return -EINVAL;
a52e2e35 891
f84ecd28 892 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
527eee29 893 return msix_table_size(control);
a52e2e35 894}
ff1aa430 895EXPORT_SYMBOL(pci_msix_vec_count);
a52e2e35 896
1da177e4
LT
897/**
898 * pci_enable_msix - configure device's MSI-X capability structure
899 * @dev: pointer to the pci_dev data structure of MSI-X device function
70549ad9 900 * @entries: pointer to an array of MSI-X entries
1ce03373 901 * @nvec: number of MSI-X irqs requested for allocation by device driver
1da177e4
LT
902 *
903 * Setup the MSI-X capability structure of device function with the number
1ce03373 904 * of requested irqs upon its software driver call to request for
1da177e4
LT
905 * MSI-X mode enabled on its hardware device function. A return of zero
906 * indicates the successful configuration of MSI-X capability structure
1ce03373 907 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
1da177e4 908 * Or a return of > 0 indicates that driver request is exceeding the number
57fbf52c
MT
909 * of irqs or MSI-X vectors available. Driver should use the returned value to
910 * re-send its request.
1da177e4 911 **/
500559a9 912int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
1da177e4 913{
5ec09405 914 int nr_entries;
ded86d8d 915 int i, j;
1da177e4 916
a06cd74c
AG
917 if (!pci_msi_supported(dev, nvec))
918 return -EINVAL;
c9953a73 919
27e20603
AG
920 if (!entries)
921 return -EINVAL;
922
ff1aa430
AG
923 nr_entries = pci_msix_vec_count(dev);
924 if (nr_entries < 0)
925 return nr_entries;
1da177e4 926 if (nvec > nr_entries)
57fbf52c 927 return nr_entries;
1da177e4
LT
928
929 /* Check for any invalid entries */
930 for (i = 0; i < nvec; i++) {
931 if (entries[i].entry >= nr_entries)
932 return -EINVAL; /* invalid entry */
933 for (j = i + 1; j < nvec; j++) {
934 if (entries[i].entry == entries[j].entry)
935 return -EINVAL; /* duplicate entry */
936 }
937 }
ded86d8d 938 WARN_ON(!!dev->msix_enabled);
7bd007e4 939
1ce03373 940 /* Check whether driver already requested for MSI irq */
500559a9 941 if (dev->msi_enabled) {
227f0647 942 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
1da177e4
LT
943 return -EINVAL;
944 }
5ec09405 945 return msix_capability_init(dev, entries, nvec);
1da177e4 946}
4cc086fa 947EXPORT_SYMBOL(pci_enable_msix);
1da177e4 948
500559a9 949void pci_msix_shutdown(struct pci_dev *dev)
fc4afc7b 950{
12abb8ba
HS
951 struct msi_desc *entry;
952
128bc5fc 953 if (!pci_msi_enable || !dev || !dev->msix_enabled)
ded86d8d
EB
954 return;
955
12abb8ba
HS
956 /* Return the device with MSI-X masked as initial states */
957 list_for_each_entry(entry, &dev->msi_list, list) {
958 /* Keep cached states to be restored */
03f56e42 959 __msix_mask_irq(entry, 1);
12abb8ba
HS
960 }
961
66f0d0c4 962 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
ba698ad4 963 pci_intx_for_msi(dev, 1);
b1cbf4e4 964 dev->msix_enabled = 0;
d52877c7 965}
c901851f 966
500559a9 967void pci_disable_msix(struct pci_dev *dev)
d52877c7
YL
968{
969 if (!pci_msi_enable || !dev || !dev->msix_enabled)
970 return;
971
972 pci_msix_shutdown(dev);
f56e4481 973 free_msi_irqs(dev);
1da177e4 974}
4cc086fa 975EXPORT_SYMBOL(pci_disable_msix);
1da177e4 976
309e57df
MW
977void pci_no_msi(void)
978{
979 pci_msi_enable = 0;
980}
c9953a73 981
07ae95f9
AP
982/**
983 * pci_msi_enabled - is MSI enabled?
984 *
985 * Returns true if MSI has not been disabled by the command-line option
986 * pci=nomsi.
987 **/
988int pci_msi_enabled(void)
d389fec6 989{
07ae95f9 990 return pci_msi_enable;
d389fec6 991}
07ae95f9 992EXPORT_SYMBOL(pci_msi_enabled);
d389fec6 993
07ae95f9 994void pci_msi_init_pci_dev(struct pci_dev *dev)
d389fec6 995{
07ae95f9 996 INIT_LIST_HEAD(&dev->msi_list);
d5dea7d9
EB
997
998 /* Disable the msi hardware to avoid screaming interrupts
999 * during boot. This is the power on reset default so
1000 * usually this should be a noop.
1001 */
e375b561
GS
1002 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1003 if (dev->msi_cap)
1004 msi_set_enable(dev, 0);
1005
1006 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1007 if (dev->msix_cap)
66f0d0c4 1008 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
d389fec6 1009}
302a2523
AG
1010
1011/**
1012 * pci_enable_msi_range - configure device's MSI capability structure
1013 * @dev: device to configure
1014 * @minvec: minimal number of interrupts to configure
1015 * @maxvec: maximum number of interrupts to configure
1016 *
1017 * This function tries to allocate a maximum possible number of interrupts in a
1018 * range between @minvec and @maxvec. It returns a negative errno if an error
1019 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1020 * and updates the @dev's irq member to the lowest new interrupt number;
1021 * the other interrupt numbers allocated to this device are consecutive.
1022 **/
1023int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1024{
034cd97e 1025 int nvec;
302a2523
AG
1026 int rc;
1027
a06cd74c
AG
1028 if (!pci_msi_supported(dev, minvec))
1029 return -EINVAL;
034cd97e
AG
1030
1031 WARN_ON(!!dev->msi_enabled);
1032
1033 /* Check whether driver already requested MSI-X irqs */
1034 if (dev->msix_enabled) {
1035 dev_info(&dev->dev,
1036 "can't enable MSI (MSI-X already enabled)\n");
1037 return -EINVAL;
1038 }
1039
302a2523
AG
1040 if (maxvec < minvec)
1041 return -ERANGE;
1042
034cd97e
AG
1043 nvec = pci_msi_vec_count(dev);
1044 if (nvec < 0)
1045 return nvec;
1046 else if (nvec < minvec)
1047 return -EINVAL;
1048 else if (nvec > maxvec)
1049 nvec = maxvec;
1050
302a2523 1051 do {
034cd97e 1052 rc = msi_capability_init(dev, nvec);
302a2523
AG
1053 if (rc < 0) {
1054 return rc;
1055 } else if (rc > 0) {
1056 if (rc < minvec)
1057 return -ENOSPC;
1058 nvec = rc;
1059 }
1060 } while (rc);
1061
1062 return nvec;
1063}
1064EXPORT_SYMBOL(pci_enable_msi_range);
1065
1066/**
1067 * pci_enable_msix_range - configure device's MSI-X capability structure
1068 * @dev: pointer to the pci_dev data structure of MSI-X device function
1069 * @entries: pointer to an array of MSI-X entries
1070 * @minvec: minimum number of MSI-X irqs requested
1071 * @maxvec: maximum number of MSI-X irqs requested
1072 *
1073 * Setup the MSI-X capability structure of device function with a maximum
1074 * possible number of interrupts in the range between @minvec and @maxvec
1075 * upon its software driver call to request for MSI-X mode enabled on its
1076 * hardware device function. It returns a negative errno if an error occurs.
1077 * If it succeeds, it returns the actual number of interrupts allocated and
1078 * indicates the successful configuration of MSI-X capability structure
1079 * with new allocated MSI-X interrupts.
1080 **/
1081int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1082 int minvec, int maxvec)
1083{
1084 int nvec = maxvec;
1085 int rc;
1086
1087 if (maxvec < minvec)
1088 return -ERANGE;
1089
1090 do {
1091 rc = pci_enable_msix(dev, entries, nvec);
1092 if (rc < 0) {
1093 return rc;
1094 } else if (rc > 0) {
1095 if (rc < minvec)
1096 return -ENOSPC;
1097 nvec = rc;
1098 }
1099 } while (rc);
1100
1101 return nvec;
1102}
1103EXPORT_SYMBOL(pci_enable_msix_range);
This page took 0.784196 seconds and 5 git commands to generate.