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