blob: 217dc9f0231fde66e563d184d764123bc06304cf [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
Bjorn Helgaascbc40d52020-12-03 12:51:08 -060029#ifdef CONFIG_PCI_MSI
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int pci_msi_enable = 1;
Yijing Wang38737d82014-10-27 10:44:36 +080032int pci_msi_ignore_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Bjorn Helgaas527eee22013-04-17 17:44:48 -060034#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
35
Jiang Liu8e047ad2014-11-15 22:24:07 +080036#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
Jiang Liu8e047ad2014-11-15 22:24:07 +080037static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
38{
39 struct irq_domain *domain;
40
Christoph Hellwig47feb412017-02-08 18:17:43 +010041 domain = dev_get_msi_domain(&dev->dev);
Marc Zyngier3845d292015-12-04 10:28:14 -060042 if (domain && irq_domain_is_hierarchy(domain))
Christoph Hellwig699c4ce2017-02-08 18:17:44 +010043 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
Jiang Liu8e047ad2014-11-15 22:24:07 +080044
45 return arch_setup_msi_irqs(dev, nvec, type);
46}
47
48static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
49{
50 struct irq_domain *domain;
51
Christoph Hellwig47feb412017-02-08 18:17:43 +010052 domain = dev_get_msi_domain(&dev->dev);
Marc Zyngier3845d292015-12-04 10:28:14 -060053 if (domain && irq_domain_is_hierarchy(domain))
Christoph Hellwig699c4ce2017-02-08 18:17:44 +010054 msi_domain_free_irqs(domain, &dev->dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080055 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
Bjorn Helgaas527eee22013-04-17 17:44:48 -060062
Thomas Gleixner077ee782020-08-26 13:17:02 +020063#ifdef CONFIG_PCI_MSI_ARCH_FALLBACKS
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010064/* Arch hooks */
Thomas Petazzoni4287d822013-08-09 22:27:06 +020065int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
66{
Marc Zyngier3a05d082021-03-30 16:11:38 +010067 return -EINVAL;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020068}
69
70void __weak arch_teardown_msi_irq(unsigned int irq)
71{
72}
73
Thomas Petazzoni4287d822013-08-09 22:27:06 +020074int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010075{
76 struct msi_desc *entry;
77 int ret;
78
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040079 /*
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
Jiang Liu5004e982015-07-09 16:00:41 +080086 for_each_pci_msi_entry(entry, dev) {
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010087 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110088 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010089 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110090 if (ret > 0)
91 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010092 }
93
94 return 0;
95}
96
Marc Zyngierf8bcf242021-03-30 16:11:40 +010097void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010098{
Jiang Liu63a7b172014-11-06 22:20:32 +080099 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100100 struct msi_desc *entry;
101
Jiang Liu5004e982015-07-09 16:00:41 +0800102 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800103 if (entry->irq)
104 for (i = 0; i < entry->nvec_used; i++)
105 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100106}
Thomas Gleixner077ee782020-08-26 13:17:02 +0200107#endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS */
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500108
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800109static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500110{
111 struct msi_desc *entry;
112
113 entry = NULL;
114 if (dev->msix_enabled) {
Jiang Liu5004e982015-07-09 16:00:41 +0800115 for_each_pci_msi_entry(entry, dev) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500116 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)
Jiang Liu83a18912014-11-09 23:10:34 +0800124 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500125}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200126
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800127void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200128{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800129 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200130}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500131
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500132static inline __attribute_const__ u32 msi_mask(unsigned x)
133{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700134 /* Don't shift by >= width of type */
135 if (x >= 5)
136 return 0xffffffff;
137 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500138}
139
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600140/*
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.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600145 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100146u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400148 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Yijing Wang38737d82014-10-27 10:44:36 +0800150 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900151 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400152
153 mask_bits &= ~mask;
154 mask_bits |= flag;
Jiang Liue39758e2015-07-09 16:00:43 +0800155 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
156 mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900157
158 return mask_bits;
159}
160
161static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
162{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100163 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400164}
165
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900166static void __iomem *pci_msix_desc_addr(struct msi_desc *desc)
167{
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600168 if (desc->msi_attrib.is_virtual)
169 return NULL;
170
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900171 return desc->mask_base +
172 desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
173}
174
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400175/*
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 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100182u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400183{
184 u32 mask_bits = desc->masked;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600185 void __iomem *desc_addr;
Yijing Wang38737d82014-10-27 10:44:36 +0800186
187 if (pci_msi_ignore_mask)
188 return 0;
Jian-Hong Pane045fa22019-10-08 11:42:39 +0800189
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600190 desc_addr = pci_msix_desc_addr(desc);
191 if (!desc_addr)
192 return 0;
Yijing Wang38737d82014-10-27 10:44:36 +0800193
Sheng Yang8d805282010-11-11 15:46:55 +0800194 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
Jian-Hong Pane045fa22019-10-08 11:42:39 +0800195 if (flag & PCI_MSIX_ENTRY_CTRL_MASKBIT)
Sheng Yang8d805282010-11-11 15:46:55 +0800196 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600197
198 writel(mask_bits, desc_addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900199
200 return mask_bits;
201}
202
203static void msix_mask_irq(struct msi_desc *desc, u32 flag)
204{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100205 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400206}
207
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200208static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400209{
Jiang Liuc391f262015-06-01 16:05:41 +0800210 struct msi_desc *desc = irq_data_get_msi_desc(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400211
212 if (desc->msi_attrib.is_msix) {
213 msix_mask_irq(desc, flag);
214 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400215 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800216 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400217 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400219}
220
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100221/**
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500222 * pci_msi_mask_irq - Generic IRQ chip callback to mask PCI/MSI interrupts
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100223 * @data: pointer to irqdata associated to that interrupt
224 */
225void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400226{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200227 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400228}
Jake Oshinsa4289dc2015-12-10 17:52:59 +0000229EXPORT_SYMBOL_GPL(pci_msi_mask_irq);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400230
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100231/**
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500232 * pci_msi_unmask_irq - Generic IRQ chip callback to unmask PCI/MSI interrupts
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100233 * @data: pointer to irqdata associated to that interrupt
234 */
235void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400236{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200237 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
Jake Oshinsa4289dc2015-12-10 17:52:59 +0000239EXPORT_SYMBOL_GPL(pci_msi_unmask_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800241void default_restore_msi_irqs(struct pci_dev *dev)
242{
243 struct msi_desc *entry;
244
Jiang Liu5004e982015-07-09 16:00:41 +0800245 for_each_pci_msi_entry(entry, dev)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800246 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800247}
248
Jiang Liu891d4a42014-11-09 23:10:33 +0800249void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700250{
Jiang Liue39758e2015-07-09 16:00:43 +0800251 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
252
253 BUG_ON(dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700254
Ben Hutchings30da5522010-07-23 14:56:28 +0100255 if (entry->msi_attrib.is_msix) {
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900256 void __iomem *base = pci_msix_desc_addr(entry);
Ben Hutchings30da5522010-07-23 14:56:28 +0100257
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600258 if (!base) {
259 WARN_ON(1);
260 return;
261 }
262
Ben Hutchings30da5522010-07-23 14:56:28 +0100263 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 {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600267 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100268 u16 data;
269
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600270 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
271 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100272 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600273 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
274 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600275 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100276 } else {
277 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600278 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100279 }
280 msg->data = data;
281 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700282}
283
Jiang Liu83a18912014-11-09 23:10:34 +0800284void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800285{
Jiang Liue39758e2015-07-09 16:00:43 +0800286 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
287
Keith Busch01705912017-03-29 22:49:11 -0500288 if (dev->current_state != PCI_D0 || pci_dev_is_disconnected(dev)) {
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100289 /* Don't touch the hardware now */
290 } else if (entry->msi_attrib.is_msix) {
Christoph Hellwig5eb6d662016-07-12 18:20:14 +0900291 void __iomem *base = pci_msix_desc_addr(entry);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400292
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600293 if (!base)
294 goto skip;
295
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900296 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
297 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
298 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400299 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600300 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400301 u16 msgctl;
302
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600303 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400304 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
305 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600306 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700307
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600308 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
309 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700310 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600311 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
312 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600313 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
314 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700315 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600316 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
317 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700318 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700319 }
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600320
321skip:
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700322 entry->msg = *msg;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600323
324 if (entry->write_msi_msg)
325 entry->write_msi_msg(entry, entry->write_msi_msg_data);
326
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700327}
328
Jiang Liu83a18912014-11-09 23:10:34 +0800329void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800330{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200331 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800332
Jiang Liu83a18912014-11-09 23:10:34 +0800333 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800334}
Jiang Liu83a18912014-11-09 23:10:34 +0800335EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800336
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900337static void free_msi_irqs(struct pci_dev *dev)
338{
Jiang Liu5004e982015-07-09 16:00:41 +0800339 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900340 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800341 struct attribute **msi_attrs;
342 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800343 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900344
Jiang Liu5004e982015-07-09 16:00:41 +0800345 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800346 if (entry->irq)
347 for (i = 0; i < entry->nvec_used; i++)
348 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900349
Jiang Liu8e047ad2014-11-15 22:24:07 +0800350 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900351
Jiang Liu5004e982015-07-09 16:00:41 +0800352 list_for_each_entry_safe(entry, tmp, msi_list, list) {
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900353 if (entry->msi_attrib.is_msix) {
Jiang Liu5004e982015-07-09 16:00:41 +0800354 if (list_is_last(&entry->list, msi_list))
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900355 iounmap(entry->mask_base);
356 }
Neil Horman424eb392012-01-03 10:29:54 -0500357
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900358 list_del(&entry->list);
Prarit Bhargava81efbad2017-02-15 11:53:08 -0500359 free_msi_entry(entry);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900360 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800361
362 if (dev->msi_irq_groups) {
363 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
364 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700365 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800366 dev_attr = container_of(msi_attrs[count],
367 struct device_attribute, attr);
368 kfree(dev_attr->attr.name);
369 kfree(dev_attr);
370 ++count;
371 }
372 kfree(msi_attrs);
373 kfree(dev->msi_irq_groups[0]);
374 kfree(dev->msi_irq_groups);
375 dev->msi_irq_groups = NULL;
376 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900377}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900378
David Millerba698ad2007-10-25 01:16:30 -0700379static void pci_intx_for_msi(struct pci_dev *dev, int enable)
380{
381 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
382 pci_intx(dev, enable);
383}
384
Bjorn Helgaas830dfe82020-12-03 12:51:09 -0600385static void pci_msi_set_enable(struct pci_dev *dev, int enable)
386{
387 u16 control;
388
389 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
390 control &= ~PCI_MSI_FLAGS_ENABLE;
391 if (enable)
392 control |= PCI_MSI_FLAGS_ENABLE;
393 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
394}
395
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100396static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800397{
Shaohua Li41017f02006-02-08 17:11:38 +0800398 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700399 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800400
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800401 if (!dev->msi_enabled)
402 return;
403
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200404 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800405
David Millerba698ad2007-10-25 01:16:30 -0700406 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500407 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800408 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700409
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600410 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800411 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
412 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700413 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400414 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600415 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100416}
417
Bjorn Helgaas830dfe82020-12-03 12:51:09 -0600418static void pci_msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
419{
420 u16 ctrl;
421
422 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
423 ctrl &= ~clear;
424 ctrl |= set;
425 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
426}
427
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100428static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800429{
Shaohua Li41017f02006-02-08 17:11:38 +0800430 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800431
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700432 if (!dev->msix_enabled)
433 return;
Jiang Liu5004e982015-07-09 16:00:41 +0800434 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700435
Shaohua Li41017f02006-02-08 17:11:38 +0800436 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700437 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500438 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800439 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800440
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800441 arch_restore_msi_irqs(dev);
Jiang Liu5004e982015-07-09 16:00:41 +0800442 for_each_pci_msi_entry(entry, dev)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400443 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800444
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500445 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800446}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100447
448void pci_restore_msi_state(struct pci_dev *dev)
449{
450 __pci_restore_msi_state(dev);
451 __pci_restore_msix_state(dev);
452}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600453EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800454
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800455static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400456 char *buf)
457{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800458 struct msi_desc *entry;
459 unsigned long irq;
460 int retval;
461
462 retval = kstrtoul(attr->attr.name, 10, &irq);
463 if (retval)
464 return retval;
465
Yijing Wange11ece52014-07-08 10:09:19 +0800466 entry = irq_get_msi_desc(irq);
467 if (entry)
468 return sprintf(buf, "%s\n",
469 entry->msi_attrib.is_msix ? "msix" : "msi");
470
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800471 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400472}
473
Neil Hormanda8d1c82011-10-06 14:08:18 -0400474static int populate_msi_sysfs(struct pci_dev *pdev)
475{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800476 struct attribute **msi_attrs;
477 struct attribute *msi_attr;
478 struct device_attribute *msi_dev_attr;
479 struct attribute_group *msi_irq_group;
480 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400481 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800482 int ret = -ENOMEM;
483 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400484 int count = 0;
Romain Bezuta8676062015-09-24 01:31:16 +0200485 int i;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400486
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800487 /* Determine how many msi entries we have */
Jiang Liu5004e982015-07-09 16:00:41 +0800488 for_each_pci_msi_entry(entry, pdev)
Romain Bezuta8676062015-09-24 01:31:16 +0200489 num_msi += entry->nvec_used;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800490 if (!num_msi)
491 return 0;
492
493 /* Dynamically create the MSI attributes for the PCI device */
Kees Cook6396bb22018-06-12 14:03:40 -0700494 msi_attrs = kcalloc(num_msi + 1, sizeof(void *), GFP_KERNEL);
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800495 if (!msi_attrs)
496 return -ENOMEM;
Jiang Liu5004e982015-07-09 16:00:41 +0800497 for_each_pci_msi_entry(entry, pdev) {
Romain Bezuta8676062015-09-24 01:31:16 +0200498 for (i = 0; i < entry->nvec_used; i++) {
499 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
500 if (!msi_dev_attr)
501 goto error_attrs;
502 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700503
Romain Bezuta8676062015-09-24 01:31:16 +0200504 sysfs_attr_init(&msi_dev_attr->attr);
505 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
506 entry->irq + i);
507 if (!msi_dev_attr->attr.name)
508 goto error_attrs;
509 msi_dev_attr->attr.mode = S_IRUGO;
510 msi_dev_attr->show = msi_mode_show;
511 ++count;
512 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800513 }
514
515 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
516 if (!msi_irq_group)
517 goto error_attrs;
518 msi_irq_group->name = "msi_irqs";
519 msi_irq_group->attrs = msi_attrs;
520
Kees Cook6396bb22018-06-12 14:03:40 -0700521 msi_irq_groups = kcalloc(2, sizeof(void *), GFP_KERNEL);
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800522 if (!msi_irq_groups)
523 goto error_irq_group;
524 msi_irq_groups[0] = msi_irq_group;
525
526 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
527 if (ret)
528 goto error_irq_groups;
529 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400530
531 return 0;
532
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800533error_irq_groups:
534 kfree(msi_irq_groups);
535error_irq_group:
536 kfree(msi_irq_group);
537error_attrs:
538 count = 0;
539 msi_attr = msi_attrs[count];
540 while (msi_attr) {
541 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
542 kfree(msi_attr->name);
543 kfree(msi_dev_attr);
544 ++count;
545 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400546 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700547 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400548 return ret;
549}
550
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200551static struct msi_desc *
Ming Leic66d4bd2019-02-16 18:13:09 +0100552msi_setup_entry(struct pci_dev *dev, int nvec, struct irq_affinity *affd)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800553{
Dou Liyangbec04032018-12-04 23:51:20 +0800554 struct irq_affinity_desc *masks = NULL;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800555 struct msi_desc *entry;
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200556 u16 control;
557
Christoph Hellwig8e1101d2017-08-25 18:58:42 -0500558 if (affd)
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800559 masks = irq_create_affinity_masks(nvec, affd);
Christoph Hellwig8e1101d2017-08-25 18:58:42 -0500560
Yijing Wangd873b4d2014-07-08 10:07:23 +0800561 /* MSI Entry Initialization */
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200562 entry = alloc_msi_entry(&dev->dev, nvec, masks);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800563 if (!entry)
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200564 goto out;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800565
566 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
567
568 entry->msi_attrib.is_msix = 0;
569 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600570 entry->msi_attrib.is_virtual = 0;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800571 entry->msi_attrib.entry_nr = 0;
572 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
573 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800574 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800575 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
Yijing Wangd873b4d2014-07-08 10:07:23 +0800576
577 if (control & PCI_MSI_FLAGS_64BIT)
578 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
579 else
580 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
581
582 /* Save the initial mask status */
583 if (entry->msi_attrib.maskbit)
584 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
585
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200586out:
587 kfree(masks);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800588 return entry;
589}
590
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000591static int msi_verify_entries(struct pci_dev *dev)
592{
593 struct msi_desc *entry;
594
Jiang Liu5004e982015-07-09 16:00:41 +0800595 for_each_pci_msi_entry(entry, dev) {
Vidya Sagar20532302020-12-03 12:51:10 -0600596 if (entry->msg.address_hi && dev->no_64bit_msi) {
597 pci_err(dev, "arch assigned 64-bit MSI address %#x%08x but device only supports 32 bits\n",
598 entry->msg.address_hi, entry->msg.address_lo);
599 return -EIO;
600 }
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000601 }
602 return 0;
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/**
606 * msi_capability_init - configure device's MSI capability structure
607 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400608 * @nvec: number of interrupts to allocate
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500609 * @affd: description of automatic IRQ affinity assignments (may be %NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400611 * Setup the MSI capability structure of the device with the requested
612 * number of interrupts. A return value of zero indicates the successful
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500613 * setup of an entry with the new MSI IRQ. A negative return value indicates
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400614 * an error, and a positive return value indicates the number of interrupts
615 * which could have been allocated.
616 */
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800617static int msi_capability_init(struct pci_dev *dev, int nvec,
Ming Leic66d4bd2019-02-16 18:13:09 +0100618 struct irq_affinity *affd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000621 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400622 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500624 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600625
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800626 entry = msi_setup_entry(dev, nvec, affd);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700627 if (!entry)
628 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700629
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500630 /* All MSIs are unmasked by default; mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800631 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400632 msi_mask_irq(entry, mask, mask);
633
Jiang Liu5004e982015-07-09 16:00:41 +0800634 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Michael Ellerman9c831332007-04-18 19:39:21 +1000635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800637 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000638 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900639 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900640 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000641 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500642 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700643
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000644 ret = msi_verify_entries(dev);
645 if (ret) {
646 msi_mask_irq(entry, mask, ~mask);
647 free_msi_irqs(dev);
648 return ret;
649 }
650
Neil Hormanda8d1c82011-10-06 14:08:18 -0400651 ret = populate_msi_sysfs(dev);
652 if (ret) {
653 msi_mask_irq(entry, mask, ~mask);
654 free_msi_irqs(dev);
655 return ret;
656 }
657
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500658 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700659 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500660 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800661 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jiang Liu5f226992015-07-30 14:00:08 -0500663 pcibios_free_irq(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000664 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 0;
666}
667
Gavin Shan520fe9d2013-04-04 16:54:33 +0000668static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900669{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900670 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900671 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800672 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900673 u8 bir;
674
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600675 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
676 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600677 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800678 flags = pci_resource_flags(dev, bir);
679 if (!flags || (flags & IORESOURCE_UNSET))
680 return NULL;
681
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600682 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900683 phys_addr = pci_resource_start(dev, bir) + table_offset;
684
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100685 return ioremap(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900686}
687
Gavin Shan520fe9d2013-04-04 16:54:33 +0000688static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200689 struct msix_entry *entries, int nvec,
Ming Leic66d4bd2019-02-16 18:13:09 +0100690 struct irq_affinity *affd)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900691{
Dou Liyangbec04032018-12-04 23:51:20 +0800692 struct irq_affinity_desc *curmsk, *masks = NULL;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900693 struct msi_desc *entry;
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200694 int ret, i;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600695 int vec_count = pci_msix_vec_count(dev);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900696
Christoph Hellwig8e1101d2017-08-25 18:58:42 -0500697 if (affd)
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800698 masks = irq_create_affinity_masks(nvec, affd);
Christoph Hellwig4ef33682016-07-12 18:20:18 +0900699
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200700 for (i = 0, curmsk = masks; i < nvec; i++) {
701 entry = alloc_msi_entry(&dev->dev, 1, curmsk);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900702 if (!entry) {
703 if (!i)
704 iounmap(base);
705 else
706 free_msi_irqs(dev);
707 /* No enough memory. Don't try again */
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200708 ret = -ENOMEM;
709 goto out;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900710 }
711
712 entry->msi_attrib.is_msix = 1;
713 entry->msi_attrib.is_64 = 1;
Christoph Hellwig3ac020e2016-07-12 18:20:16 +0900714 if (entries)
715 entry->msi_attrib.entry_nr = entries[i].entry;
716 else
717 entry->msi_attrib.entry_nr = i;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600718
719 entry->msi_attrib.is_virtual =
720 entry->msi_attrib.entry_nr >= vec_count;
721
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900722 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900723 entry->mask_base = base;
724
Jiang Liu5004e982015-07-09 16:00:41 +0800725 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200726 if (masks)
727 curmsk++;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900728 }
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200729 ret = 0;
730out:
731 kfree(masks);
Christophe JAILLET3adfb572017-01-27 16:14:53 +0100732 return ret;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900733}
734
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900735static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000736 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900737{
738 struct msi_desc *entry;
739 int i = 0;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600740 void __iomem *desc_addr;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900741
Jiang Liu5004e982015-07-09 16:00:41 +0800742 for_each_pci_msi_entry(entry, dev) {
Christoph Hellwig3ac020e2016-07-12 18:20:16 +0900743 if (entries)
744 entries[i++].vector = entry->irq;
Logan Gunthorped7cc6092019-05-23 16:30:51 -0600745
746 desc_addr = pci_msix_desc_addr(entry);
747 if (desc_addr)
748 entry->masked = readl(desc_addr +
749 PCI_MSIX_ENTRY_VECTOR_CTRL);
750 else
751 entry->masked = 0;
752
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900753 msix_mask_irq(entry, 1);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900754 }
755}
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757/**
758 * msix_capability_init - configure device's MSI-X capability
759 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700760 * @entries: pointer to an array of struct msix_entry entries
761 * @nvec: number of @entries
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500762 * @affd: Optional pointer to enable automatic affinity assignment
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600764 * Setup the MSI-X capability structure of device function with a
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500765 * single MSI-X IRQ. A return of zero indicates the successful setup of
766 * requested MSI-X entries with allocated IRQs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 **/
Thomas Gleixnere75eafb2016-09-14 16:18:49 +0200768static int msix_capability_init(struct pci_dev *dev, struct msix_entry *entries,
Ming Leic66d4bd2019-02-16 18:13:09 +0100769 int nvec, struct irq_affinity *affd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000771 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900772 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 void __iomem *base;
774
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700775 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500776 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700777
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800778 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600780 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900781 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return -ENOMEM;
783
Christoph Hellwig61e1c592016-11-08 17:15:04 -0800784 ret = msix_setup_entries(dev, base, entries, nvec, affd);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900785 if (ret)
786 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000787
Jiang Liu8e047ad2014-11-15 22:24:07 +0800788 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900789 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100790 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000791
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000792 /* Check if all MSI entries honor device restrictions */
793 ret = msi_verify_entries(dev);
794 if (ret)
795 goto out_free;
796
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700797 /*
798 * Some devices require MSI-X to be enabled before we can touch the
799 * MSI-X registers. We need to mask all the vectors to prevent
800 * interrupts coming in before they're fully set up.
801 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500802 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800803 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700804
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900805 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700806
Neil Hormanda8d1c82011-10-06 14:08:18 -0400807 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100808 if (ret)
809 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400810
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700811 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700812 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800813 dev->msix_enabled = 1;
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500814 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600815
Jiang Liu5f226992015-07-30 14:00:08 -0500816 pcibios_free_irq(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900818
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100819out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900820 if (ret < 0) {
821 /*
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500822 * If we had some success, report the number of IRQs
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900823 * we succeeded in setting up.
824 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900825 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900826 int avail = 0;
827
Jiang Liu5004e982015-07-09 16:00:41 +0800828 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900829 if (entry->irq != 0)
830 avail++;
831 }
832 if (avail != 0)
833 ret = avail;
834 }
835
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100836out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900837 free_msi_irqs(dev);
838
839 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600843 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400844 * @dev: pointer to the pci_dev data structure of MSI device function
Bjorn Helgaasf6b6aef2019-05-30 08:05:58 -0500845 * @nvec: how many MSIs have been requested?
Brice Goglin24334a12006-08-31 01:55:07 -0400846 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700847 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000848 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600849 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400850 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600851static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400852{
853 struct pci_bus *bus;
854
Brice Goglin0306ebf2006-10-05 10:24:31 +0200855 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600856 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600857 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600858
Bjorn Helgaas901c4dd2019-10-14 16:17:05 -0500859 if (!dev || dev->no_msi)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600860 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400861
Michael Ellerman314e77b2007-04-05 17:19:12 +1000862 /*
863 * You can't ask to have 0 or less MSIs configured.
864 * a) it's stupid ..
865 * b) the list manipulation code assumes nvec >= 1.
866 */
867 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600868 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000869
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900870 /*
871 * Any bridge which does NOT route MSI transactions from its
872 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200873 * the secondary pci_bus.
Marc Zyngier61af6922021-03-30 16:11:44 +0100874 *
875 * The NO_MSI flag can either be set directly by:
876 * - arch-specific PCI host bus controller drivers (deprecated)
877 * - quirks for specific PCI bridges
878 *
879 * or indirectly by platform-specific PCI host bridge drivers by
880 * advertising the 'msi_domain' property, which results in
881 * the NO_MSI flag when no MSI domain is found for this bridge
882 * at probe time.
Brice Goglin0306ebf2006-10-05 10:24:31 +0200883 */
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 */
Bjorn Helgaascbc40d52020-12-03 12:51:08 -06001580#endif /* CONFIG_PCI_MSI */
1581
1582void pci_msi_init(struct pci_dev *dev)
1583{
1584 u16 ctrl;
1585
1586 /*
1587 * Disable the MSI hardware to avoid screaming interrupts
1588 * during boot. This is the power on reset default so
1589 * usually this should be a noop.
1590 */
1591 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1592 if (!dev->msi_cap)
1593 return;
1594
1595 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
1596 if (ctrl & PCI_MSI_FLAGS_ENABLE)
1597 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS,
1598 ctrl & ~PCI_MSI_FLAGS_ENABLE);
Vidya Sagar20532302020-12-03 12:51:10 -06001599
1600 if (!(ctrl & PCI_MSI_FLAGS_64BIT))
1601 dev->no_64bit_msi = 1;
Bjorn Helgaascbc40d52020-12-03 12:51:08 -06001602}
1603
1604void pci_msix_init(struct pci_dev *dev)
1605{
1606 u16 ctrl;
1607
1608 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1609 if (!dev->msix_cap)
1610 return;
1611
1612 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
1613 if (ctrl & PCI_MSIX_FLAGS_ENABLE)
1614 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS,
1615 ctrl & ~PCI_MSIX_FLAGS_ENABLE);
1616}