PCI/MSI: Correct misleading comments
[platform/kernel/linux-rpi.git] / drivers / pci / msi.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * PCI Message Signaled Interrupt (MSI)
4  *
5  * Copyright (C) 2003-2004 Intel
6  * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7  * Copyright (C) 2016 Christoph Hellwig.
8  */
9
10 #include <linux/err.h>
11 #include <linux/mm.h>
12 #include <linux/irq.h>
13 #include <linux/interrupt.h>
14 #include <linux/export.h>
15 #include <linux/ioport.h>
16 #include <linux/pci.h>
17 #include <linux/proc_fs.h>
18 #include <linux/msi.h>
19 #include <linux/smp.h>
20 #include <linux/errno.h>
21 #include <linux/io.h>
22 #include <linux/acpi_iort.h>
23 #include <linux/slab.h>
24 #include <linux/irqdomain.h>
25 #include <linux/of_irq.h>
26
27 #include "pci.h"
28
29 #ifdef CONFIG_PCI_MSI
30
31 static int pci_msi_enable = 1;
32 int pci_msi_ignore_mask;
33
34 #define msix_table_size(flags)  ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
35
36 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
37 static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
38 {
39         struct irq_domain *domain;
40
41         domain = dev_get_msi_domain(&dev->dev);
42         if (domain && irq_domain_is_hierarchy(domain))
43                 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
44
45         return arch_setup_msi_irqs(dev, nvec, type);
46 }
47
48 static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
49 {
50         struct irq_domain *domain;
51
52         domain = dev_get_msi_domain(&dev->dev);
53         if (domain && irq_domain_is_hierarchy(domain))
54                 msi_domain_free_irqs(domain, &dev->dev);
55         else
56                 arch_teardown_msi_irqs(dev);
57 }
58 #else
59 #define pci_msi_setup_msi_irqs          arch_setup_msi_irqs
60 #define pci_msi_teardown_msi_irqs       arch_teardown_msi_irqs
61 #endif
62
63 #ifdef CONFIG_PCI_MSI_ARCH_FALLBACKS
64 /* Arch hooks */
65 int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
66 {
67         return -EINVAL;
68 }
69
70 void __weak arch_teardown_msi_irq(unsigned int irq)
71 {
72 }
73
74 int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
75 {
76         struct msi_desc *entry;
77         int ret;
78
79         /*
80          * If an architecture wants to support multiple MSI, it needs to
81          * override arch_setup_msi_irqs()
82          */
83         if (type == PCI_CAP_ID_MSI && nvec > 1)
84                 return 1;
85
86         for_each_pci_msi_entry(entry, dev) {
87                 ret = arch_setup_msi_irq(dev, entry);
88                 if (ret < 0)
89                         return ret;
90                 if (ret > 0)
91                         return -ENOSPC;
92         }
93
94         return 0;
95 }
96
97 void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
98 {
99         int i;
100         struct msi_desc *entry;
101
102         for_each_pci_msi_entry(entry, dev)
103                 if (entry->irq)
104                         for (i = 0; i < entry->nvec_used; i++)
105                                 arch_teardown_msi_irq(entry->irq + i);
106 }
107 #endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS */
108
109 static void default_restore_msi_irq(struct pci_dev *dev, int irq)
110 {
111         struct msi_desc *entry;
112
113         entry = NULL;
114         if (dev->msix_enabled) {
115                 for_each_pci_msi_entry(entry, dev) {
116                         if (irq == entry->irq)
117                                 break;
118                 }
119         } else if (dev->msi_enabled)  {
120                 entry = irq_get_msi_desc(irq);
121         }
122
123         if (entry)
124                 __pci_write_msi_msg(entry, &entry->msg);
125 }
126
127 void __weak arch_restore_msi_irqs(struct pci_dev *dev)
128 {
129         return default_restore_msi_irqs(dev);
130 }
131
132 static inline __attribute_const__ u32 msi_mask(unsigned x)
133 {
134         /* Don't shift by >= width of type */
135         if (x >= 5)
136                 return 0xffffffff;
137         return (1 << (1 << x)) - 1;
138 }
139
140 /*
141  * PCI 2.3 does not specify mask bits for each MSI interrupt.  Attempting to
142  * mask all MSI interrupts by clearing the MSI enable bit does not work
143  * reliably as devices without an INTx disable bit will then generate a
144  * level IRQ which will never be cleared.
145  */
146 u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
147 {
148         u32 mask_bits = desc->masked;
149
150         if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
151                 return 0;
152
153         mask_bits &= ~mask;
154         mask_bits |= flag;
155         pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
156                                mask_bits);
157
158         return mask_bits;
159 }
160
161 static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
162 {
163         desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
164 }
165
166 static void __iomem *pci_msix_desc_addr(struct msi_desc *desc)
167 {
168         if (desc->msi_attrib.is_virtual)
169                 return NULL;
170
171         return desc->mask_base +
172                 desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
173 }
174
175 /*
176  * This internal function does not flush PCI writes to the device.
177  * All users must ensure that they read from the device before either
178  * assuming that the device state is up to date, or returning out of this
179  * file.  This saves a few milliseconds when initialising devices with lots
180  * of MSI-X interrupts.
181  */
182 u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
183 {
184         u32 mask_bits = desc->masked;
185         void __iomem *desc_addr;
186
187         if (pci_msi_ignore_mask)
188                 return 0;
189
190         desc_addr = pci_msix_desc_addr(desc);
191         if (!desc_addr)
192                 return 0;
193
194         mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
195         if (flag & PCI_MSIX_ENTRY_CTRL_MASKBIT)
196                 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
197
198         writel(mask_bits, desc_addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
199
200         return mask_bits;
201 }
202
203 static void msix_mask_irq(struct msi_desc *desc, u32 flag)
204 {
205         desc->masked = __pci_msix_desc_mask_irq(desc, flag);
206 }
207
208 static void msi_set_mask_bit(struct irq_data *data, u32 flag)
209 {
210         struct msi_desc *desc = irq_data_get_msi_desc(data);
211
212         if (desc->msi_attrib.is_msix) {
213                 msix_mask_irq(desc, flag);
214                 readl(desc->mask_base);         /* Flush write to device */
215         } else {
216                 unsigned offset = data->irq - desc->irq;
217                 msi_mask_irq(desc, 1 << offset, flag << offset);
218         }
219 }
220
221 /**
222  * pci_msi_mask_irq - Generic IRQ chip callback to mask PCI/MSI interrupts
223  * @data:       pointer to irqdata associated to that interrupt
224  */
225 void pci_msi_mask_irq(struct irq_data *data)
226 {
227         msi_set_mask_bit(data, 1);
228 }
229 EXPORT_SYMBOL_GPL(pci_msi_mask_irq);
230
231 /**
232  * pci_msi_unmask_irq - Generic IRQ chip callback to unmask PCI/MSI interrupts
233  * @data:       pointer to irqdata associated to that interrupt
234  */
235 void pci_msi_unmask_irq(struct irq_data *data)
236 {
237         msi_set_mask_bit(data, 0);
238 }
239 EXPORT_SYMBOL_GPL(pci_msi_unmask_irq);
240
241 void default_restore_msi_irqs(struct pci_dev *dev)
242 {
243         struct msi_desc *entry;
244
245         for_each_pci_msi_entry(entry, dev)
246                 default_restore_msi_irq(dev, entry->irq);
247 }
248
249 void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
250 {
251         struct pci_dev *dev = msi_desc_to_pci_dev(entry);
252
253         BUG_ON(dev->current_state != PCI_D0);
254
255         if (entry->msi_attrib.is_msix) {
256                 void __iomem *base = pci_msix_desc_addr(entry);
257
258                 if (!base) {
259                         WARN_ON(1);
260                         return;
261                 }
262
263                 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
264                 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
265                 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
266         } else {
267                 int pos = dev->msi_cap;
268                 u16 data;
269
270                 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
271                                       &msg->address_lo);
272                 if (entry->msi_attrib.is_64) {
273                         pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
274                                               &msg->address_hi);
275                         pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
276                 } else {
277                         msg->address_hi = 0;
278                         pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
279                 }
280                 msg->data = data;
281         }
282 }
283
284 void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
285 {
286         struct pci_dev *dev = msi_desc_to_pci_dev(entry);
287
288         if (dev->current_state != PCI_D0 || pci_dev_is_disconnected(dev)) {
289                 /* Don't touch the hardware now */
290         } else if (entry->msi_attrib.is_msix) {
291                 void __iomem *base = pci_msix_desc_addr(entry);
292                 bool unmasked = !(entry->masked & PCI_MSIX_ENTRY_CTRL_MASKBIT);
293
294                 if (!base)
295                         goto skip;
296
297                 /*
298                  * The specification mandates that the entry is masked
299                  * when the message is modified:
300                  *
301                  * "If software changes the Address or Data value of an
302                  * entry while the entry is unmasked, the result is
303                  * undefined."
304                  */
305                 if (unmasked)
306                         __pci_msix_desc_mask_irq(entry, PCI_MSIX_ENTRY_CTRL_MASKBIT);
307
308                 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
309                 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
310                 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
311
312                 if (unmasked)
313                         __pci_msix_desc_mask_irq(entry, 0);
314
315                 /* Ensure that the writes are visible in the device */
316                 readl(base + PCI_MSIX_ENTRY_DATA);
317         } else {
318                 int pos = dev->msi_cap;
319                 u16 msgctl;
320
321                 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
322                 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
323                 msgctl |= entry->msi_attrib.multiple << 4;
324                 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
325
326                 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
327                                        msg->address_lo);
328                 if (entry->msi_attrib.is_64) {
329                         pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
330                                                msg->address_hi);
331                         pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
332                                               msg->data);
333                 } else {
334                         pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
335                                               msg->data);
336                 }
337                 /* Ensure that the writes are visible in the device */
338                 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
339         }
340
341 skip:
342         entry->msg = *msg;
343
344         if (entry->write_msi_msg)
345                 entry->write_msi_msg(entry, entry->write_msi_msg_data);
346
347 }
348
349 void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
350 {
351         struct msi_desc *entry = irq_get_msi_desc(irq);
352
353         __pci_write_msi_msg(entry, msg);
354 }
355 EXPORT_SYMBOL_GPL(pci_write_msi_msg);
356
357 static void free_msi_irqs(struct pci_dev *dev)
358 {
359         struct list_head *msi_list = dev_to_msi_list(&dev->dev);
360         struct msi_desc *entry, *tmp;
361         struct attribute **msi_attrs;
362         struct device_attribute *dev_attr;
363         int i, count = 0;
364
365         for_each_pci_msi_entry(entry, dev)
366                 if (entry->irq)
367                         for (i = 0; i < entry->nvec_used; i++)
368                                 BUG_ON(irq_has_action(entry->irq + i));
369
370         pci_msi_teardown_msi_irqs(dev);
371
372         list_for_each_entry_safe(entry, tmp, msi_list, list) {
373                 if (entry->msi_attrib.is_msix) {
374                         if (list_is_last(&entry->list, msi_list))
375                                 iounmap(entry->mask_base);
376                 }
377
378                 list_del(&entry->list);
379                 free_msi_entry(entry);
380         }
381
382         if (dev->msi_irq_groups) {
383                 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
384                 msi_attrs = dev->msi_irq_groups[0]->attrs;
385                 while (msi_attrs[count]) {
386                         dev_attr = container_of(msi_attrs[count],
387                                                 struct device_attribute, attr);
388                         kfree(dev_attr->attr.name);
389                         kfree(dev_attr);
390                         ++count;
391                 }
392                 kfree(msi_attrs);
393                 kfree(dev->msi_irq_groups[0]);
394                 kfree(dev->msi_irq_groups);
395                 dev->msi_irq_groups = NULL;
396         }
397 }
398
399 static void pci_intx_for_msi(struct pci_dev *dev, int enable)
400 {
401         if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
402                 pci_intx(dev, enable);
403 }
404
405 static void pci_msi_set_enable(struct pci_dev *dev, int enable)
406 {
407         u16 control;
408
409         pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
410         control &= ~PCI_MSI_FLAGS_ENABLE;
411         if (enable)
412                 control |= PCI_MSI_FLAGS_ENABLE;
413         pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
414 }
415
416 static void __pci_restore_msi_state(struct pci_dev *dev)
417 {
418         u16 control;
419         struct msi_desc *entry;
420
421         if (!dev->msi_enabled)
422                 return;
423
424         entry = irq_get_msi_desc(dev->irq);
425
426         pci_intx_for_msi(dev, 0);
427         pci_msi_set_enable(dev, 0);
428         arch_restore_msi_irqs(dev);
429
430         pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
431         msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
432                      entry->masked);
433         control &= ~PCI_MSI_FLAGS_QSIZE;
434         control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
435         pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
436 }
437
438 static void pci_msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
439 {
440         u16 ctrl;
441
442         pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
443         ctrl &= ~clear;
444         ctrl |= set;
445         pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
446 }
447
448 static void __pci_restore_msix_state(struct pci_dev *dev)
449 {
450         struct msi_desc *entry;
451
452         if (!dev->msix_enabled)
453                 return;
454         BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
455
456         /* route the table */
457         pci_intx_for_msi(dev, 0);
458         pci_msix_clear_and_set_ctrl(dev, 0,
459                                 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
460
461         arch_restore_msi_irqs(dev);
462         for_each_pci_msi_entry(entry, dev)
463                 msix_mask_irq(entry, entry->masked);
464
465         pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
466 }
467
468 void pci_restore_msi_state(struct pci_dev *dev)
469 {
470         __pci_restore_msi_state(dev);
471         __pci_restore_msix_state(dev);
472 }
473 EXPORT_SYMBOL_GPL(pci_restore_msi_state);
474
475 static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
476                              char *buf)
477 {
478         struct msi_desc *entry;
479         unsigned long irq;
480         int retval;
481
482         retval = kstrtoul(attr->attr.name, 10, &irq);
483         if (retval)
484                 return retval;
485
486         entry = irq_get_msi_desc(irq);
487         if (!entry)
488                 return -ENODEV;
489
490         return sysfs_emit(buf, "%s\n",
491                           entry->msi_attrib.is_msix ? "msix" : "msi");
492 }
493
494 static int populate_msi_sysfs(struct pci_dev *pdev)
495 {
496         struct attribute **msi_attrs;
497         struct attribute *msi_attr;
498         struct device_attribute *msi_dev_attr;
499         struct attribute_group *msi_irq_group;
500         const struct attribute_group **msi_irq_groups;
501         struct msi_desc *entry;
502         int ret = -ENOMEM;
503         int num_msi = 0;
504         int count = 0;
505         int i;
506
507         /* Determine how many msi entries we have */
508         for_each_pci_msi_entry(entry, pdev)
509                 num_msi += entry->nvec_used;
510         if (!num_msi)
511                 return 0;
512
513         /* Dynamically create the MSI attributes for the PCI device */
514         msi_attrs = kcalloc(num_msi + 1, sizeof(void *), GFP_KERNEL);
515         if (!msi_attrs)
516                 return -ENOMEM;
517         for_each_pci_msi_entry(entry, pdev) {
518                 for (i = 0; i < entry->nvec_used; i++) {
519                         msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
520                         if (!msi_dev_attr)
521                                 goto error_attrs;
522                         msi_attrs[count] = &msi_dev_attr->attr;
523
524                         sysfs_attr_init(&msi_dev_attr->attr);
525                         msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
526                                                             entry->irq + i);
527                         if (!msi_dev_attr->attr.name)
528                                 goto error_attrs;
529                         msi_dev_attr->attr.mode = S_IRUGO;
530                         msi_dev_attr->show = msi_mode_show;
531                         ++count;
532                 }
533         }
534
535         msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
536         if (!msi_irq_group)
537                 goto error_attrs;
538         msi_irq_group->name = "msi_irqs";
539         msi_irq_group->attrs = msi_attrs;
540
541         msi_irq_groups = kcalloc(2, sizeof(void *), GFP_KERNEL);
542         if (!msi_irq_groups)
543                 goto error_irq_group;
544         msi_irq_groups[0] = msi_irq_group;
545
546         ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
547         if (ret)
548                 goto error_irq_groups;
549         pdev->msi_irq_groups = msi_irq_groups;
550
551         return 0;
552
553 error_irq_groups:
554         kfree(msi_irq_groups);
555 error_irq_group:
556         kfree(msi_irq_group);
557 error_attrs:
558         count = 0;
559         msi_attr = msi_attrs[count];
560         while (msi_attr) {
561                 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
562                 kfree(msi_attr->name);
563                 kfree(msi_dev_attr);
564                 ++count;
565                 msi_attr = msi_attrs[count];
566         }
567         kfree(msi_attrs);
568         return ret;
569 }
570
571 static struct msi_desc *
572 msi_setup_entry(struct pci_dev *dev, int nvec, struct irq_affinity *affd)
573 {
574         struct irq_affinity_desc *masks = NULL;
575         struct msi_desc *entry;
576         u16 control;
577
578         if (affd)
579                 masks = irq_create_affinity_masks(nvec, affd);
580
581         /* MSI Entry Initialization */
582         entry = alloc_msi_entry(&dev->dev, nvec, masks);
583         if (!entry)
584                 goto out;
585
586         pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
587
588         entry->msi_attrib.is_msix       = 0;
589         entry->msi_attrib.is_64         = !!(control & PCI_MSI_FLAGS_64BIT);
590         entry->msi_attrib.is_virtual    = 0;
591         entry->msi_attrib.entry_nr      = 0;
592         entry->msi_attrib.maskbit       = !!(control & PCI_MSI_FLAGS_MASKBIT);
593         entry->msi_attrib.default_irq   = dev->irq;     /* Save IOAPIC IRQ */
594         entry->msi_attrib.multi_cap     = (control & PCI_MSI_FLAGS_QMASK) >> 1;
595         entry->msi_attrib.multiple      = ilog2(__roundup_pow_of_two(nvec));
596
597         if (control & PCI_MSI_FLAGS_64BIT)
598                 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
599         else
600                 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
601
602         /* Save the initial mask status */
603         if (entry->msi_attrib.maskbit)
604                 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
605
606 out:
607         kfree(masks);
608         return entry;
609 }
610
611 static int msi_verify_entries(struct pci_dev *dev)
612 {
613         struct msi_desc *entry;
614
615         for_each_pci_msi_entry(entry, dev) {
616                 if (entry->msg.address_hi && dev->no_64bit_msi) {
617                         pci_err(dev, "arch assigned 64-bit MSI address %#x%08x but device only supports 32 bits\n",
618                                 entry->msg.address_hi, entry->msg.address_lo);
619                         return -EIO;
620                 }
621         }
622         return 0;
623 }
624
625 /**
626  * msi_capability_init - configure device's MSI capability structure
627  * @dev: pointer to the pci_dev data structure of MSI device function
628  * @nvec: number of interrupts to allocate
629  * @affd: description of automatic IRQ affinity assignments (may be %NULL)
630  *
631  * Setup the MSI capability structure of the device with the requested
632  * number of interrupts.  A return value of zero indicates the successful
633  * setup of an entry with the new MSI IRQ.  A negative return value indicates
634  * an error, and a positive return value indicates the number of interrupts
635  * which could have been allocated.
636  */
637 static int msi_capability_init(struct pci_dev *dev, int nvec,
638                                struct irq_affinity *affd)
639 {
640         struct msi_desc *entry;
641         int ret;
642         unsigned mask;
643
644         pci_msi_set_enable(dev, 0);     /* Disable MSI during set up */
645
646         entry = msi_setup_entry(dev, nvec, affd);
647         if (!entry)
648                 return -ENOMEM;
649
650         /* All MSIs are unmasked by default; mask them all */
651         mask = msi_mask(entry->msi_attrib.multi_cap);
652         msi_mask_irq(entry, mask, mask);
653
654         list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
655
656         /* Configure MSI capability structure */
657         ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
658         if (ret) {
659                 msi_mask_irq(entry, mask, 0);
660                 free_msi_irqs(dev);
661                 return ret;
662         }
663
664         ret = msi_verify_entries(dev);
665         if (ret) {
666                 msi_mask_irq(entry, mask, 0);
667                 free_msi_irqs(dev);
668                 return ret;
669         }
670
671         ret = populate_msi_sysfs(dev);
672         if (ret) {
673                 msi_mask_irq(entry, mask, 0);
674                 free_msi_irqs(dev);
675                 return ret;
676         }
677
678         /* Set MSI enabled bits */
679         pci_intx_for_msi(dev, 0);
680         pci_msi_set_enable(dev, 1);
681         dev->msi_enabled = 1;
682
683         pcibios_free_irq(dev);
684         dev->irq = entry->irq;
685         return 0;
686 }
687
688 static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
689 {
690         resource_size_t phys_addr;
691         u32 table_offset;
692         unsigned long flags;
693         u8 bir;
694
695         pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
696                               &table_offset);
697         bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
698         flags = pci_resource_flags(dev, bir);
699         if (!flags || (flags & IORESOURCE_UNSET))
700                 return NULL;
701
702         table_offset &= PCI_MSIX_TABLE_OFFSET;
703         phys_addr = pci_resource_start(dev, bir) + table_offset;
704
705         return ioremap(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
706 }
707
708 static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
709                               struct msix_entry *entries, int nvec,
710                               struct irq_affinity *affd)
711 {
712         struct irq_affinity_desc *curmsk, *masks = NULL;
713         struct msi_desc *entry;
714         void __iomem *addr;
715         int ret, i;
716         int vec_count = pci_msix_vec_count(dev);
717
718         if (affd)
719                 masks = irq_create_affinity_masks(nvec, affd);
720
721         for (i = 0, curmsk = masks; i < nvec; i++) {
722                 entry = alloc_msi_entry(&dev->dev, 1, curmsk);
723                 if (!entry) {
724                         if (!i)
725                                 iounmap(base);
726                         else
727                                 free_msi_irqs(dev);
728                         /* No enough memory. Don't try again */
729                         ret = -ENOMEM;
730                         goto out;
731                 }
732
733                 entry->msi_attrib.is_msix       = 1;
734                 entry->msi_attrib.is_64         = 1;
735
736                 if (entries)
737                         entry->msi_attrib.entry_nr = entries[i].entry;
738                 else
739                         entry->msi_attrib.entry_nr = i;
740
741                 entry->msi_attrib.is_virtual =
742                         entry->msi_attrib.entry_nr >= vec_count;
743
744                 entry->msi_attrib.default_irq   = dev->irq;
745                 entry->mask_base                = base;
746
747                 addr = pci_msix_desc_addr(entry);
748                 if (addr)
749                         entry->masked = readl(addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
750
751                 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
752                 if (masks)
753                         curmsk++;
754         }
755         ret = 0;
756 out:
757         kfree(masks);
758         return ret;
759 }
760
761 static void msix_update_entries(struct pci_dev *dev, struct msix_entry *entries)
762 {
763         struct msi_desc *entry;
764
765         for_each_pci_msi_entry(entry, dev) {
766                 if (entries) {
767                         entries->vector = entry->irq;
768                         entries++;
769                 }
770         }
771 }
772
773 static void msix_mask_all(void __iomem *base, int tsize)
774 {
775         u32 ctrl = PCI_MSIX_ENTRY_CTRL_MASKBIT;
776         int i;
777
778         for (i = 0; i < tsize; i++, base += PCI_MSIX_ENTRY_SIZE)
779                 writel(ctrl, base + PCI_MSIX_ENTRY_VECTOR_CTRL);
780 }
781
782 /**
783  * msix_capability_init - configure device's MSI-X capability
784  * @dev: pointer to the pci_dev data structure of MSI-X device function
785  * @entries: pointer to an array of struct msix_entry entries
786  * @nvec: number of @entries
787  * @affd: Optional pointer to enable automatic affinity assignment
788  *
789  * Setup the MSI-X capability structure of device function with a
790  * single MSI-X IRQ. A return of zero indicates the successful setup of
791  * requested MSI-X entries with allocated IRQs or non-zero for otherwise.
792  **/
793 static int msix_capability_init(struct pci_dev *dev, struct msix_entry *entries,
794                                 int nvec, struct irq_affinity *affd)
795 {
796         void __iomem *base;
797         int ret, tsize;
798         u16 control;
799
800         /*
801          * Some devices require MSI-X to be enabled before the MSI-X
802          * registers can be accessed.  Mask all the vectors to prevent
803          * interrupts coming in before they're fully set up.
804          */
805         pci_msix_clear_and_set_ctrl(dev, 0, PCI_MSIX_FLAGS_MASKALL |
806                                     PCI_MSIX_FLAGS_ENABLE);
807
808         pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
809         /* Request & Map MSI-X table region */
810         tsize = msix_table_size(control);
811         base = msix_map_region(dev, tsize);
812         if (!base) {
813                 ret = -ENOMEM;
814                 goto out_disable;
815         }
816
817         /* Ensure that all table entries are masked. */
818         msix_mask_all(base, tsize);
819
820         ret = msix_setup_entries(dev, base, entries, nvec, affd);
821         if (ret)
822                 goto out_disable;
823
824         ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
825         if (ret)
826                 goto out_avail;
827
828         /* Check if all MSI entries honor device restrictions */
829         ret = msi_verify_entries(dev);
830         if (ret)
831                 goto out_free;
832
833         msix_update_entries(dev, entries);
834
835         ret = populate_msi_sysfs(dev);
836         if (ret)
837                 goto out_free;
838
839         /* Set MSI-X enabled bits and unmask the function */
840         pci_intx_for_msi(dev, 0);
841         dev->msix_enabled = 1;
842         pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
843
844         pcibios_free_irq(dev);
845         return 0;
846
847 out_avail:
848         if (ret < 0) {
849                 /*
850                  * If we had some success, report the number of IRQs
851                  * we succeeded in setting up.
852                  */
853                 struct msi_desc *entry;
854                 int avail = 0;
855
856                 for_each_pci_msi_entry(entry, dev) {
857                         if (entry->irq != 0)
858                                 avail++;
859                 }
860                 if (avail != 0)
861                         ret = avail;
862         }
863
864 out_free:
865         free_msi_irqs(dev);
866
867 out_disable:
868         pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
869
870         return ret;
871 }
872
873 /**
874  * pci_msi_supported - check whether MSI may be enabled on a device
875  * @dev: pointer to the pci_dev data structure of MSI device function
876  * @nvec: how many MSIs have been requested?
877  *
878  * Look at global flags, the device itself, and its parent buses
879  * to determine if MSI/-X are supported for the device. If MSI/-X is
880  * supported return 1, else return 0.
881  **/
882 static int pci_msi_supported(struct pci_dev *dev, int nvec)
883 {
884         struct pci_bus *bus;
885
886         /* MSI must be globally enabled and supported by the device */
887         if (!pci_msi_enable)
888                 return 0;
889
890         if (!dev || dev->no_msi)
891                 return 0;
892
893         /*
894          * You can't ask to have 0 or less MSIs configured.
895          *  a) it's stupid ..
896          *  b) the list manipulation code assumes nvec >= 1.
897          */
898         if (nvec < 1)
899                 return 0;
900
901         /*
902          * Any bridge which does NOT route MSI transactions from its
903          * secondary bus to its primary bus must set NO_MSI flag on
904          * the secondary pci_bus.
905          *
906          * The NO_MSI flag can either be set directly by:
907          * - arch-specific PCI host bus controller drivers (deprecated)
908          * - quirks for specific PCI bridges
909          *
910          * or indirectly by platform-specific PCI host bridge drivers by
911          * advertising the 'msi_domain' property, which results in
912          * the NO_MSI flag when no MSI domain is found for this bridge
913          * at probe time.
914          */
915         for (bus = dev->bus; bus; bus = bus->parent)
916                 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
917                         return 0;
918
919         return 1;
920 }
921
922 /**
923  * pci_msi_vec_count - Return the number of MSI vectors a device can send
924  * @dev: device to report about
925  *
926  * This function returns the number of MSI vectors a device requested via
927  * Multiple Message Capable register. It returns a negative errno if the
928  * device is not capable sending MSI interrupts. Otherwise, the call succeeds
929  * and returns a power of two, up to a maximum of 2^5 (32), according to the
930  * MSI specification.
931  **/
932 int pci_msi_vec_count(struct pci_dev *dev)
933 {
934         int ret;
935         u16 msgctl;
936
937         if (!dev->msi_cap)
938                 return -EINVAL;
939
940         pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
941         ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
942
943         return ret;
944 }
945 EXPORT_SYMBOL(pci_msi_vec_count);
946
947 static void pci_msi_shutdown(struct pci_dev *dev)
948 {
949         struct msi_desc *desc;
950         u32 mask;
951
952         if (!pci_msi_enable || !dev || !dev->msi_enabled)
953                 return;
954
955         BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
956         desc = first_pci_msi_entry(dev);
957
958         pci_msi_set_enable(dev, 0);
959         pci_intx_for_msi(dev, 1);
960         dev->msi_enabled = 0;
961
962         /* Return the device with MSI unmasked as initial states */
963         mask = msi_mask(desc->msi_attrib.multi_cap);
964         __pci_msi_desc_mask_irq(desc, mask, 0);
965
966         /* Restore dev->irq to its default pin-assertion IRQ */
967         dev->irq = desc->msi_attrib.default_irq;
968         pcibios_alloc_irq(dev);
969 }
970
971 void pci_disable_msi(struct pci_dev *dev)
972 {
973         if (!pci_msi_enable || !dev || !dev->msi_enabled)
974                 return;
975
976         pci_msi_shutdown(dev);
977         free_msi_irqs(dev);
978 }
979 EXPORT_SYMBOL(pci_disable_msi);
980
981 /**
982  * pci_msix_vec_count - return the number of device's MSI-X table entries
983  * @dev: pointer to the pci_dev data structure of MSI-X device function
984  * This function returns the number of device's MSI-X table entries and
985  * therefore the number of MSI-X vectors device is capable of sending.
986  * It returns a negative errno if the device is not capable of sending MSI-X
987  * interrupts.
988  **/
989 int pci_msix_vec_count(struct pci_dev *dev)
990 {
991         u16 control;
992
993         if (!dev->msix_cap)
994                 return -EINVAL;
995
996         pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
997         return msix_table_size(control);
998 }
999 EXPORT_SYMBOL(pci_msix_vec_count);
1000
1001 static int __pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries,
1002                              int nvec, struct irq_affinity *affd, int flags)
1003 {
1004         int nr_entries;
1005         int i, j;
1006
1007         if (!pci_msi_supported(dev, nvec) || dev->current_state != PCI_D0)
1008                 return -EINVAL;
1009
1010         nr_entries = pci_msix_vec_count(dev);
1011         if (nr_entries < 0)
1012                 return nr_entries;
1013         if (nvec > nr_entries && !(flags & PCI_IRQ_VIRTUAL))
1014                 return nr_entries;
1015
1016         if (entries) {
1017                 /* Check for any invalid entries */
1018                 for (i = 0; i < nvec; i++) {
1019                         if (entries[i].entry >= nr_entries)
1020                                 return -EINVAL;         /* invalid entry */
1021                         for (j = i + 1; j < nvec; j++) {
1022                                 if (entries[i].entry == entries[j].entry)
1023                                         return -EINVAL; /* duplicate entry */
1024                         }
1025                 }
1026         }
1027
1028         /* Check whether driver already requested for MSI IRQ */
1029         if (dev->msi_enabled) {
1030                 pci_info(dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
1031                 return -EINVAL;
1032         }
1033         return msix_capability_init(dev, entries, nvec, affd);
1034 }
1035
1036 static void pci_msix_shutdown(struct pci_dev *dev)
1037 {
1038         struct msi_desc *entry;
1039
1040         if (!pci_msi_enable || !dev || !dev->msix_enabled)
1041                 return;
1042
1043         if (pci_dev_is_disconnected(dev)) {
1044                 dev->msix_enabled = 0;
1045                 return;
1046         }
1047
1048         /* Return the device with MSI-X masked as initial states */
1049         for_each_pci_msi_entry(entry, dev)
1050                 __pci_msix_desc_mask_irq(entry, 1);
1051
1052         pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
1053         pci_intx_for_msi(dev, 1);
1054         dev->msix_enabled = 0;
1055         pcibios_alloc_irq(dev);
1056 }
1057
1058 void pci_disable_msix(struct pci_dev *dev)
1059 {
1060         if (!pci_msi_enable || !dev || !dev->msix_enabled)
1061                 return;
1062
1063         pci_msix_shutdown(dev);
1064         free_msi_irqs(dev);
1065 }
1066 EXPORT_SYMBOL(pci_disable_msix);
1067
1068 void pci_no_msi(void)
1069 {
1070         pci_msi_enable = 0;
1071 }
1072
1073 /**
1074  * pci_msi_enabled - is MSI enabled?
1075  *
1076  * Returns true if MSI has not been disabled by the command-line option
1077  * pci=nomsi.
1078  **/
1079 int pci_msi_enabled(void)
1080 {
1081         return pci_msi_enable;
1082 }
1083 EXPORT_SYMBOL(pci_msi_enabled);
1084
1085 static int __pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec,
1086                                   struct irq_affinity *affd)
1087 {
1088         int nvec;
1089         int rc;
1090
1091         if (!pci_msi_supported(dev, minvec) || dev->current_state != PCI_D0)
1092                 return -EINVAL;
1093
1094         /* Check whether driver already requested MSI-X IRQs */
1095         if (dev->msix_enabled) {
1096                 pci_info(dev, "can't enable MSI (MSI-X already enabled)\n");
1097                 return -EINVAL;
1098         }
1099
1100         if (maxvec < minvec)
1101                 return -ERANGE;
1102
1103         if (WARN_ON_ONCE(dev->msi_enabled))
1104                 return -EINVAL;
1105
1106         nvec = pci_msi_vec_count(dev);
1107         if (nvec < 0)
1108                 return nvec;
1109         if (nvec < minvec)
1110                 return -ENOSPC;
1111
1112         if (nvec > maxvec)
1113                 nvec = maxvec;
1114
1115         for (;;) {
1116                 if (affd) {
1117                         nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
1118                         if (nvec < minvec)
1119                                 return -ENOSPC;
1120                 }
1121
1122                 rc = msi_capability_init(dev, nvec, affd);
1123                 if (rc == 0)
1124                         return nvec;
1125
1126                 if (rc < 0)
1127                         return rc;
1128                 if (rc < minvec)
1129                         return -ENOSPC;
1130
1131                 nvec = rc;
1132         }
1133 }
1134
1135 /* deprecated, don't use */
1136 int pci_enable_msi(struct pci_dev *dev)
1137 {
1138         int rc = __pci_enable_msi_range(dev, 1, 1, NULL);
1139         if (rc < 0)
1140                 return rc;
1141         return 0;
1142 }
1143 EXPORT_SYMBOL(pci_enable_msi);
1144
1145 static int __pci_enable_msix_range(struct pci_dev *dev,
1146                                    struct msix_entry *entries, int minvec,
1147                                    int maxvec, struct irq_affinity *affd,
1148                                    int flags)
1149 {
1150         int rc, nvec = maxvec;
1151
1152         if (maxvec < minvec)
1153                 return -ERANGE;
1154
1155         if (WARN_ON_ONCE(dev->msix_enabled))
1156                 return -EINVAL;
1157
1158         for (;;) {
1159                 if (affd) {
1160                         nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
1161                         if (nvec < minvec)
1162                                 return -ENOSPC;
1163                 }
1164
1165                 rc = __pci_enable_msix(dev, entries, nvec, affd, flags);
1166                 if (rc == 0)
1167                         return nvec;
1168
1169                 if (rc < 0)
1170                         return rc;
1171                 if (rc < minvec)
1172                         return -ENOSPC;
1173
1174                 nvec = rc;
1175         }
1176 }
1177
1178 /**
1179  * pci_enable_msix_range - configure device's MSI-X capability structure
1180  * @dev: pointer to the pci_dev data structure of MSI-X device function
1181  * @entries: pointer to an array of MSI-X entries
1182  * @minvec: minimum number of MSI-X IRQs requested
1183  * @maxvec: maximum number of MSI-X IRQs requested
1184  *
1185  * Setup the MSI-X capability structure of device function with a maximum
1186  * possible number of interrupts in the range between @minvec and @maxvec
1187  * upon its software driver call to request for MSI-X mode enabled on its
1188  * hardware device function. It returns a negative errno if an error occurs.
1189  * If it succeeds, it returns the actual number of interrupts allocated and
1190  * indicates the successful configuration of MSI-X capability structure
1191  * with new allocated MSI-X interrupts.
1192  **/
1193 int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1194                 int minvec, int maxvec)
1195 {
1196         return __pci_enable_msix_range(dev, entries, minvec, maxvec, NULL, 0);
1197 }
1198 EXPORT_SYMBOL(pci_enable_msix_range);
1199
1200 /**
1201  * pci_alloc_irq_vectors_affinity - allocate multiple IRQs for a device
1202  * @dev:                PCI device to operate on
1203  * @min_vecs:           minimum number of vectors required (must be >= 1)
1204  * @max_vecs:           maximum (desired) number of vectors
1205  * @flags:              flags or quirks for the allocation
1206  * @affd:               optional description of the affinity requirements
1207  *
1208  * Allocate up to @max_vecs interrupt vectors for @dev, using MSI-X or MSI
1209  * vectors if available, and fall back to a single legacy vector
1210  * if neither is available.  Return the number of vectors allocated,
1211  * (which might be smaller than @max_vecs) if successful, or a negative
1212  * error code on error. If less than @min_vecs interrupt vectors are
1213  * available for @dev the function will fail with -ENOSPC.
1214  *
1215  * To get the Linux IRQ number used for a vector that can be passed to
1216  * request_irq() use the pci_irq_vector() helper.
1217  */
1218 int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1219                                    unsigned int max_vecs, unsigned int flags,
1220                                    struct irq_affinity *affd)
1221 {
1222         struct irq_affinity msi_default_affd = {0};
1223         int nvecs = -ENOSPC;
1224
1225         if (flags & PCI_IRQ_AFFINITY) {
1226                 if (!affd)
1227                         affd = &msi_default_affd;
1228         } else {
1229                 if (WARN_ON(affd))
1230                         affd = NULL;
1231         }
1232
1233         if (flags & PCI_IRQ_MSIX) {
1234                 nvecs = __pci_enable_msix_range(dev, NULL, min_vecs, max_vecs,
1235                                                 affd, flags);
1236                 if (nvecs > 0)
1237                         return nvecs;
1238         }
1239
1240         if (flags & PCI_IRQ_MSI) {
1241                 nvecs = __pci_enable_msi_range(dev, min_vecs, max_vecs, affd);
1242                 if (nvecs > 0)
1243                         return nvecs;
1244         }
1245
1246         /* use legacy IRQ if allowed */
1247         if (flags & PCI_IRQ_LEGACY) {
1248                 if (min_vecs == 1 && dev->irq) {
1249                         /*
1250                          * Invoke the affinity spreading logic to ensure that
1251                          * the device driver can adjust queue configuration
1252                          * for the single interrupt case.
1253                          */
1254                         if (affd)
1255                                 irq_create_affinity_masks(1, affd);
1256                         pci_intx(dev, 1);
1257                         return 1;
1258                 }
1259         }
1260
1261         return nvecs;
1262 }
1263 EXPORT_SYMBOL(pci_alloc_irq_vectors_affinity);
1264
1265 /**
1266  * pci_free_irq_vectors - free previously allocated IRQs for a device
1267  * @dev:                PCI device to operate on
1268  *
1269  * Undoes the allocations and enabling in pci_alloc_irq_vectors().
1270  */
1271 void pci_free_irq_vectors(struct pci_dev *dev)
1272 {
1273         pci_disable_msix(dev);
1274         pci_disable_msi(dev);
1275 }
1276 EXPORT_SYMBOL(pci_free_irq_vectors);
1277
1278 /**
1279  * pci_irq_vector - return Linux IRQ number of a device vector
1280  * @dev: PCI device to operate on
1281  * @nr: device-relative interrupt vector index (0-based).
1282  */
1283 int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
1284 {
1285         if (dev->msix_enabled) {
1286                 struct msi_desc *entry;
1287                 int i = 0;
1288
1289                 for_each_pci_msi_entry(entry, dev) {
1290                         if (i == nr)
1291                                 return entry->irq;
1292                         i++;
1293                 }
1294                 WARN_ON_ONCE(1);
1295                 return -EINVAL;
1296         }
1297
1298         if (dev->msi_enabled) {
1299                 struct msi_desc *entry = first_pci_msi_entry(dev);
1300
1301                 if (WARN_ON_ONCE(nr >= entry->nvec_used))
1302                         return -EINVAL;
1303         } else {
1304                 if (WARN_ON_ONCE(nr > 0))
1305                         return -EINVAL;
1306         }
1307
1308         return dev->irq + nr;
1309 }
1310 EXPORT_SYMBOL(pci_irq_vector);
1311
1312 /**
1313  * pci_irq_get_affinity - return the affinity of a particular MSI vector
1314  * @dev:        PCI device to operate on
1315  * @nr:         device-relative interrupt vector index (0-based).
1316  */
1317 const struct cpumask *pci_irq_get_affinity(struct pci_dev *dev, int nr)
1318 {
1319         if (dev->msix_enabled) {
1320                 struct msi_desc *entry;
1321                 int i = 0;
1322
1323                 for_each_pci_msi_entry(entry, dev) {
1324                         if (i == nr)
1325                                 return &entry->affinity->mask;
1326                         i++;
1327                 }
1328                 WARN_ON_ONCE(1);
1329                 return NULL;
1330         } else if (dev->msi_enabled) {
1331                 struct msi_desc *entry = first_pci_msi_entry(dev);
1332
1333                 if (WARN_ON_ONCE(!entry || !entry->affinity ||
1334                                  nr >= entry->nvec_used))
1335                         return NULL;
1336
1337                 return &entry->affinity[nr].mask;
1338         } else {
1339                 return cpu_possible_mask;
1340         }
1341 }
1342 EXPORT_SYMBOL(pci_irq_get_affinity);
1343
1344 struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1345 {
1346         return to_pci_dev(desc->dev);
1347 }
1348 EXPORT_SYMBOL(msi_desc_to_pci_dev);
1349
1350 void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1351 {
1352         struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1353
1354         return dev->bus->sysdata;
1355 }
1356 EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1357
1358 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1359 /**
1360  * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1361  * @irq_data:   Pointer to interrupt data of the MSI interrupt
1362  * @msg:        Pointer to the message
1363  */
1364 void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1365 {
1366         struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
1367
1368         /*
1369          * For MSI-X desc->irq is always equal to irq_data->irq. For
1370          * MSI only the first interrupt of MULTI MSI passes the test.
1371          */
1372         if (desc->irq == irq_data->irq)
1373                 __pci_write_msi_msg(desc, msg);
1374 }
1375
1376 /**
1377  * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1378  * @desc:       Pointer to the MSI descriptor
1379  *
1380  * The ID number is only used within the irqdomain.
1381  */
1382 static irq_hw_number_t pci_msi_domain_calc_hwirq(struct msi_desc *desc)
1383 {
1384         struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1385
1386         return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1387                 pci_dev_id(dev) << 11 |
1388                 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1389 }
1390
1391 static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1392 {
1393         return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1394 }
1395
1396 /**
1397  * pci_msi_domain_check_cap - Verify that @domain supports the capabilities
1398  *                            for @dev
1399  * @domain:     The interrupt domain to check
1400  * @info:       The domain info for verification
1401  * @dev:        The device to check
1402  *
1403  * Returns:
1404  *  0 if the functionality is supported
1405  *  1 if Multi MSI is requested, but the domain does not support it
1406  *  -ENOTSUPP otherwise
1407  */
1408 int pci_msi_domain_check_cap(struct irq_domain *domain,
1409                              struct msi_domain_info *info, struct device *dev)
1410 {
1411         struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1412
1413         /* Special handling to support __pci_enable_msi_range() */
1414         if (pci_msi_desc_is_multi_msi(desc) &&
1415             !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1416                 return 1;
1417         else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1418                 return -ENOTSUPP;
1419
1420         return 0;
1421 }
1422
1423 static int pci_msi_domain_handle_error(struct irq_domain *domain,
1424                                        struct msi_desc *desc, int error)
1425 {
1426         /* Special handling to support __pci_enable_msi_range() */
1427         if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1428                 return 1;
1429
1430         return error;
1431 }
1432
1433 static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1434                                     struct msi_desc *desc)
1435 {
1436         arg->desc = desc;
1437         arg->hwirq = pci_msi_domain_calc_hwirq(desc);
1438 }
1439
1440 static struct msi_domain_ops pci_msi_domain_ops_default = {
1441         .set_desc       = pci_msi_domain_set_desc,
1442         .msi_check      = pci_msi_domain_check_cap,
1443         .handle_error   = pci_msi_domain_handle_error,
1444 };
1445
1446 static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1447 {
1448         struct msi_domain_ops *ops = info->ops;
1449
1450         if (ops == NULL) {
1451                 info->ops = &pci_msi_domain_ops_default;
1452         } else {
1453                 if (ops->set_desc == NULL)
1454                         ops->set_desc = pci_msi_domain_set_desc;
1455                 if (ops->msi_check == NULL)
1456                         ops->msi_check = pci_msi_domain_check_cap;
1457                 if (ops->handle_error == NULL)
1458                         ops->handle_error = pci_msi_domain_handle_error;
1459         }
1460 }
1461
1462 static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1463 {
1464         struct irq_chip *chip = info->chip;
1465
1466         BUG_ON(!chip);
1467         if (!chip->irq_write_msi_msg)
1468                 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1469         if (!chip->irq_mask)
1470                 chip->irq_mask = pci_msi_mask_irq;
1471         if (!chip->irq_unmask)
1472                 chip->irq_unmask = pci_msi_unmask_irq;
1473 }
1474
1475 /**
1476  * pci_msi_create_irq_domain - Create a MSI interrupt domain
1477  * @fwnode:     Optional fwnode of the interrupt controller
1478  * @info:       MSI domain info
1479  * @parent:     Parent irq domain
1480  *
1481  * Updates the domain and chip ops and creates a MSI interrupt domain.
1482  *
1483  * Returns:
1484  * A domain pointer or NULL in case of failure.
1485  */
1486 struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode,
1487                                              struct msi_domain_info *info,
1488                                              struct irq_domain *parent)
1489 {
1490         struct irq_domain *domain;
1491
1492         if (WARN_ON(info->flags & MSI_FLAG_LEVEL_CAPABLE))
1493                 info->flags &= ~MSI_FLAG_LEVEL_CAPABLE;
1494
1495         if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1496                 pci_msi_domain_update_dom_ops(info);
1497         if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1498                 pci_msi_domain_update_chip_ops(info);
1499
1500         info->flags |= MSI_FLAG_ACTIVATE_EARLY;
1501         if (IS_ENABLED(CONFIG_GENERIC_IRQ_RESERVATION_MODE))
1502                 info->flags |= MSI_FLAG_MUST_REACTIVATE;
1503
1504         /* PCI-MSI is oneshot-safe */
1505         info->chip->flags |= IRQCHIP_ONESHOT_SAFE;
1506
1507         domain = msi_create_irq_domain(fwnode, info, parent);
1508         if (!domain)
1509                 return NULL;
1510
1511         irq_domain_update_bus_token(domain, DOMAIN_BUS_PCI_MSI);
1512         return domain;
1513 }
1514 EXPORT_SYMBOL_GPL(pci_msi_create_irq_domain);
1515
1516 /*
1517  * Users of the generic MSI infrastructure expect a device to have a single ID,
1518  * so with DMA aliases we have to pick the least-worst compromise. Devices with
1519  * DMA phantom functions tend to still emit MSIs from the real function number,
1520  * so we ignore those and only consider topological aliases where either the
1521  * alias device or RID appears on a different bus number. We also make the
1522  * reasonable assumption that bridges are walked in an upstream direction (so
1523  * the last one seen wins), and the much braver assumption that the most likely
1524  * case is that of PCI->PCIe so we should always use the alias RID. This echoes
1525  * the logic from intel_irq_remapping's set_msi_sid(), which presumably works
1526  * well enough in practice; in the face of the horrible PCIe<->PCI-X conditions
1527  * for taking ownership all we can really do is close our eyes and hope...
1528  */
1529 static int get_msi_id_cb(struct pci_dev *pdev, u16 alias, void *data)
1530 {
1531         u32 *pa = data;
1532         u8 bus = PCI_BUS_NUM(*pa);
1533
1534         if (pdev->bus->number != bus || PCI_BUS_NUM(alias) != bus)
1535                 *pa = alias;
1536
1537         return 0;
1538 }
1539
1540 /**
1541  * pci_msi_domain_get_msi_rid - Get the MSI requester id (RID)
1542  * @domain:     The interrupt domain
1543  * @pdev:       The PCI device.
1544  *
1545  * The RID for a device is formed from the alias, with a firmware
1546  * supplied mapping applied
1547  *
1548  * Returns: The RID.
1549  */
1550 u32 pci_msi_domain_get_msi_rid(struct irq_domain *domain, struct pci_dev *pdev)
1551 {
1552         struct device_node *of_node;
1553         u32 rid = pci_dev_id(pdev);
1554
1555         pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1556
1557         of_node = irq_domain_get_of_node(domain);
1558         rid = of_node ? of_msi_map_id(&pdev->dev, of_node, rid) :
1559                         iort_msi_map_id(&pdev->dev, rid);
1560
1561         return rid;
1562 }
1563
1564 /**
1565  * pci_msi_get_device_domain - Get the MSI domain for a given PCI device
1566  * @pdev:       The PCI device
1567  *
1568  * Use the firmware data to find a device-specific MSI domain
1569  * (i.e. not one that is set as a default).
1570  *
1571  * Returns: The corresponding MSI domain or NULL if none has been found.
1572  */
1573 struct irq_domain *pci_msi_get_device_domain(struct pci_dev *pdev)
1574 {
1575         struct irq_domain *dom;
1576         u32 rid = pci_dev_id(pdev);
1577
1578         pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1579         dom = of_msi_map_get_device_domain(&pdev->dev, rid, DOMAIN_BUS_PCI_MSI);
1580         if (!dom)
1581                 dom = iort_get_device_domain(&pdev->dev, rid,
1582                                              DOMAIN_BUS_PCI_MSI);
1583         return dom;
1584 }
1585
1586 /**
1587  * pci_dev_has_special_msi_domain - Check whether the device is handled by
1588  *                                  a non-standard PCI-MSI domain
1589  * @pdev:       The PCI device to check.
1590  *
1591  * Returns: True if the device irqdomain or the bus irqdomain is
1592  * non-standard PCI/MSI.
1593  */
1594 bool pci_dev_has_special_msi_domain(struct pci_dev *pdev)
1595 {
1596         struct irq_domain *dom = dev_get_msi_domain(&pdev->dev);
1597
1598         if (!dom)
1599                 dom = dev_get_msi_domain(&pdev->bus->dev);
1600
1601         if (!dom)
1602                 return true;
1603
1604         return dom->bus_token != DOMAIN_BUS_PCI_MSI;
1605 }
1606
1607 #endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */
1608 #endif /* CONFIG_PCI_MSI */
1609
1610 void pci_msi_init(struct pci_dev *dev)
1611 {
1612         u16 ctrl;
1613
1614         /*
1615          * Disable the MSI hardware to avoid screaming interrupts
1616          * during boot.  This is the power on reset default so
1617          * usually this should be a noop.
1618          */
1619         dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1620         if (!dev->msi_cap)
1621                 return;
1622
1623         pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
1624         if (ctrl & PCI_MSI_FLAGS_ENABLE)
1625                 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS,
1626                                       ctrl & ~PCI_MSI_FLAGS_ENABLE);
1627
1628         if (!(ctrl & PCI_MSI_FLAGS_64BIT))
1629                 dev->no_64bit_msi = 1;
1630 }
1631
1632 void pci_msix_init(struct pci_dev *dev)
1633 {
1634         u16 ctrl;
1635
1636         dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1637         if (!dev->msix_cap)
1638                 return;
1639
1640         pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
1641         if (ctrl & PCI_MSIX_FLAGS_ENABLE)
1642                 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS,
1643                                       ctrl & ~PCI_MSIX_FLAGS_ENABLE);
1644 }