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