blob: d52d118979a6d31ca592e68fd5c54e654ee83024 [file] [log] [blame]
Bjorn Helgaas7328c8f2018-01-26 11:45:16 -06001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06003 * PCI Message Signaled Interrupt (MSI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
Christoph Hellwigaff17162016-07-12 18:20:17 +09007 * Copyright (C) 2016 Christoph Hellwig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Eric W. Biederman1ce03372006-10-04 02:16:41 -070010#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/irq.h>
13#include <linux/interrupt.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pci.h>
17#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070018#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070019#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090020#include <linux/errno.h>
21#include <linux/io.h>
Tomasz Nowickibe2021b2016-09-12 20:32:22 +020022#include <linux/acpi_iort.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Jiang Liu3878eae2014-11-11 21:02:18 +080024#include <linux/irqdomain.h>
David Daneyb6eec9b2015-10-08 15:10:49 -070025#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static int pci_msi_enable = 1;
Yijing Wang38737d82014-10-27 10:44:36 +080030int pci_msi_ignore_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Bjorn Helgaas527eee22013-04-17 17:44:48 -060032#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
33
Jiang Liu8e047ad2014-11-15 22:24:07 +080034#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
Jiang Liu8e047ad2014-11-15 22:24:07 +080035static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
36{
37 struct irq_domain *domain;
38
Christoph Hellwig47feb412017-02-08 18:17:43 +010039 domain = dev_get_msi_domain(&dev->dev);
Marc Zyngier3845d292015-12-04 10:28:14 -060040 if (domain && irq_domain_is_hierarchy(domain))
Christoph Hellwig699c4ce2017-02-08 18:17:44 +010041 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
Jiang Liu8e047ad2014-11-15 22:24:07 +080042
43 return arch_setup_msi_irqs(dev, nvec, type);
44}
45
46static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
47{
48 struct irq_domain *domain;
49
Christoph Hellwig47feb412017-02-08 18:17:43 +010050 domain = dev_get_msi_domain(&dev->dev);
Marc Zyngier3845d292015-12-04 10:28:14 -060051 if (domain && irq_domain_is_hierarchy(domain))
Christoph Hellwig699c4ce2017-02-08 18:17:44 +010052 msi_domain_free_irqs(domain, &dev->dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080053 else
54 arch_teardown_msi_irqs(dev);
55}
56#else
57#define pci_msi_setup_msi_irqs arch_setup_msi_irqs
58#define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
59#endif
Bjorn Helgaas527eee22013-04-17 17:44:48 -060060
Thomas Gleixner077ee782020-08-26 13:17:02 +020061#ifdef CONFIG_PCI_MSI_ARCH_FALLBACKS
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010062/* Arch hooks */
Thomas Petazzoni4287d822013-08-09 22:27:06 +020063int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
64{
Lorenzo Pieralisi2291ec02015-08-03 22:04:06 -050065 struct msi_controller *chip = dev->bus->msi;
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020066 int err;
67
68 if (!chip || !chip->setup_irq)
69 return -EINVAL;
70
71 err = chip->setup_irq(chip, dev, desc);
72 if (err < 0)
73 return err;
74
75 irq_set_chip_data(desc->irq, chip);
76
77 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020078}
79
80void __weak arch_teardown_msi_irq(unsigned int irq)
81{
Yijing Wangc2791b82014-11-11 17:45:45 -070082 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020083
84 if (!chip || !chip->teardown_irq)
85 return;
86
87 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +020088}
89
Thomas Petazzoni4287d822013-08-09 22:27:06 +020090int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010091{
Lucas Stach339e5b42015-09-18 13:58:34 -050092 struct msi_controller *chip = dev->bus->msi;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010093 struct msi_desc *entry;
94 int ret;
95
Lucas Stach339e5b42015-09-18 13:58:34 -050096 if (chip && chip->setup_irqs)
97 return chip->setup_irqs(chip, dev, nvec, type);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040098 /*
99 * If an architecture wants to support multiple MSI, it needs to
100 * override arch_setup_msi_irqs()
101 */
102 if (type == PCI_CAP_ID_MSI && nvec > 1)
103 return 1;
104
Jiang Liu5004e982015-07-09 16:00:41 +0800105 for_each_pci_msi_entry(entry, dev) {
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100106 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100107 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100108 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100109 if (ret > 0)
110 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100111 }
112
113 return 0;
114}
115
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200116/*
117 * We have a default implementation available as a separate non-weak
118 * function, as it is used by the Xen x86 PCI code
119 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400120void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100121{
Jiang Liu63a7b172014-11-06 22:20:32 +0800122 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100123 struct msi_desc *entry;
124
Jiang Liu5004e982015-07-09 16:00:41 +0800125 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800126 if (entry->irq)
127 for (i = 0; i < entry->nvec_used; i++)
128 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100129}
130
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200131void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
132{
133 return default_teardown_msi_irqs(dev);
134}
Thomas Gleixner077ee782020-08-26 13:17:02 +0200135#endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS */
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500136
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800137static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500138{
139 struct msi_desc *entry;
140
141 entry = NULL;
142 if (dev->msix_enabled) {
Jiang Liu5004e982015-07-09 16:00:41 +0800143 for_each_pci_msi_entry(entry, dev) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500144 if (irq == entry->irq)
145 break;
146 }
147 } else if (dev->msi_enabled) {
148 entry = irq_get_msi_desc(irq);
149 }
150
151 if (entry)
Jiang Liu83a18912014-11-09 23:10:34 +0800152 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500153}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200154
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800155void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200156{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800157 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200158}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500159
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500160static inline __attribute_const__ u32 msi_mask(unsigned x)
161{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700162 /* Don't shift by >= width of type */
163 if (x >= 5)
164 return 0xffffffff;
165 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500166}
167
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600168/*
169 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
170 * mask all MSI interrupts by clearing the MSI enable bit does not work
171 * reliably as devices without an INTx disable bit will then generate a
172 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600173 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100174u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400176 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Yijing Wang38737d82014-10-27 10:44:36 +0800178 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900179 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400180
181 mask_bits &= ~mask;
182 mask_bits |= flag;
Jiang Liue39758e2015-07-09 16:00:43 +0800183 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
184 mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900185
186 return mask_bits;
187}
188
189static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
190{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100191 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400192}
193
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900194static void __iomem *pci_msix_desc_addr(struct msi_desc *desc)
195{
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600196 if (desc->msi_attrib.is_virtual)
197 return NULL;
198
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900199 return desc->mask_base +
200 desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
201}
202
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400203/*
204 * This internal function does not flush PCI writes to the device.
205 * All users must ensure that they read from the device before either
206 * assuming that the device state is up to date, or returning out of this
207 * file. This saves a few milliseconds when initialising devices with lots
208 * of MSI-X interrupts.
209 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100210u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400211{
212 u32 mask_bits = desc->masked;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600213 void __iomem *desc_addr;
Yijing Wang38737d82014-10-27 10:44:36 +0800214
215 if (pci_msi_ignore_mask)
216 return 0;
Jian-Hong Pane045fa22019-10-08 11:42:39 +0800217
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600218 desc_addr = pci_msix_desc_addr(desc);
219 if (!desc_addr)
220 return 0;
Yijing Wang38737d82014-10-27 10:44:36 +0800221
Sheng Yang8d805282010-11-11 15:46:55 +0800222 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
Jian-Hong Pane045fa22019-10-08 11:42:39 +0800223 if (flag & PCI_MSIX_ENTRY_CTRL_MASKBIT)
Sheng Yang8d805282010-11-11 15:46:55 +0800224 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600225
226 writel(mask_bits, desc_addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900227
228 return mask_bits;
229}
230
231static void msix_mask_irq(struct msi_desc *desc, u32 flag)
232{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100233 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400234}
235
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200236static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400237{
Jiang Liuc391f262015-06-01 16:05:41 +0800238 struct msi_desc *desc = irq_data_get_msi_desc(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400239
240 if (desc->msi_attrib.is_msix) {
241 msix_mask_irq(desc, flag);
242 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400243 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800244 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400245 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400247}
248
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100249/**
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500250 * pci_msi_mask_irq - Generic IRQ chip callback to mask PCI/MSI interrupts
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100251 * @data: pointer to irqdata associated to that interrupt
252 */
253void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400254{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200255 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400256}
Jake Oshinsa4289dc2015-12-10 17:52:59 +0000257EXPORT_SYMBOL_GPL(pci_msi_mask_irq);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400258
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100259/**
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500260 * pci_msi_unmask_irq - Generic IRQ chip callback to unmask PCI/MSI interrupts
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100261 * @data: pointer to irqdata associated to that interrupt
262 */
263void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400264{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200265 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
Jake Oshinsa4289dc2015-12-10 17:52:59 +0000267EXPORT_SYMBOL_GPL(pci_msi_unmask_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800269void default_restore_msi_irqs(struct pci_dev *dev)
270{
271 struct msi_desc *entry;
272
Jiang Liu5004e982015-07-09 16:00:41 +0800273 for_each_pci_msi_entry(entry, dev)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800274 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800275}
276
Jiang Liu891d4a42014-11-09 23:10:33 +0800277void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700278{
Jiang Liue39758e2015-07-09 16:00:43 +0800279 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
280
281 BUG_ON(dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700282
Ben Hutchings30da5522010-07-23 14:56:28 +0100283 if (entry->msi_attrib.is_msix) {
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900284 void __iomem *base = pci_msix_desc_addr(entry);
Ben Hutchings30da5522010-07-23 14:56:28 +0100285
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600286 if (!base) {
287 WARN_ON(1);
288 return;
289 }
290
Ben Hutchings30da5522010-07-23 14:56:28 +0100291 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
292 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
293 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
294 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600295 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100296 u16 data;
297
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600298 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
299 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100300 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600301 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
302 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600303 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100304 } else {
305 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600306 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100307 }
308 msg->data = data;
309 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700310}
311
Jiang Liu83a18912014-11-09 23:10:34 +0800312void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800313{
Jiang Liue39758e2015-07-09 16:00:43 +0800314 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
315
Keith Busch01705912017-03-29 22:49:11 -0500316 if (dev->current_state != PCI_D0 || pci_dev_is_disconnected(dev)) {
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100317 /* Don't touch the hardware now */
318 } else if (entry->msi_attrib.is_msix) {
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900319 void __iomem *base = pci_msix_desc_addr(entry);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400320
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600321 if (!base)
322 goto skip;
323
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900324 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
325 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
326 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400327 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600328 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400329 u16 msgctl;
330
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600331 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400332 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
333 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600334 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700335
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600336 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
337 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700338 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600339 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
340 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600341 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
342 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700343 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600344 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
345 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700346 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700347 }
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600348
349skip:
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700350 entry->msg = *msg;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600351
352 if (entry->write_msi_msg)
353 entry->write_msi_msg(entry, entry->write_msi_msg_data);
354
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700355}
356
Jiang Liu83a18912014-11-09 23:10:34 +0800357void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800358{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200359 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800360
Jiang Liu83a18912014-11-09 23:10:34 +0800361 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800362}
Jiang Liu83a18912014-11-09 23:10:34 +0800363EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800364
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900365static void free_msi_irqs(struct pci_dev *dev)
366{
Jiang Liu5004e982015-07-09 16:00:41 +0800367 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900368 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800369 struct attribute **msi_attrs;
370 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800371 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900372
Jiang Liu5004e982015-07-09 16:00:41 +0800373 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800374 if (entry->irq)
375 for (i = 0; i < entry->nvec_used; i++)
376 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900377
Jiang Liu8e047ad2014-11-15 22:24:07 +0800378 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900379
Jiang Liu5004e982015-07-09 16:00:41 +0800380 list_for_each_entry_safe(entry, tmp, msi_list, list) {
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900381 if (entry->msi_attrib.is_msix) {
Jiang Liu5004e982015-07-09 16:00:41 +0800382 if (list_is_last(&entry->list, msi_list))
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900383 iounmap(entry->mask_base);
384 }
Neil Horman424eb392012-01-03 10:29:54 -0500385
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900386 list_del(&entry->list);
Prarit Bhargava81efbad2017-02-15 11:53:08 -0500387 free_msi_entry(entry);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900388 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800389
390 if (dev->msi_irq_groups) {
391 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
392 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700393 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800394 dev_attr = container_of(msi_attrs[count],
395 struct device_attribute, attr);
396 kfree(dev_attr->attr.name);
397 kfree(dev_attr);
398 ++count;
399 }
400 kfree(msi_attrs);
401 kfree(dev->msi_irq_groups[0]);
402 kfree(dev->msi_irq_groups);
403 dev->msi_irq_groups = NULL;
404 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900405}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900406
David Millerba698ad2007-10-25 01:16:30 -0700407static void pci_intx_for_msi(struct pci_dev *dev, int enable)
408{
409 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
410 pci_intx(dev, enable);
411}
412
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100413static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800414{
Shaohua Li41017f02006-02-08 17:11:38 +0800415 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700416 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800417
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800418 if (!dev->msi_enabled)
419 return;
420
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200421 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800422
David Millerba698ad2007-10-25 01:16:30 -0700423 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500424 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800425 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700426
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600427 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800428 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
429 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700430 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400431 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600432 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100433}
434
435static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800436{
Shaohua Li41017f02006-02-08 17:11:38 +0800437 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800438
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700439 if (!dev->msix_enabled)
440 return;
Jiang Liu5004e982015-07-09 16:00:41 +0800441 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700442
Shaohua Li41017f02006-02-08 17:11:38 +0800443 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700444 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500445 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800446 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800447
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800448 arch_restore_msi_irqs(dev);
Jiang Liu5004e982015-07-09 16:00:41 +0800449 for_each_pci_msi_entry(entry, dev)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400450 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800451
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500452 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800453}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100454
455void pci_restore_msi_state(struct pci_dev *dev)
456{
457 __pci_restore_msi_state(dev);
458 __pci_restore_msix_state(dev);
459}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600460EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800461
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800462static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400463 char *buf)
464{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800465 struct msi_desc *entry;
466 unsigned long irq;
467 int retval;
468
469 retval = kstrtoul(attr->attr.name, 10, &irq);
470 if (retval)
471 return retval;
472
Yijing Wange11ece52014-07-08 10:09:19 +0800473 entry = irq_get_msi_desc(irq);
474 if (entry)
475 return sprintf(buf, "%s\n",
476 entry->msi_attrib.is_msix ? "msix" : "msi");
477
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800478 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400479}
480
Neil Hormanda8d1c82011-10-06 14:08:18 -0400481static int populate_msi_sysfs(struct pci_dev *pdev)
482{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800483 struct attribute **msi_attrs;
484 struct attribute *msi_attr;
485 struct device_attribute *msi_dev_attr;
486 struct attribute_group *msi_irq_group;
487 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400488 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800489 int ret = -ENOMEM;
490 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400491 int count = 0;
Romain Bezuta8676062015-09-24 01:31:16 +0200492 int i;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400493
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800494 /* Determine how many msi entries we have */
Jiang Liu5004e982015-07-09 16:00:41 +0800495 for_each_pci_msi_entry(entry, pdev)
Romain Bezuta8676062015-09-24 01:31:16 +0200496 num_msi += entry->nvec_used;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497 if (!num_msi)
498 return 0;
499
500 /* Dynamically create the MSI attributes for the PCI device */
Kees Cook6396bb22018-06-12 14:03:40 -0700501 msi_attrs = kcalloc(num_msi + 1, sizeof(void *), GFP_KERNEL);
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800502 if (!msi_attrs)
503 return -ENOMEM;
Jiang Liu5004e982015-07-09 16:00:41 +0800504 for_each_pci_msi_entry(entry, pdev) {
Romain Bezuta8676062015-09-24 01:31:16 +0200505 for (i = 0; i < entry->nvec_used; i++) {
506 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
507 if (!msi_dev_attr)
508 goto error_attrs;
509 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700510
Romain Bezuta8676062015-09-24 01:31:16 +0200511 sysfs_attr_init(&msi_dev_attr->attr);
512 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
513 entry->irq + i);
514 if (!msi_dev_attr->attr.name)
515 goto error_attrs;
516 msi_dev_attr->attr.mode = S_IRUGO;
517 msi_dev_attr->show = msi_mode_show;
518 ++count;
519 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800520 }
521
522 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
523 if (!msi_irq_group)
524 goto error_attrs;
525 msi_irq_group->name = "msi_irqs";
526 msi_irq_group->attrs = msi_attrs;
527
Kees Cook6396bb22018-06-12 14:03:40 -0700528 msi_irq_groups = kcalloc(2, sizeof(void *), GFP_KERNEL);
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800529 if (!msi_irq_groups)
530 goto error_irq_group;
531 msi_irq_groups[0] = msi_irq_group;
532
533 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
534 if (ret)
535 goto error_irq_groups;
536 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400537
538 return 0;
539
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800540error_irq_groups:
541 kfree(msi_irq_groups);
542error_irq_group:
543 kfree(msi_irq_group);
544error_attrs:
545 count = 0;
546 msi_attr = msi_attrs[count];
547 while (msi_attr) {
548 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
549 kfree(msi_attr->name);
550 kfree(msi_dev_attr);
551 ++count;
552 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400553 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700554 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400555 return ret;
556}
557
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200558static struct msi_desc *
Ming Leic66d4bd2019-02-16 18:13:09 +0100559msi_setup_entry(struct pci_dev *dev, int nvec, struct irq_affinity *affd)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800560{
Dou Liyangbec04032018-12-04 23:51:20 +0800561 struct irq_affinity_desc *masks = NULL;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800562 struct msi_desc *entry;
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200563 u16 control;
564
Christoph Hellwig8e1101d2017-08-25 18:58:42 -0500565 if (affd)
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800566 masks = irq_create_affinity_masks(nvec, affd);
Christoph Hellwig8e1101d2017-08-25 18:58:42 -0500567
Yijing Wangd873b4d2014-07-08 10:07:23 +0800568 /* MSI Entry Initialization */
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200569 entry = alloc_msi_entry(&dev->dev, nvec, masks);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800570 if (!entry)
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200571 goto out;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800572
573 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
574
575 entry->msi_attrib.is_msix = 0;
576 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600577 entry->msi_attrib.is_virtual = 0;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800578 entry->msi_attrib.entry_nr = 0;
579 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
580 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800581 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800582 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
Yijing Wangd873b4d2014-07-08 10:07:23 +0800583
584 if (control & PCI_MSI_FLAGS_64BIT)
585 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
586 else
587 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
588
589 /* Save the initial mask status */
590 if (entry->msi_attrib.maskbit)
591 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
592
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200593out:
594 kfree(masks);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800595 return entry;
596}
597
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000598static int msi_verify_entries(struct pci_dev *dev)
599{
600 struct msi_desc *entry;
601
Jiang Liu5004e982015-07-09 16:00:41 +0800602 for_each_pci_msi_entry(entry, dev) {
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000603 if (!dev->no_64bit_msi || !entry->msg.address_hi)
604 continue;
Frederick Lawler7506dc72018-01-18 12:55:24 -0600605 pci_err(dev, "Device has broken 64-bit MSI but arch"
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000606 " tried to assign one above 4G\n");
607 return -EIO;
608 }
609 return 0;
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/**
613 * msi_capability_init - configure device's MSI capability structure
614 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400615 * @nvec: number of interrupts to allocate
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500616 * @affd: description of automatic IRQ affinity assignments (may be %NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400618 * Setup the MSI capability structure of the device with the requested
619 * number of interrupts. A return value of zero indicates the successful
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500620 * setup of an entry with the new MSI IRQ. A negative return value indicates
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400621 * an error, and a positive return value indicates the number of interrupts
622 * which could have been allocated.
623 */
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800624static int msi_capability_init(struct pci_dev *dev, int nvec,
Ming Leic66d4bd2019-02-16 18:13:09 +0100625 struct irq_affinity *affd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000628 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400629 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500631 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600632
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800633 entry = msi_setup_entry(dev, nvec, affd);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700634 if (!entry)
635 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700636
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500637 /* All MSIs are unmasked by default; mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800638 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400639 msi_mask_irq(entry, mask, mask);
640
Jiang Liu5004e982015-07-09 16:00:41 +0800641 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Michael Ellerman9c831332007-04-18 19:39:21 +1000642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800644 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000645 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900646 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900647 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000648 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500649 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700650
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000651 ret = msi_verify_entries(dev);
652 if (ret) {
653 msi_mask_irq(entry, mask, ~mask);
654 free_msi_irqs(dev);
655 return ret;
656 }
657
Neil Hormanda8d1c82011-10-06 14:08:18 -0400658 ret = populate_msi_sysfs(dev);
659 if (ret) {
660 msi_mask_irq(entry, mask, ~mask);
661 free_msi_irqs(dev);
662 return ret;
663 }
664
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500665 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700666 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500667 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800668 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jiang Liu5f226992015-07-30 14:00:08 -0500670 pcibios_free_irq(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000671 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return 0;
673}
674
Gavin Shan520fe9d2013-04-04 16:54:33 +0000675static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900676{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900677 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900678 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800679 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900680 u8 bir;
681
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600682 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
683 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600684 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800685 flags = pci_resource_flags(dev, bir);
686 if (!flags || (flags & IORESOURCE_UNSET))
687 return NULL;
688
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600689 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900690 phys_addr = pci_resource_start(dev, bir) + table_offset;
691
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100692 return ioremap(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900693}
694
Gavin Shan520fe9d2013-04-04 16:54:33 +0000695static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200696 struct msix_entry *entries, int nvec,
Ming Leic66d4bd2019-02-16 18:13:09 +0100697 struct irq_affinity *affd)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900698{
Dou Liyangbec04032018-12-04 23:51:20 +0800699 struct irq_affinity_desc *curmsk, *masks = NULL;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900700 struct msi_desc *entry;
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200701 int ret, i;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600702 int vec_count = pci_msix_vec_count(dev);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900703
Christoph Hellwig8e1101d2017-08-25 18:58:42 -0500704 if (affd)
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800705 masks = irq_create_affinity_masks(nvec, affd);
Christoph Hellwig4ef33682016-07-12 18:20:18 +0900706
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200707 for (i = 0, curmsk = masks; i < nvec; i++) {
708 entry = alloc_msi_entry(&dev->dev, 1, curmsk);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900709 if (!entry) {
710 if (!i)
711 iounmap(base);
712 else
713 free_msi_irqs(dev);
714 /* No enough memory. Don't try again */
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200715 ret = -ENOMEM;
716 goto out;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900717 }
718
719 entry->msi_attrib.is_msix = 1;
720 entry->msi_attrib.is_64 = 1;
Christoph Hellwig3ac020e2016-07-12 18:20:16 +0900721 if (entries)
722 entry->msi_attrib.entry_nr = entries[i].entry;
723 else
724 entry->msi_attrib.entry_nr = i;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600725
726 entry->msi_attrib.is_virtual =
727 entry->msi_attrib.entry_nr >= vec_count;
728
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900729 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900730 entry->mask_base = base;
731
Jiang Liu5004e982015-07-09 16:00:41 +0800732 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200733 if (masks)
734 curmsk++;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900735 }
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200736 ret = 0;
737out:
738 kfree(masks);
Christophe JAILLET3adfb572017-01-27 16:14:53 +0100739 return ret;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900740}
741
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900742static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000743 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900744{
745 struct msi_desc *entry;
746 int i = 0;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600747 void __iomem *desc_addr;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900748
Jiang Liu5004e982015-07-09 16:00:41 +0800749 for_each_pci_msi_entry(entry, dev) {
Christoph Hellwig3ac020e2016-07-12 18:20:16 +0900750 if (entries)
751 entries[i++].vector = entry->irq;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600752
753 desc_addr = pci_msix_desc_addr(entry);
754 if (desc_addr)
755 entry->masked = readl(desc_addr +
756 PCI_MSIX_ENTRY_VECTOR_CTRL);
757 else
758 entry->masked = 0;
759
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900760 msix_mask_irq(entry, 1);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900761 }
762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/**
765 * msix_capability_init - configure device's MSI-X capability
766 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700767 * @entries: pointer to an array of struct msix_entry entries
768 * @nvec: number of @entries
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500769 * @affd: Optional pointer to enable automatic affinity assignment
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600771 * Setup the MSI-X capability structure of device function with a
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500772 * single MSI-X IRQ. A return of zero indicates the successful setup of
773 * requested MSI-X entries with allocated IRQs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 **/
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200775static int msix_capability_init(struct pci_dev *dev, struct msix_entry *entries,
Ming Leic66d4bd2019-02-16 18:13:09 +0100776 int nvec, struct irq_affinity *affd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000778 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900779 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 void __iomem *base;
781
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700782 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500783 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700784
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800785 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600787 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900788 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return -ENOMEM;
790
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800791 ret = msix_setup_entries(dev, base, entries, nvec, affd);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900792 if (ret)
793 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000794
Jiang Liu8e047ad2014-11-15 22:24:07 +0800795 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900796 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100797 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000798
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000799 /* Check if all MSI entries honor device restrictions */
800 ret = msi_verify_entries(dev);
801 if (ret)
802 goto out_free;
803
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700804 /*
805 * Some devices require MSI-X to be enabled before we can touch the
806 * MSI-X registers. We need to mask all the vectors to prevent
807 * interrupts coming in before they're fully set up.
808 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500809 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800810 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700811
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900812 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700813
Neil Hormanda8d1c82011-10-06 14:08:18 -0400814 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100815 if (ret)
816 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400817
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700818 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700819 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800820 dev->msix_enabled = 1;
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500821 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600822
Jiang Liu5f226992015-07-30 14:00:08 -0500823 pcibios_free_irq(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900825
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100826out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900827 if (ret < 0) {
828 /*
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500829 * If we had some success, report the number of IRQs
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900830 * we succeeded in setting up.
831 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900832 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900833 int avail = 0;
834
Jiang Liu5004e982015-07-09 16:00:41 +0800835 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900836 if (entry->irq != 0)
837 avail++;
838 }
839 if (avail != 0)
840 ret = avail;
841 }
842
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100843out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900844 free_msi_irqs(dev);
845
846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
849/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600850 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400851 * @dev: pointer to the pci_dev data structure of MSI device function
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500852 * @nvec: how many MSIs have been requested?
Brice Goglin24334a12006-08-31 01:55:07 -0400853 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700854 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000855 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600856 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400857 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600858static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400859{
860 struct pci_bus *bus;
861
Brice Goglin0306ebf2006-10-05 10:24:31 +0200862 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600863 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600864 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600865
Bjorn Helgaas901c4dd2019-10-14 16:17:05 -0500866 if (!dev || dev->no_msi)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600867 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400868
Michael Ellerman314e77b2007-04-05 17:19:12 +1000869 /*
870 * You can't ask to have 0 or less MSIs configured.
871 * a) it's stupid ..
872 * b) the list manipulation code assumes nvec >= 1.
873 */
874 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600875 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000876
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900877 /*
878 * Any bridge which does NOT route MSI transactions from its
879 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200880 * the secondary pci_bus.
881 * We expect only arch-specific PCI host bus controller driver
882 * or quirks for specific PCI bridges to be setting NO_MSI.
883 */
Brice Goglin24334a12006-08-31 01:55:07 -0400884 for (bus = dev->bus; bus; bus = bus->parent)
885 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600886 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400887
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600888 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400889}
890
891/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100892 * pci_msi_vec_count - Return the number of MSI vectors a device can send
893 * @dev: device to report about
894 *
895 * This function returns the number of MSI vectors a device requested via
896 * Multiple Message Capable register. It returns a negative errno if the
897 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
898 * and returns a power of two, up to a maximum of 2^5 (32), according to the
899 * MSI specification.
900 **/
901int pci_msi_vec_count(struct pci_dev *dev)
902{
903 int ret;
904 u16 msgctl;
905
906 if (!dev->msi_cap)
907 return -EINVAL;
908
909 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
910 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
911
912 return ret;
913}
914EXPORT_SYMBOL(pci_msi_vec_count);
915
Bjorn Helgaas688769f2017-03-09 15:45:14 -0600916static void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400918 struct msi_desc *desc;
919 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100921 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700922 return;
923
Jiang Liu5004e982015-07-09 16:00:41 +0800924 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Jiang Liu4a7cc832015-07-09 16:00:44 +0800925 desc = first_pci_msi_entry(dev);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600926
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500927 pci_msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700928 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800929 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700930
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900931 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800932 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900933 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100934 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100935
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500936 /* Restore dev->irq to its default pin-assertion IRQ */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400937 dev->irq = desc->msi_attrib.default_irq;
Jiang Liu5f226992015-07-30 14:00:08 -0500938 pcibios_alloc_irq(dev);
Yinghai Lud52877c2008-04-23 14:58:09 -0700939}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400940
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900941void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700942{
Yinghai Lud52877c2008-04-23 14:58:09 -0700943 if (!pci_msi_enable || !dev || !dev->msi_enabled)
944 return;
945
946 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900947 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100949EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100952 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100953 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100954 * This function returns the number of device's MSI-X table entries and
955 * therefore the number of MSI-X vectors device is capable of sending.
956 * It returns a negative errno if the device is not capable of sending MSI-X
957 * interrupts.
958 **/
959int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100960{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100961 u16 control;
962
Gavin Shan520fe9d2013-04-04 16:54:33 +0000963 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100964 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100965
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600966 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600967 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100968}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100969EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100970
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200971static int __pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries,
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600972 int nvec, struct irq_affinity *affd, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600974 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700975 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Bjorn Helgaas901c4dd2019-10-14 16:17:05 -0500977 if (!pci_msi_supported(dev, nvec) || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600978 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000979
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100980 nr_entries = pci_msix_vec_count(dev);
981 if (nr_entries < 0)
982 return nr_entries;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600983 if (nvec > nr_entries && !(flags & PCI_IRQ_VIRTUAL))
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300984 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Christoph Hellwig3ac020e2016-07-12 18:20:16 +0900986 if (entries) {
987 /* Check for any invalid entries */
988 for (i = 0; i < nvec; i++) {
989 if (entries[i].entry >= nr_entries)
990 return -EINVAL; /* invalid entry */
991 for (j = i + 1; j < nvec; j++) {
992 if (entries[i].entry == entries[j].entry)
993 return -EINVAL; /* duplicate entry */
994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996 }
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700997
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500998 /* Check whether driver already requested for MSI IRQ */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900999 if (dev->msi_enabled) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001000 pci_info(dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -EINVAL;
1002 }
Christoph Hellwig61e1c592016-11-08 17:15:04 -08001003 return msix_capability_init(dev, entries, nvec, affd);
Thomas Gleixnere75eafb2016-09-14 16:18:49 +02001004}
1005
Bjorn Helgaas688769f2017-03-09 15:45:14 -06001006static void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +11001007{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001008 struct msi_desc *entry;
1009
Michael Ellerman128bc5f2007-03-22 21:51:39 +11001010 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -07001011 return;
1012
Keith Busch01705912017-03-29 22:49:11 -05001013 if (pci_dev_is_disconnected(dev)) {
1014 dev->msix_enabled = 0;
1015 return;
1016 }
1017
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001018 /* Return the device with MSI-X masked as initial states */
Jiang Liu5004e982015-07-09 16:00:41 +08001019 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001020 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +01001021 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001022 }
1023
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -05001024 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -07001025 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001026 dev->msix_enabled = 0;
Jiang Liu5f226992015-07-30 14:00:08 -05001027 pcibios_alloc_irq(dev);
Yinghai Lud52877c2008-04-23 14:58:09 -07001028}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001029
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001030void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001031{
1032 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1033 return;
1034
1035 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001036 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001038EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001040void pci_no_msi(void)
1041{
1042 pci_msi_enable = 0;
1043}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001044
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001045/**
1046 * pci_msi_enabled - is MSI enabled?
1047 *
1048 * Returns true if MSI has not been disabled by the command-line option
1049 * pci=nomsi.
1050 **/
1051int pci_msi_enabled(void)
1052{
1053 return pci_msi_enable;
1054}
1055EXPORT_SYMBOL(pci_msi_enabled);
1056
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001057static int __pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec,
Ming Leic66d4bd2019-02-16 18:13:09 +01001058 struct irq_affinity *affd)
Alexander Gordeev302a2522013-12-30 08:28:16 +01001059{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001060 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001061 int rc;
1062
Bjorn Helgaas901c4dd2019-10-14 16:17:05 -05001063 if (!pci_msi_supported(dev, minvec) || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001064 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001065
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -05001066 /* Check whether driver already requested MSI-X IRQs */
Alexander Gordeev034cd972014-04-14 15:28:35 +02001067 if (dev->msix_enabled) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001068 pci_info(dev, "can't enable MSI (MSI-X already enabled)\n");
Alexander Gordeev034cd972014-04-14 15:28:35 +02001069 return -EINVAL;
1070 }
1071
Alexander Gordeev302a2522013-12-30 08:28:16 +01001072 if (maxvec < minvec)
1073 return -ERANGE;
1074
Tonghao Zhang4c1ef722018-09-24 07:00:41 -07001075 if (WARN_ON_ONCE(dev->msi_enabled))
1076 return -EINVAL;
1077
Alexander Gordeev034cd972014-04-14 15:28:35 +02001078 nvec = pci_msi_vec_count(dev);
1079 if (nvec < 0)
1080 return nvec;
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001081 if (nvec < minvec)
Dennis Chen948b7622016-12-01 10:15:04 +08001082 return -ENOSPC;
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001083
1084 if (nvec > maxvec)
Alexander Gordeev034cd972014-04-14 15:28:35 +02001085 nvec = maxvec;
1086
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001087 for (;;) {
Christoph Hellwig61e1c592016-11-08 17:15:04 -08001088 if (affd) {
Michael Hernandez6f9a22b2017-05-18 10:47:47 -07001089 nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001090 if (nvec < minvec)
Alexander Gordeev302a2522013-12-30 08:28:16 +01001091 return -ENOSPC;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001092 }
Alexander Gordeev302a2522013-12-30 08:28:16 +01001093
Christoph Hellwig61e1c592016-11-08 17:15:04 -08001094 rc = msi_capability_init(dev, nvec, affd);
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001095 if (rc == 0)
1096 return nvec;
1097
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001098 if (rc < 0)
1099 return rc;
1100 if (rc < minvec)
1101 return -ENOSPC;
1102
1103 nvec = rc;
1104 }
1105}
1106
Christoph Hellwig4fe03952017-01-09 21:37:40 +01001107/* deprecated, don't use */
1108int pci_enable_msi(struct pci_dev *dev)
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001109{
Christoph Hellwig4fe03952017-01-09 21:37:40 +01001110 int rc = __pci_enable_msi_range(dev, 1, 1, NULL);
1111 if (rc < 0)
1112 return rc;
1113 return 0;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001114}
Christoph Hellwig4fe03952017-01-09 21:37:40 +01001115EXPORT_SYMBOL(pci_enable_msi);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001116
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001117static int __pci_enable_msix_range(struct pci_dev *dev,
Christoph Hellwig61e1c592016-11-08 17:15:04 -08001118 struct msix_entry *entries, int minvec,
Logan Gunthorped7cc6092019-05-23 16:30:51 -06001119 int maxvec, struct irq_affinity *affd,
1120 int flags)
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001121{
Thomas Gleixnere75eafb2016-09-14 16:18:49 +02001122 int rc, nvec = maxvec;
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001123
1124 if (maxvec < minvec)
1125 return -ERANGE;
1126
Tonghao Zhang4c1ef722018-09-24 07:00:41 -07001127 if (WARN_ON_ONCE(dev->msix_enabled))
1128 return -EINVAL;
1129
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001130 for (;;) {
Christoph Hellwig61e1c592016-11-08 17:15:04 -08001131 if (affd) {
Michael Hernandez6f9a22b2017-05-18 10:47:47 -07001132 nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001133 if (nvec < minvec)
1134 return -ENOSPC;
1135 }
1136
Logan Gunthorped7cc6092019-05-23 16:30:51 -06001137 rc = __pci_enable_msix(dev, entries, nvec, affd, flags);
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001138 if (rc == 0)
1139 return nvec;
1140
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001141 if (rc < 0)
1142 return rc;
1143 if (rc < minvec)
1144 return -ENOSPC;
1145
1146 nvec = rc;
1147 }
1148}
1149
Alexander Gordeev302a2522013-12-30 08:28:16 +01001150/**
1151 * pci_enable_msix_range - configure device's MSI-X capability structure
1152 * @dev: pointer to the pci_dev data structure of MSI-X device function
1153 * @entries: pointer to an array of MSI-X entries
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -05001154 * @minvec: minimum number of MSI-X IRQs requested
1155 * @maxvec: maximum number of MSI-X IRQs requested
Alexander Gordeev302a2522013-12-30 08:28:16 +01001156 *
1157 * Setup the MSI-X capability structure of device function with a maximum
1158 * possible number of interrupts in the range between @minvec and @maxvec
1159 * upon its software driver call to request for MSI-X mode enabled on its
1160 * hardware device function. It returns a negative errno if an error occurs.
1161 * If it succeeds, it returns the actual number of interrupts allocated and
1162 * indicates the successful configuration of MSI-X capability structure
1163 * with new allocated MSI-X interrupts.
1164 **/
1165int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
Christoph Hellwig4ef33682016-07-12 18:20:18 +09001166 int minvec, int maxvec)
Alexander Gordeev302a2522013-12-30 08:28:16 +01001167{
Logan Gunthorped7cc6092019-05-23 16:30:51 -06001168 return __pci_enable_msix_range(dev, entries, minvec, maxvec, NULL, 0);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001169}
1170EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001171
Christoph Hellwigaff17162016-07-12 18:20:17 +09001172/**
Christoph Hellwig402723a2016-11-08 17:15:05 -08001173 * pci_alloc_irq_vectors_affinity - allocate multiple IRQs for a device
Christoph Hellwigaff17162016-07-12 18:20:17 +09001174 * @dev: PCI device to operate on
1175 * @min_vecs: minimum number of vectors required (must be >= 1)
1176 * @max_vecs: maximum (desired) number of vectors
1177 * @flags: flags or quirks for the allocation
Christoph Hellwig402723a2016-11-08 17:15:05 -08001178 * @affd: optional description of the affinity requirements
Christoph Hellwigaff17162016-07-12 18:20:17 +09001179 *
1180 * Allocate up to @max_vecs interrupt vectors for @dev, using MSI-X or MSI
1181 * vectors if available, and fall back to a single legacy vector
1182 * if neither is available. Return the number of vectors allocated,
1183 * (which might be smaller than @max_vecs) if successful, or a negative
1184 * error code on error. If less than @min_vecs interrupt vectors are
1185 * available for @dev the function will fail with -ENOSPC.
1186 *
1187 * To get the Linux IRQ number used for a vector that can be passed to
1188 * request_irq() use the pci_irq_vector() helper.
1189 */
Christoph Hellwig402723a2016-11-08 17:15:05 -08001190int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1191 unsigned int max_vecs, unsigned int flags,
Ming Leic66d4bd2019-02-16 18:13:09 +01001192 struct irq_affinity *affd)
Christoph Hellwigaff17162016-07-12 18:20:17 +09001193{
Ming Leic66d4bd2019-02-16 18:13:09 +01001194 struct irq_affinity msi_default_affd = {0};
Piotr Stankiewicz30ff3e82020-06-16 09:33:16 +02001195 int nvecs = -ENOSPC;
Christoph Hellwigaff17162016-07-12 18:20:17 +09001196
Christoph Hellwig402723a2016-11-08 17:15:05 -08001197 if (flags & PCI_IRQ_AFFINITY) {
1198 if (!affd)
1199 affd = &msi_default_affd;
1200 } else {
1201 if (WARN_ON(affd))
1202 affd = NULL;
1203 }
Christoph Hellwig61e1c592016-11-08 17:15:04 -08001204
Christoph Hellwig4fe0d152016-08-11 07:11:04 -07001205 if (flags & PCI_IRQ_MSIX) {
Piotr Stankiewicz30ff3e82020-06-16 09:33:16 +02001206 nvecs = __pci_enable_msix_range(dev, NULL, min_vecs, max_vecs,
1207 affd, flags);
1208 if (nvecs > 0)
1209 return nvecs;
Christoph Hellwigaff17162016-07-12 18:20:17 +09001210 }
1211
Christoph Hellwig4fe0d152016-08-11 07:11:04 -07001212 if (flags & PCI_IRQ_MSI) {
Piotr Stankiewicz30ff3e82020-06-16 09:33:16 +02001213 nvecs = __pci_enable_msi_range(dev, min_vecs, max_vecs, affd);
1214 if (nvecs > 0)
1215 return nvecs;
Christoph Hellwigaff17162016-07-12 18:20:17 +09001216 }
1217
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -05001218 /* use legacy IRQ if allowed */
Christoph Hellwig862290f2017-02-01 14:41:42 +01001219 if (flags & PCI_IRQ_LEGACY) {
1220 if (min_vecs == 1 && dev->irq) {
Ming Leic66d4bd2019-02-16 18:13:09 +01001221 /*
1222 * Invoke the affinity spreading logic to ensure that
1223 * the device driver can adjust queue configuration
1224 * for the single interrupt case.
1225 */
1226 if (affd)
1227 irq_create_affinity_masks(1, affd);
Christoph Hellwig862290f2017-02-01 14:41:42 +01001228 pci_intx(dev, 1);
1229 return 1;
1230 }
Christoph Hellwig5d0bdf22016-08-11 07:11:05 -07001231 }
1232
Piotr Stankiewicz30ff3e82020-06-16 09:33:16 +02001233 return nvecs;
Christoph Hellwigaff17162016-07-12 18:20:17 +09001234}
Christoph Hellwig402723a2016-11-08 17:15:05 -08001235EXPORT_SYMBOL(pci_alloc_irq_vectors_affinity);
Christoph Hellwigaff17162016-07-12 18:20:17 +09001236
1237/**
1238 * pci_free_irq_vectors - free previously allocated IRQs for a device
1239 * @dev: PCI device to operate on
1240 *
1241 * Undoes the allocations and enabling in pci_alloc_irq_vectors().
1242 */
1243void pci_free_irq_vectors(struct pci_dev *dev)
1244{
1245 pci_disable_msix(dev);
1246 pci_disable_msi(dev);
1247}
1248EXPORT_SYMBOL(pci_free_irq_vectors);
1249
1250/**
1251 * pci_irq_vector - return Linux IRQ number of a device vector
1252 * @dev: PCI device to operate on
1253 * @nr: device-relative interrupt vector index (0-based).
1254 */
1255int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
1256{
1257 if (dev->msix_enabled) {
1258 struct msi_desc *entry;
1259 int i = 0;
1260
1261 for_each_pci_msi_entry(entry, dev) {
1262 if (i == nr)
1263 return entry->irq;
1264 i++;
1265 }
1266 WARN_ON_ONCE(1);
1267 return -EINVAL;
1268 }
1269
1270 if (dev->msi_enabled) {
1271 struct msi_desc *entry = first_pci_msi_entry(dev);
1272
1273 if (WARN_ON_ONCE(nr >= entry->nvec_used))
1274 return -EINVAL;
1275 } else {
1276 if (WARN_ON_ONCE(nr > 0))
1277 return -EINVAL;
1278 }
1279
1280 return dev->irq + nr;
1281}
1282EXPORT_SYMBOL(pci_irq_vector);
1283
Thomas Gleixneree8d41e2016-09-14 16:18:51 +02001284/**
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -05001285 * pci_irq_get_affinity - return the affinity of a particular MSI vector
Thomas Gleixneree8d41e2016-09-14 16:18:51 +02001286 * @dev: PCI device to operate on
1287 * @nr: device-relative interrupt vector index (0-based).
1288 */
1289const struct cpumask *pci_irq_get_affinity(struct pci_dev *dev, int nr)
1290{
1291 if (dev->msix_enabled) {
1292 struct msi_desc *entry;
1293 int i = 0;
1294
1295 for_each_pci_msi_entry(entry, dev) {
1296 if (i == nr)
Dou Liyangbec04032018-12-04 23:51:20 +08001297 return &entry->affinity->mask;
Thomas Gleixneree8d41e2016-09-14 16:18:51 +02001298 i++;
1299 }
1300 WARN_ON_ONCE(1);
1301 return NULL;
1302 } else if (dev->msi_enabled) {
1303 struct msi_desc *entry = first_pci_msi_entry(dev);
1304
Jan Beulichd1d111e2016-11-08 00:43:54 -07001305 if (WARN_ON_ONCE(!entry || !entry->affinity ||
1306 nr >= entry->nvec_used))
Thomas Gleixneree8d41e2016-09-14 16:18:51 +02001307 return NULL;
1308
Dou Liyangbec04032018-12-04 23:51:20 +08001309 return &entry->affinity[nr].mask;
Thomas Gleixneree8d41e2016-09-14 16:18:51 +02001310 } else {
1311 return cpu_possible_mask;
1312 }
1313}
1314EXPORT_SYMBOL(pci_irq_get_affinity);
1315
Jiang Liu25a98bd2015-07-09 16:00:45 +08001316struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1317{
1318 return to_pci_dev(desc->dev);
1319}
Jake Oshinsa4289dc2015-12-10 17:52:59 +00001320EXPORT_SYMBOL(msi_desc_to_pci_dev);
Jiang Liu25a98bd2015-07-09 16:00:45 +08001321
Jiang Liuc179c9b2015-07-09 16:00:36 +08001322void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1323{
1324 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1325
1326 return dev->bus->sysdata;
1327}
1328EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1329
Jiang Liu3878eae2014-11-11 21:02:18 +08001330#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1331/**
1332 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1333 * @irq_data: Pointer to interrupt data of the MSI interrupt
1334 * @msg: Pointer to the message
1335 */
1336void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1337{
Jiang Liu507a8832015-06-01 16:05:42 +08001338 struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
Jiang Liu3878eae2014-11-11 21:02:18 +08001339
1340 /*
1341 * For MSI-X desc->irq is always equal to irq_data->irq. For
1342 * MSI only the first interrupt of MULTI MSI passes the test.
1343 */
1344 if (desc->irq == irq_data->irq)
1345 __pci_write_msi_msg(desc, msg);
1346}
1347
1348/**
1349 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -05001350 * @desc: Pointer to the MSI descriptor
Jiang Liu3878eae2014-11-11 21:02:18 +08001351 *
1352 * The ID number is only used within the irqdomain.
1353 */
Thomas Gleixner9006c132020-08-26 13:16:47 +02001354static irq_hw_number_t pci_msi_domain_calc_hwirq(struct msi_desc *desc)
Jiang Liu3878eae2014-11-11 21:02:18 +08001355{
Thomas Gleixnerdfb9eb72020-08-26 13:16:45 +02001356 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1357
Jiang Liu3878eae2014-11-11 21:02:18 +08001358 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
Heiner Kallweit4e544ba2019-04-24 21:11:58 +02001359 pci_dev_id(dev) << 11 |
Jiang Liu3878eae2014-11-11 21:02:18 +08001360 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1361}
1362
1363static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1364{
1365 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1366}
1367
1368/**
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -05001369 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities
1370 * for @dev
Jiang Liu3878eae2014-11-11 21:02:18 +08001371 * @domain: The interrupt domain to check
1372 * @info: The domain info for verification
1373 * @dev: The device to check
1374 *
1375 * Returns:
1376 * 0 if the functionality is supported
1377 * 1 if Multi MSI is requested, but the domain does not support it
1378 * -ENOTSUPP otherwise
1379 */
1380int pci_msi_domain_check_cap(struct irq_domain *domain,
1381 struct msi_domain_info *info, struct device *dev)
1382{
1383 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1384
Christoph Hellwig4fe03952017-01-09 21:37:40 +01001385 /* Special handling to support __pci_enable_msi_range() */
Jiang Liu3878eae2014-11-11 21:02:18 +08001386 if (pci_msi_desc_is_multi_msi(desc) &&
1387 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1388 return 1;
1389 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1390 return -ENOTSUPP;
1391
1392 return 0;
1393}
1394
1395static int pci_msi_domain_handle_error(struct irq_domain *domain,
1396 struct msi_desc *desc, int error)
1397{
Christoph Hellwig4fe03952017-01-09 21:37:40 +01001398 /* Special handling to support __pci_enable_msi_range() */
Jiang Liu3878eae2014-11-11 21:02:18 +08001399 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1400 return 1;
1401
1402 return error;
1403}
1404
Jiang Liu3878eae2014-11-11 21:02:18 +08001405static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1406 struct msi_desc *desc)
1407{
1408 arg->desc = desc;
Thomas Gleixnerdfb9eb72020-08-26 13:16:45 +02001409 arg->hwirq = pci_msi_domain_calc_hwirq(desc);
Jiang Liu3878eae2014-11-11 21:02:18 +08001410}
Jiang Liu3878eae2014-11-11 21:02:18 +08001411
1412static struct msi_domain_ops pci_msi_domain_ops_default = {
1413 .set_desc = pci_msi_domain_set_desc,
1414 .msi_check = pci_msi_domain_check_cap,
1415 .handle_error = pci_msi_domain_handle_error,
1416};
1417
1418static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1419{
1420 struct msi_domain_ops *ops = info->ops;
1421
1422 if (ops == NULL) {
1423 info->ops = &pci_msi_domain_ops_default;
1424 } else {
1425 if (ops->set_desc == NULL)
1426 ops->set_desc = pci_msi_domain_set_desc;
1427 if (ops->msi_check == NULL)
1428 ops->msi_check = pci_msi_domain_check_cap;
1429 if (ops->handle_error == NULL)
1430 ops->handle_error = pci_msi_domain_handle_error;
1431 }
1432}
1433
1434static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1435{
1436 struct irq_chip *chip = info->chip;
1437
1438 BUG_ON(!chip);
1439 if (!chip->irq_write_msi_msg)
1440 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
Marc Zyngier0701c532015-10-13 19:14:45 +01001441 if (!chip->irq_mask)
1442 chip->irq_mask = pci_msi_mask_irq;
1443 if (!chip->irq_unmask)
1444 chip->irq_unmask = pci_msi_unmask_irq;
Jiang Liu3878eae2014-11-11 21:02:18 +08001445}
1446
1447/**
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001448 * pci_msi_create_irq_domain - Create a MSI interrupt domain
1449 * @fwnode: Optional fwnode of the interrupt controller
Jiang Liu3878eae2014-11-11 21:02:18 +08001450 * @info: MSI domain info
1451 * @parent: Parent irq domain
1452 *
1453 * Updates the domain and chip ops and creates a MSI interrupt domain.
1454 *
1455 * Returns:
1456 * A domain pointer or NULL in case of failure.
1457 */
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001458struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode,
Jiang Liu3878eae2014-11-11 21:02:18 +08001459 struct msi_domain_info *info,
1460 struct irq_domain *parent)
1461{
Marc Zyngier03808392015-07-28 14:46:09 +01001462 struct irq_domain *domain;
1463
Marc Zyngier6988e0e2018-05-08 13:14:31 +01001464 if (WARN_ON(info->flags & MSI_FLAG_LEVEL_CAPABLE))
1465 info->flags &= ~MSI_FLAG_LEVEL_CAPABLE;
1466
Jiang Liu3878eae2014-11-11 21:02:18 +08001467 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1468 pci_msi_domain_update_dom_ops(info);
1469 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1470 pci_msi_domain_update_chip_ops(info);
1471
Marc Zyngierf3b09462016-07-13 17:18:33 +01001472 info->flags |= MSI_FLAG_ACTIVATE_EARLY;
Thomas Gleixner25e960e2017-10-17 09:54:58 +02001473 if (IS_ENABLED(CONFIG_GENERIC_IRQ_RESERVATION_MODE))
1474 info->flags |= MSI_FLAG_MUST_REACTIVATE;
Marc Zyngierf3b09462016-07-13 17:18:33 +01001475
Heiner Kallweit923aa4c2018-08-05 22:31:03 +02001476 /* PCI-MSI is oneshot-safe */
1477 info->chip->flags |= IRQCHIP_ONESHOT_SAFE;
1478
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001479 domain = msi_create_irq_domain(fwnode, info, parent);
Marc Zyngier03808392015-07-28 14:46:09 +01001480 if (!domain)
1481 return NULL;
1482
Marc Zyngier96f0d932017-06-22 11:42:50 +01001483 irq_domain_update_bus_token(domain, DOMAIN_BUS_PCI_MSI);
Marc Zyngier03808392015-07-28 14:46:09 +01001484 return domain;
Jiang Liu3878eae2014-11-11 21:02:18 +08001485}
Jake Oshinsa4289dc2015-12-10 17:52:59 +00001486EXPORT_SYMBOL_GPL(pci_msi_create_irq_domain);
Jiang Liu3878eae2014-11-11 21:02:18 +08001487
Robin Murphy235b2c72017-08-01 18:59:08 +01001488/*
1489 * Users of the generic MSI infrastructure expect a device to have a single ID,
1490 * so with DMA aliases we have to pick the least-worst compromise. Devices with
1491 * DMA phantom functions tend to still emit MSIs from the real function number,
1492 * so we ignore those and only consider topological aliases where either the
1493 * alias device or RID appears on a different bus number. We also make the
1494 * reasonable assumption that bridges are walked in an upstream direction (so
1495 * the last one seen wins), and the much braver assumption that the most likely
1496 * case is that of PCI->PCIe so we should always use the alias RID. This echoes
1497 * the logic from intel_irq_remapping's set_msi_sid(), which presumably works
1498 * well enough in practice; in the face of the horrible PCIe<->PCI-X conditions
1499 * for taking ownership all we can really do is close our eyes and hope...
1500 */
David Daneyb6eec9b2015-10-08 15:10:49 -07001501static int get_msi_id_cb(struct pci_dev *pdev, u16 alias, void *data)
1502{
1503 u32 *pa = data;
Robin Murphy235b2c72017-08-01 18:59:08 +01001504 u8 bus = PCI_BUS_NUM(*pa);
David Daneyb6eec9b2015-10-08 15:10:49 -07001505
Robin Murphy235b2c72017-08-01 18:59:08 +01001506 if (pdev->bus->number != bus || PCI_BUS_NUM(alias) != bus)
1507 *pa = alias;
1508
David Daneyb6eec9b2015-10-08 15:10:49 -07001509 return 0;
1510}
Robin Murphy235b2c72017-08-01 18:59:08 +01001511
David Daneyb6eec9b2015-10-08 15:10:49 -07001512/**
1513 * pci_msi_domain_get_msi_rid - Get the MSI requester id (RID)
1514 * @domain: The interrupt domain
1515 * @pdev: The PCI device.
1516 *
1517 * The RID for a device is formed from the alias, with a firmware
1518 * supplied mapping applied
1519 *
1520 * Returns: The RID.
1521 */
1522u32 pci_msi_domain_get_msi_rid(struct irq_domain *domain, struct pci_dev *pdev)
1523{
1524 struct device_node *of_node;
Heiner Kallweit4e544ba2019-04-24 21:11:58 +02001525 u32 rid = pci_dev_id(pdev);
David Daneyb6eec9b2015-10-08 15:10:49 -07001526
1527 pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1528
1529 of_node = irq_domain_get_of_node(domain);
Lorenzo Pieralisi2bcdd8f2020-06-19 09:20:11 +01001530 rid = of_node ? of_msi_map_id(&pdev->dev, of_node, rid) :
Lorenzo Pieralisi39c3cf52020-06-19 09:20:04 +01001531 iort_msi_map_id(&pdev->dev, rid);
David Daneyb6eec9b2015-10-08 15:10:49 -07001532
1533 return rid;
1534}
Marc Zyngier54fa97e2015-10-02 14:43:06 +01001535
1536/**
1537 * pci_msi_get_device_domain - Get the MSI domain for a given PCI device
1538 * @pdev: The PCI device
1539 *
1540 * Use the firmware data to find a device-specific MSI domain
Robin Murphy235b2c72017-08-01 18:59:08 +01001541 * (i.e. not one that is set as a default).
Marc Zyngier54fa97e2015-10-02 14:43:06 +01001542 *
Robin Murphy235b2c72017-08-01 18:59:08 +01001543 * Returns: The corresponding MSI domain or NULL if none has been found.
Marc Zyngier54fa97e2015-10-02 14:43:06 +01001544 */
1545struct irq_domain *pci_msi_get_device_domain(struct pci_dev *pdev)
1546{
Tomasz Nowickibe2021b2016-09-12 20:32:22 +02001547 struct irq_domain *dom;
Heiner Kallweit4e544ba2019-04-24 21:11:58 +02001548 u32 rid = pci_dev_id(pdev);
Marc Zyngier54fa97e2015-10-02 14:43:06 +01001549
1550 pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
Diana Craciun6f881ab2020-06-19 09:20:10 +01001551 dom = of_msi_map_get_device_domain(&pdev->dev, rid, DOMAIN_BUS_PCI_MSI);
Tomasz Nowickibe2021b2016-09-12 20:32:22 +02001552 if (!dom)
Lorenzo Pieralisid1718a1b2020-06-19 09:20:03 +01001553 dom = iort_get_device_domain(&pdev->dev, rid,
1554 DOMAIN_BUS_PCI_MSI);
Tomasz Nowickibe2021b2016-09-12 20:32:22 +02001555 return dom;
Marc Zyngier54fa97e2015-10-02 14:43:06 +01001556}
Thomas Gleixner2fd60262020-08-26 13:16:53 +02001557
1558/**
1559 * pci_dev_has_special_msi_domain - Check whether the device is handled by
1560 * a non-standard PCI-MSI domain
1561 * @pdev: The PCI device to check.
1562 *
1563 * Returns: True if the device irqdomain or the bus irqdomain is
1564 * non-standard PCI/MSI.
1565 */
1566bool pci_dev_has_special_msi_domain(struct pci_dev *pdev)
1567{
1568 struct irq_domain *dom = dev_get_msi_domain(&pdev->dev);
1569
1570 if (!dom)
1571 dom = dev_get_msi_domain(&pdev->bus->dev);
1572
1573 if (!dom)
1574 return true;
1575
1576 return dom->bus_token != DOMAIN_BUS_PCI_MSI;
1577}
1578
Jiang Liu3878eae2014-11-11 21:02:18 +08001579#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */