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