blob: 5ab5c4f8dcb013f2e94927c5d41084f3308818d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: msi.c
3 * Purpose: PCI Message Signaled Interrupt (MSI)
4 *
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
Eric W. Biederman1ce03372006-10-04 02:16:41 -07009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/irq.h>
12#include <linux/interrupt.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/pci.h>
16#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070017#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070018#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090019#include <linux/errno.h>
20#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Jiang Liu3878eae2014-11-11 21:02:18 +080022#include <linux/irqdomain.h>
David Daneyb6eec9b2015-10-08 15:10:49 -070023#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int pci_msi_enable = 1;
Yijing Wang38737d82014-10-27 10:44:36 +080028int pci_msi_ignore_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Bjorn Helgaas527eee22013-04-17 17:44:48 -060030#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
31
Jiang Liu8e047ad2014-11-15 22:24:07 +080032#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
33static struct irq_domain *pci_msi_default_domain;
34static DEFINE_MUTEX(pci_msi_domain_lock);
35
36struct irq_domain * __weak arch_get_pci_msi_domain(struct pci_dev *dev)
37{
38 return pci_msi_default_domain;
39}
40
Marc Zyngier020c3122014-11-15 10:49:12 +000041static struct irq_domain *pci_msi_get_domain(struct pci_dev *dev)
42{
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010043 struct irq_domain *domain;
Marc Zyngier020c3122014-11-15 10:49:12 +000044
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010045 domain = dev_get_msi_domain(&dev->dev);
46 if (domain)
47 return domain;
Marc Zyngier020c3122014-11-15 10:49:12 +000048
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010049 return arch_get_pci_msi_domain(dev);
Marc Zyngier020c3122014-11-15 10:49:12 +000050}
51
Jiang Liu8e047ad2014-11-15 22:24:07 +080052static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
53{
54 struct irq_domain *domain;
55
Marc Zyngier020c3122014-11-15 10:49:12 +000056 domain = pci_msi_get_domain(dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080057 if (domain)
58 return pci_msi_domain_alloc_irqs(domain, dev, nvec, type);
59
60 return arch_setup_msi_irqs(dev, nvec, type);
61}
62
63static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
64{
65 struct irq_domain *domain;
66
Marc Zyngier020c3122014-11-15 10:49:12 +000067 domain = pci_msi_get_domain(dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080068 if (domain)
69 pci_msi_domain_free_irqs(domain, dev);
70 else
71 arch_teardown_msi_irqs(dev);
72}
73#else
74#define pci_msi_setup_msi_irqs arch_setup_msi_irqs
75#define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
76#endif
Bjorn Helgaas527eee22013-04-17 17:44:48 -060077
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010078/* Arch hooks */
79
Thomas Petazzoni4287d822013-08-09 22:27:06 +020080int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
81{
Lorenzo Pieralisi2291ec02015-08-03 22:04:06 -050082 struct msi_controller *chip = dev->bus->msi;
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020083 int err;
84
85 if (!chip || !chip->setup_irq)
86 return -EINVAL;
87
88 err = chip->setup_irq(chip, dev, desc);
89 if (err < 0)
90 return err;
91
92 irq_set_chip_data(desc->irq, chip);
93
94 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020095}
96
97void __weak arch_teardown_msi_irq(unsigned int irq)
98{
Yijing Wangc2791b82014-11-11 17:45:45 -070099 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +0200100
101 if (!chip || !chip->teardown_irq)
102 return;
103
104 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200105}
106
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200107int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100108{
109 struct msi_desc *entry;
110 int ret;
111
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400112 /*
113 * If an architecture wants to support multiple MSI, it needs to
114 * override arch_setup_msi_irqs()
115 */
116 if (type == PCI_CAP_ID_MSI && nvec > 1)
117 return 1;
118
Jiang Liu5004e982015-07-09 16:00:41 +0800119 for_each_pci_msi_entry(entry, dev) {
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100120 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100121 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100122 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100123 if (ret > 0)
124 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100125 }
126
127 return 0;
128}
129
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200130/*
131 * We have a default implementation available as a separate non-weak
132 * function, as it is used by the Xen x86 PCI code
133 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400134void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100135{
Jiang Liu63a7b172014-11-06 22:20:32 +0800136 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100137 struct msi_desc *entry;
138
Jiang Liu5004e982015-07-09 16:00:41 +0800139 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800140 if (entry->irq)
141 for (i = 0; i < entry->nvec_used; i++)
142 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100143}
144
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200145void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
146{
147 return default_teardown_msi_irqs(dev);
148}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500149
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800150static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500151{
152 struct msi_desc *entry;
153
154 entry = NULL;
155 if (dev->msix_enabled) {
Jiang Liu5004e982015-07-09 16:00:41 +0800156 for_each_pci_msi_entry(entry, dev) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500157 if (irq == entry->irq)
158 break;
159 }
160 } else if (dev->msi_enabled) {
161 entry = irq_get_msi_desc(irq);
162 }
163
164 if (entry)
Jiang Liu83a18912014-11-09 23:10:34 +0800165 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500166}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200167
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800168void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200169{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800170 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200171}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500172
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500173static inline __attribute_const__ u32 msi_mask(unsigned x)
174{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700175 /* Don't shift by >= width of type */
176 if (x >= 5)
177 return 0xffffffff;
178 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500179}
180
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600181/*
182 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
183 * mask all MSI interrupts by clearing the MSI enable bit does not work
184 * reliably as devices without an INTx disable bit will then generate a
185 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600186 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100187u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400189 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Yijing Wang38737d82014-10-27 10:44:36 +0800191 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900192 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400193
194 mask_bits &= ~mask;
195 mask_bits |= flag;
Jiang Liue39758e2015-07-09 16:00:43 +0800196 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
197 mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900198
199 return mask_bits;
200}
201
202static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
203{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100204 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400205}
206
207/*
208 * This internal function does not flush PCI writes to the device.
209 * All users must ensure that they read from the device before either
210 * assuming that the device state is up to date, or returning out of this
211 * file. This saves a few milliseconds when initialising devices with lots
212 * of MSI-X interrupts.
213 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100214u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400215{
216 u32 mask_bits = desc->masked;
217 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900218 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800219
220 if (pci_msi_ignore_mask)
221 return 0;
222
Sheng Yang8d805282010-11-11 15:46:55 +0800223 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
224 if (flag)
225 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400226 writel(mask_bits, desc->mask_base + offset);
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/**
250 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
251 * @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}
257
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100258/**
259 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
260 * @data: pointer to irqdata associated to that interrupt
261 */
262void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400263{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200264 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800267void default_restore_msi_irqs(struct pci_dev *dev)
268{
269 struct msi_desc *entry;
270
Jiang Liu5004e982015-07-09 16:00:41 +0800271 for_each_pci_msi_entry(entry, dev)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800272 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800273}
274
Jiang Liu891d4a42014-11-09 23:10:33 +0800275void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700276{
Jiang Liue39758e2015-07-09 16:00:43 +0800277 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
278
279 BUG_ON(dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700280
Ben Hutchings30da5522010-07-23 14:56:28 +0100281 if (entry->msi_attrib.is_msix) {
282 void __iomem *base = entry->mask_base +
283 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
284
285 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
286 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
287 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
288 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600289 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100290 u16 data;
291
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600292 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
293 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100294 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600295 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
296 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600297 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100298 } else {
299 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600300 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100301 }
302 msg->data = data;
303 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700304}
305
Jiang Liu83a18912014-11-09 23:10:34 +0800306void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800307{
Jiang Liue39758e2015-07-09 16:00:43 +0800308 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
309
310 if (dev->current_state != PCI_D0) {
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100311 /* Don't touch the hardware now */
312 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400313 void __iomem *base;
314 base = entry->mask_base +
315 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
316
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900317 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
318 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
319 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400320 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600321 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400322 u16 msgctl;
323
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600324 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400325 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
326 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600327 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700328
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600329 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
330 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700331 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600332 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
333 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600334 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
335 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700336 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600337 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
338 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700339 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700340 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700341 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700342}
343
Jiang Liu83a18912014-11-09 23:10:34 +0800344void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800345{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200346 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800347
Jiang Liu83a18912014-11-09 23:10:34 +0800348 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800349}
Jiang Liu83a18912014-11-09 23:10:34 +0800350EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800351
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900352static void free_msi_irqs(struct pci_dev *dev)
353{
Jiang Liu5004e982015-07-09 16:00:41 +0800354 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900355 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800356 struct attribute **msi_attrs;
357 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800358 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900359
Jiang Liu5004e982015-07-09 16:00:41 +0800360 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800361 if (entry->irq)
362 for (i = 0; i < entry->nvec_used; i++)
363 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900364
Jiang Liu8e047ad2014-11-15 22:24:07 +0800365 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900366
Jiang Liu5004e982015-07-09 16:00:41 +0800367 list_for_each_entry_safe(entry, tmp, msi_list, list) {
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900368 if (entry->msi_attrib.is_msix) {
Jiang Liu5004e982015-07-09 16:00:41 +0800369 if (list_is_last(&entry->list, msi_list))
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900370 iounmap(entry->mask_base);
371 }
Neil Horman424eb392012-01-03 10:29:54 -0500372
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900373 list_del(&entry->list);
374 kfree(entry);
375 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800376
377 if (dev->msi_irq_groups) {
378 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
379 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700380 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800381 dev_attr = container_of(msi_attrs[count],
382 struct device_attribute, attr);
383 kfree(dev_attr->attr.name);
384 kfree(dev_attr);
385 ++count;
386 }
387 kfree(msi_attrs);
388 kfree(dev->msi_irq_groups[0]);
389 kfree(dev->msi_irq_groups);
390 dev->msi_irq_groups = NULL;
391 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900392}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900393
David Millerba698ad2007-10-25 01:16:30 -0700394static void pci_intx_for_msi(struct pci_dev *dev, int enable)
395{
396 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
397 pci_intx(dev, enable);
398}
399
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100400static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800401{
Shaohua Li41017f02006-02-08 17:11:38 +0800402 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700403 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800404
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800405 if (!dev->msi_enabled)
406 return;
407
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200408 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800409
David Millerba698ad2007-10-25 01:16:30 -0700410 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500411 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800412 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700413
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600414 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800415 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
416 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700417 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400418 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600419 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100420}
421
422static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800423{
Shaohua Li41017f02006-02-08 17:11:38 +0800424 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800425
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700426 if (!dev->msix_enabled)
427 return;
Jiang Liu5004e982015-07-09 16:00:41 +0800428 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700429
Shaohua Li41017f02006-02-08 17:11:38 +0800430 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700431 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500432 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800433 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800434
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800435 arch_restore_msi_irqs(dev);
Jiang Liu5004e982015-07-09 16:00:41 +0800436 for_each_pci_msi_entry(entry, dev)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400437 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800438
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500439 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800440}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100441
442void pci_restore_msi_state(struct pci_dev *dev)
443{
444 __pci_restore_msi_state(dev);
445 __pci_restore_msix_state(dev);
446}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600447EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800448
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800449static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400450 char *buf)
451{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800452 struct msi_desc *entry;
453 unsigned long irq;
454 int retval;
455
456 retval = kstrtoul(attr->attr.name, 10, &irq);
457 if (retval)
458 return retval;
459
Yijing Wange11ece52014-07-08 10:09:19 +0800460 entry = irq_get_msi_desc(irq);
461 if (entry)
462 return sprintf(buf, "%s\n",
463 entry->msi_attrib.is_msix ? "msix" : "msi");
464
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800465 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400466}
467
Neil Hormanda8d1c82011-10-06 14:08:18 -0400468static int populate_msi_sysfs(struct pci_dev *pdev)
469{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800470 struct attribute **msi_attrs;
471 struct attribute *msi_attr;
472 struct device_attribute *msi_dev_attr;
473 struct attribute_group *msi_irq_group;
474 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400475 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800476 int ret = -ENOMEM;
477 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400478 int count = 0;
479
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800480 /* Determine how many msi entries we have */
Jiang Liu5004e982015-07-09 16:00:41 +0800481 for_each_pci_msi_entry(entry, pdev)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800482 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800483 if (!num_msi)
484 return 0;
485
486 /* Dynamically create the MSI attributes for the PCI device */
487 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
488 if (!msi_attrs)
489 return -ENOMEM;
Jiang Liu5004e982015-07-09 16:00:41 +0800490 for_each_pci_msi_entry(entry, pdev) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700491 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600492 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700493 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600494 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700495
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800496 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600497 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
498 entry->irq);
499 if (!msi_dev_attr->attr.name)
500 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800501 msi_dev_attr->attr.mode = S_IRUGO;
502 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800503 ++count;
504 }
505
506 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
507 if (!msi_irq_group)
508 goto error_attrs;
509 msi_irq_group->name = "msi_irqs";
510 msi_irq_group->attrs = msi_attrs;
511
512 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
513 if (!msi_irq_groups)
514 goto error_irq_group;
515 msi_irq_groups[0] = msi_irq_group;
516
517 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
518 if (ret)
519 goto error_irq_groups;
520 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400521
522 return 0;
523
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800524error_irq_groups:
525 kfree(msi_irq_groups);
526error_irq_group:
527 kfree(msi_irq_group);
528error_attrs:
529 count = 0;
530 msi_attr = msi_attrs[count];
531 while (msi_attr) {
532 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
533 kfree(msi_attr->name);
534 kfree(msi_dev_attr);
535 ++count;
536 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400537 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700538 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400539 return ret;
540}
541
Jiang Liu63a7b172014-11-06 22:20:32 +0800542static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800543{
544 u16 control;
545 struct msi_desc *entry;
546
547 /* MSI Entry Initialization */
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800548 entry = alloc_msi_entry(&dev->dev);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800549 if (!entry)
550 return NULL;
551
552 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
553
554 entry->msi_attrib.is_msix = 0;
555 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
556 entry->msi_attrib.entry_nr = 0;
557 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
558 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800559 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800560 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
561 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800562
563 if (control & PCI_MSI_FLAGS_64BIT)
564 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
565 else
566 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
567
568 /* Save the initial mask status */
569 if (entry->msi_attrib.maskbit)
570 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
571
572 return entry;
573}
574
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000575static int msi_verify_entries(struct pci_dev *dev)
576{
577 struct msi_desc *entry;
578
Jiang Liu5004e982015-07-09 16:00:41 +0800579 for_each_pci_msi_entry(entry, dev) {
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000580 if (!dev->no_64bit_msi || !entry->msg.address_hi)
581 continue;
582 dev_err(&dev->dev, "Device has broken 64-bit MSI but arch"
583 " tried to assign one above 4G\n");
584 return -EIO;
585 }
586 return 0;
587}
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589/**
590 * msi_capability_init - configure device's MSI capability structure
591 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400592 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400594 * Setup the MSI capability structure of the device with the requested
595 * number of interrupts. A return value of zero indicates the successful
596 * setup of an entry with the new MSI irq. A negative return value indicates
597 * an error, and a positive return value indicates the number of interrupts
598 * which could have been allocated.
599 */
600static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000603 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400604 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500606 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600607
Jiang Liu63a7b172014-11-06 22:20:32 +0800608 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700609 if (!entry)
610 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700611
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400612 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800613 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400614 msi_mask_irq(entry, mask, mask);
615
Jiang Liu5004e982015-07-09 16:00:41 +0800616 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Michael Ellerman9c831332007-04-18 19:39:21 +1000617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800619 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000620 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900621 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900622 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000623 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500624 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700625
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000626 ret = msi_verify_entries(dev);
627 if (ret) {
628 msi_mask_irq(entry, mask, ~mask);
629 free_msi_irqs(dev);
630 return ret;
631 }
632
Neil Hormanda8d1c82011-10-06 14:08:18 -0400633 ret = populate_msi_sysfs(dev);
634 if (ret) {
635 msi_mask_irq(entry, mask, ~mask);
636 free_msi_irqs(dev);
637 return ret;
638 }
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700641 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500642 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800643 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Jiang Liu5f226992015-07-30 14:00:08 -0500645 pcibios_free_irq(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000646 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
648}
649
Gavin Shan520fe9d2013-04-04 16:54:33 +0000650static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900651{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900652 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900653 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800654 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900655 u8 bir;
656
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600657 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
658 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600659 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800660 flags = pci_resource_flags(dev, bir);
661 if (!flags || (flags & IORESOURCE_UNSET))
662 return NULL;
663
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600664 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900665 phys_addr = pci_resource_start(dev, bir) + table_offset;
666
667 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
668}
669
Gavin Shan520fe9d2013-04-04 16:54:33 +0000670static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
671 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900672{
673 struct msi_desc *entry;
674 int i;
675
676 for (i = 0; i < nvec; i++) {
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800677 entry = alloc_msi_entry(&dev->dev);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900678 if (!entry) {
679 if (!i)
680 iounmap(base);
681 else
682 free_msi_irqs(dev);
683 /* No enough memory. Don't try again */
684 return -ENOMEM;
685 }
686
687 entry->msi_attrib.is_msix = 1;
688 entry->msi_attrib.is_64 = 1;
689 entry->msi_attrib.entry_nr = entries[i].entry;
690 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900691 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800692 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900693
Jiang Liu5004e982015-07-09 16:00:41 +0800694 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900695 }
696
697 return 0;
698}
699
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900700static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000701 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900702{
703 struct msi_desc *entry;
704 int i = 0;
705
Jiang Liu5004e982015-07-09 16:00:41 +0800706 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900707 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
708 PCI_MSIX_ENTRY_VECTOR_CTRL;
709
710 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900711 entry->masked = readl(entry->mask_base + offset);
712 msix_mask_irq(entry, 1);
713 i++;
714 }
715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717/**
718 * msix_capability_init - configure device's MSI-X capability
719 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700720 * @entries: pointer to an array of struct msix_entry entries
721 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600723 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700724 * single MSI-X irq. A return of zero indicates the successful setup of
725 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 **/
727static int msix_capability_init(struct pci_dev *dev,
728 struct msix_entry *entries, int nvec)
729{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000730 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900731 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 void __iomem *base;
733
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700734 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500735 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700736
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800737 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600739 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900740 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return -ENOMEM;
742
Gavin Shan520fe9d2013-04-04 16:54:33 +0000743 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900744 if (ret)
745 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000746
Jiang Liu8e047ad2014-11-15 22:24:07 +0800747 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900748 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100749 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000750
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000751 /* Check if all MSI entries honor device restrictions */
752 ret = msi_verify_entries(dev);
753 if (ret)
754 goto out_free;
755
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700756 /*
757 * Some devices require MSI-X to be enabled before we can touch the
758 * MSI-X registers. We need to mask all the vectors to prevent
759 * interrupts coming in before they're fully set up.
760 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500761 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800762 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700763
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900764 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700765
Neil Hormanda8d1c82011-10-06 14:08:18 -0400766 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100767 if (ret)
768 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400769
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700770 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700771 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800772 dev->msix_enabled = 1;
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500773 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600774
Jiang Liu5f226992015-07-30 14:00:08 -0500775 pcibios_free_irq(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900777
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100778out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900779 if (ret < 0) {
780 /*
781 * If we had some success, report the number of irqs
782 * we succeeded in setting up.
783 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900784 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900785 int avail = 0;
786
Jiang Liu5004e982015-07-09 16:00:41 +0800787 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900788 if (entry->irq != 0)
789 avail++;
790 }
791 if (avail != 0)
792 ret = avail;
793 }
794
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100795out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900796 free_msi_irqs(dev);
797
798 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600802 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400803 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000804 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400805 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700806 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000807 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600808 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400809 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600810static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400811{
812 struct pci_bus *bus;
813
Brice Goglin0306ebf2006-10-05 10:24:31 +0200814 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600815 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600816 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600817
818 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600819 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400820
Michael Ellerman314e77b2007-04-05 17:19:12 +1000821 /*
822 * You can't ask to have 0 or less MSIs configured.
823 * a) it's stupid ..
824 * b) the list manipulation code assumes nvec >= 1.
825 */
826 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600827 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000828
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900829 /*
830 * Any bridge which does NOT route MSI transactions from its
831 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200832 * the secondary pci_bus.
833 * We expect only arch-specific PCI host bus controller driver
834 * or quirks for specific PCI bridges to be setting NO_MSI.
835 */
Brice Goglin24334a12006-08-31 01:55:07 -0400836 for (bus = dev->bus; bus; bus = bus->parent)
837 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600838 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400839
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600840 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400841}
842
843/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100844 * pci_msi_vec_count - Return the number of MSI vectors a device can send
845 * @dev: device to report about
846 *
847 * This function returns the number of MSI vectors a device requested via
848 * Multiple Message Capable register. It returns a negative errno if the
849 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
850 * and returns a power of two, up to a maximum of 2^5 (32), according to the
851 * MSI specification.
852 **/
853int pci_msi_vec_count(struct pci_dev *dev)
854{
855 int ret;
856 u16 msgctl;
857
858 if (!dev->msi_cap)
859 return -EINVAL;
860
861 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
862 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
863
864 return ret;
865}
866EXPORT_SYMBOL(pci_msi_vec_count);
867
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400868void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400870 struct msi_desc *desc;
871 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100873 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700874 return;
875
Jiang Liu5004e982015-07-09 16:00:41 +0800876 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Jiang Liu4a7cc832015-07-09 16:00:44 +0800877 desc = first_pci_msi_entry(dev);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600878
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500879 pci_msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700880 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800881 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700882
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900883 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800884 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900885 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100886 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100887
888 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400889 dev->irq = desc->msi_attrib.default_irq;
Jiang Liu5f226992015-07-30 14:00:08 -0500890 pcibios_alloc_irq(dev);
Yinghai Lud52877c2008-04-23 14:58:09 -0700891}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400892
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900893void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700894{
Yinghai Lud52877c2008-04-23 14:58:09 -0700895 if (!pci_msi_enable || !dev || !dev->msi_enabled)
896 return;
897
898 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900899 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100901EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100904 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100905 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100906 * This function returns the number of device's MSI-X table entries and
907 * therefore the number of MSI-X vectors device is capable of sending.
908 * It returns a negative errno if the device is not capable of sending MSI-X
909 * interrupts.
910 **/
911int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100912{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100913 u16 control;
914
Gavin Shan520fe9d2013-04-04 16:54:33 +0000915 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100916 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100917
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600918 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600919 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100920}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100921EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100922
923/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 * pci_enable_msix - configure device's MSI-X capability structure
925 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700926 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700927 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 *
929 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700930 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * MSI-X mode enabled on its hardware device function. A return of zero
932 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700933 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300935 * of irqs or MSI-X vectors available. Driver should use the returned value to
936 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900938int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600940 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700941 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600943 if (!pci_msi_supported(dev, nvec))
944 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000945
Alexander Gordeev27e20602014-09-23 14:25:11 -0600946 if (!entries)
947 return -EINVAL;
948
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100949 nr_entries = pci_msix_vec_count(dev);
950 if (nr_entries < 0)
951 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300953 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 /* Check for any invalid entries */
956 for (i = 0; i < nvec; i++) {
957 if (entries[i].entry >= nr_entries)
958 return -EINVAL; /* invalid entry */
959 for (j = i + 1; j < nvec; j++) {
960 if (entries[i].entry == entries[j].entry)
961 return -EINVAL; /* duplicate entry */
962 }
963 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700964 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700965
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700966 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900967 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400968 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -EINVAL;
970 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600971 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100973EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900975void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100976{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900977 struct msi_desc *entry;
978
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100979 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700980 return;
981
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900982 /* Return the device with MSI-X masked as initial states */
Jiang Liu5004e982015-07-09 16:00:41 +0800983 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900984 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100985 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900986 }
987
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500988 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700989 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800990 dev->msix_enabled = 0;
Jiang Liu5f226992015-07-30 14:00:08 -0500991 pcibios_alloc_irq(dev);
Yinghai Lud52877c2008-04-23 14:58:09 -0700992}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900993
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900994void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700995{
996 if (!pci_msi_enable || !dev || !dev->msix_enabled)
997 return;
998
999 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001000 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001002EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001004void pci_no_msi(void)
1005{
1006 pci_msi_enable = 0;
1007}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001008
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001009/**
1010 * pci_msi_enabled - is MSI enabled?
1011 *
1012 * Returns true if MSI has not been disabled by the command-line option
1013 * pci=nomsi.
1014 **/
1015int pci_msi_enabled(void)
1016{
1017 return pci_msi_enable;
1018}
1019EXPORT_SYMBOL(pci_msi_enabled);
1020
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001021void pci_msi_init_pci_dev(struct pci_dev *dev)
1022{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001023}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001024
1025/**
1026 * pci_enable_msi_range - configure device's MSI capability structure
1027 * @dev: device to configure
1028 * @minvec: minimal number of interrupts to configure
1029 * @maxvec: maximum number of interrupts to configure
1030 *
1031 * This function tries to allocate a maximum possible number of interrupts in a
1032 * range between @minvec and @maxvec. It returns a negative errno if an error
1033 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1034 * and updates the @dev's irq member to the lowest new interrupt number;
1035 * the other interrupt numbers allocated to this device are consecutive.
1036 **/
1037int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1038{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001039 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001040 int rc;
1041
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001042 if (!pci_msi_supported(dev, minvec))
1043 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001044
1045 WARN_ON(!!dev->msi_enabled);
1046
1047 /* Check whether driver already requested MSI-X irqs */
1048 if (dev->msix_enabled) {
1049 dev_info(&dev->dev,
1050 "can't enable MSI (MSI-X already enabled)\n");
1051 return -EINVAL;
1052 }
1053
Alexander Gordeev302a2522013-12-30 08:28:16 +01001054 if (maxvec < minvec)
1055 return -ERANGE;
1056
Alexander Gordeev034cd972014-04-14 15:28:35 +02001057 nvec = pci_msi_vec_count(dev);
1058 if (nvec < 0)
1059 return nvec;
1060 else if (nvec < minvec)
1061 return -EINVAL;
1062 else if (nvec > maxvec)
1063 nvec = maxvec;
1064
Alexander Gordeev302a2522013-12-30 08:28:16 +01001065 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001066 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001067 if (rc < 0) {
1068 return rc;
1069 } else if (rc > 0) {
1070 if (rc < minvec)
1071 return -ENOSPC;
1072 nvec = rc;
1073 }
1074 } while (rc);
1075
1076 return nvec;
1077}
1078EXPORT_SYMBOL(pci_enable_msi_range);
1079
1080/**
1081 * pci_enable_msix_range - configure device's MSI-X capability structure
1082 * @dev: pointer to the pci_dev data structure of MSI-X device function
1083 * @entries: pointer to an array of MSI-X entries
1084 * @minvec: minimum number of MSI-X irqs requested
1085 * @maxvec: maximum number of MSI-X irqs requested
1086 *
1087 * Setup the MSI-X capability structure of device function with a maximum
1088 * possible number of interrupts in the range between @minvec and @maxvec
1089 * upon its software driver call to request for MSI-X mode enabled on its
1090 * hardware device function. It returns a negative errno if an error occurs.
1091 * If it succeeds, it returns the actual number of interrupts allocated and
1092 * indicates the successful configuration of MSI-X capability structure
1093 * with new allocated MSI-X interrupts.
1094 **/
1095int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1096 int minvec, int maxvec)
1097{
1098 int nvec = maxvec;
1099 int rc;
1100
1101 if (maxvec < minvec)
1102 return -ERANGE;
1103
1104 do {
1105 rc = pci_enable_msix(dev, entries, nvec);
1106 if (rc < 0) {
1107 return rc;
1108 } else if (rc > 0) {
1109 if (rc < minvec)
1110 return -ENOSPC;
1111 nvec = rc;
1112 }
1113 } while (rc);
1114
1115 return nvec;
1116}
1117EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001118
Jiang Liu25a98bd2015-07-09 16:00:45 +08001119struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1120{
1121 return to_pci_dev(desc->dev);
1122}
1123
Jiang Liuc179c9b2015-07-09 16:00:36 +08001124void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1125{
1126 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1127
1128 return dev->bus->sysdata;
1129}
1130EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1131
Jiang Liu3878eae2014-11-11 21:02:18 +08001132#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1133/**
1134 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1135 * @irq_data: Pointer to interrupt data of the MSI interrupt
1136 * @msg: Pointer to the message
1137 */
1138void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1139{
Jiang Liu507a8832015-06-01 16:05:42 +08001140 struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
Jiang Liu3878eae2014-11-11 21:02:18 +08001141
1142 /*
1143 * For MSI-X desc->irq is always equal to irq_data->irq. For
1144 * MSI only the first interrupt of MULTI MSI passes the test.
1145 */
1146 if (desc->irq == irq_data->irq)
1147 __pci_write_msi_msg(desc, msg);
1148}
1149
1150/**
1151 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1152 * @dev: Pointer to the PCI device
1153 * @desc: Pointer to the msi descriptor
1154 *
1155 * The ID number is only used within the irqdomain.
1156 */
1157irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1158 struct msi_desc *desc)
1159{
1160 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1161 PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
1162 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1163}
1164
1165static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1166{
1167 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1168}
1169
1170/**
1171 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1172 * @domain: The interrupt domain to check
1173 * @info: The domain info for verification
1174 * @dev: The device to check
1175 *
1176 * Returns:
1177 * 0 if the functionality is supported
1178 * 1 if Multi MSI is requested, but the domain does not support it
1179 * -ENOTSUPP otherwise
1180 */
1181int pci_msi_domain_check_cap(struct irq_domain *domain,
1182 struct msi_domain_info *info, struct device *dev)
1183{
1184 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1185
1186 /* Special handling to support pci_enable_msi_range() */
1187 if (pci_msi_desc_is_multi_msi(desc) &&
1188 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1189 return 1;
1190 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1191 return -ENOTSUPP;
1192
1193 return 0;
1194}
1195
1196static int pci_msi_domain_handle_error(struct irq_domain *domain,
1197 struct msi_desc *desc, int error)
1198{
1199 /* Special handling to support pci_enable_msi_range() */
1200 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1201 return 1;
1202
1203 return error;
1204}
1205
1206#ifdef GENERIC_MSI_DOMAIN_OPS
1207static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1208 struct msi_desc *desc)
1209{
1210 arg->desc = desc;
1211 arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1212 desc);
1213}
1214#else
1215#define pci_msi_domain_set_desc NULL
1216#endif
1217
1218static struct msi_domain_ops pci_msi_domain_ops_default = {
1219 .set_desc = pci_msi_domain_set_desc,
1220 .msi_check = pci_msi_domain_check_cap,
1221 .handle_error = pci_msi_domain_handle_error,
1222};
1223
1224static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1225{
1226 struct msi_domain_ops *ops = info->ops;
1227
1228 if (ops == NULL) {
1229 info->ops = &pci_msi_domain_ops_default;
1230 } else {
1231 if (ops->set_desc == NULL)
1232 ops->set_desc = pci_msi_domain_set_desc;
1233 if (ops->msi_check == NULL)
1234 ops->msi_check = pci_msi_domain_check_cap;
1235 if (ops->handle_error == NULL)
1236 ops->handle_error = pci_msi_domain_handle_error;
1237 }
1238}
1239
1240static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1241{
1242 struct irq_chip *chip = info->chip;
1243
1244 BUG_ON(!chip);
1245 if (!chip->irq_write_msi_msg)
1246 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1247}
1248
1249/**
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001250 * pci_msi_create_irq_domain - Create a MSI interrupt domain
1251 * @fwnode: Optional fwnode of the interrupt controller
Jiang Liu3878eae2014-11-11 21:02:18 +08001252 * @info: MSI domain info
1253 * @parent: Parent irq domain
1254 *
1255 * Updates the domain and chip ops and creates a MSI interrupt domain.
1256 *
1257 * Returns:
1258 * A domain pointer or NULL in case of failure.
1259 */
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001260struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode,
Jiang Liu3878eae2014-11-11 21:02:18 +08001261 struct msi_domain_info *info,
1262 struct irq_domain *parent)
1263{
Marc Zyngier03808392015-07-28 14:46:09 +01001264 struct irq_domain *domain;
1265
Jiang Liu3878eae2014-11-11 21:02:18 +08001266 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1267 pci_msi_domain_update_dom_ops(info);
1268 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1269 pci_msi_domain_update_chip_ops(info);
1270
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001271 domain = msi_create_irq_domain(fwnode, info, parent);
Marc Zyngier03808392015-07-28 14:46:09 +01001272 if (!domain)
1273 return NULL;
1274
1275 domain->bus_token = DOMAIN_BUS_PCI_MSI;
1276 return domain;
Jiang Liu3878eae2014-11-11 21:02:18 +08001277}
1278
1279/**
1280 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1281 * @domain: The interrupt domain to allocate from
1282 * @dev: The device for which to allocate
1283 * @nvec: The number of interrupts to allocate
1284 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1285 *
1286 * Returns:
1287 * A virtual interrupt number or an error code in case of failure
1288 */
1289int pci_msi_domain_alloc_irqs(struct irq_domain *domain, struct pci_dev *dev,
1290 int nvec, int type)
1291{
1292 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
1293}
1294
1295/**
1296 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1297 * @domain: The interrupt domain
1298 * @dev: The device for which to free interrupts
1299 */
1300void pci_msi_domain_free_irqs(struct irq_domain *domain, struct pci_dev *dev)
1301{
1302 msi_domain_free_irqs(domain, &dev->dev);
1303}
Jiang Liu8e047ad2014-11-15 22:24:07 +08001304
1305/**
1306 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001307 * @fwnode: Optional fwnode of the interrupt controller
Jiang Liu8e047ad2014-11-15 22:24:07 +08001308 * @info: MSI domain info
1309 * @parent: Parent irq domain
1310 *
1311 * Returns: A domain pointer or NULL in case of failure. If successful
1312 * the default PCI/MSI irqdomain pointer is updated.
1313 */
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001314struct irq_domain *pci_msi_create_default_irq_domain(struct fwnode_handle *fwnode,
Jiang Liu8e047ad2014-11-15 22:24:07 +08001315 struct msi_domain_info *info, struct irq_domain *parent)
1316{
1317 struct irq_domain *domain;
1318
1319 mutex_lock(&pci_msi_domain_lock);
1320 if (pci_msi_default_domain) {
1321 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1322 domain = NULL;
1323 } else {
Marc Zyngierbe5436c2015-10-13 12:51:44 +01001324 domain = pci_msi_create_irq_domain(fwnode, info, parent);
Jiang Liu8e047ad2014-11-15 22:24:07 +08001325 pci_msi_default_domain = domain;
1326 }
1327 mutex_unlock(&pci_msi_domain_lock);
1328
1329 return domain;
1330}
David Daneyb6eec9b2015-10-08 15:10:49 -07001331
1332static int get_msi_id_cb(struct pci_dev *pdev, u16 alias, void *data)
1333{
1334 u32 *pa = data;
1335
1336 *pa = alias;
1337 return 0;
1338}
1339/**
1340 * pci_msi_domain_get_msi_rid - Get the MSI requester id (RID)
1341 * @domain: The interrupt domain
1342 * @pdev: The PCI device.
1343 *
1344 * The RID for a device is formed from the alias, with a firmware
1345 * supplied mapping applied
1346 *
1347 * Returns: The RID.
1348 */
1349u32 pci_msi_domain_get_msi_rid(struct irq_domain *domain, struct pci_dev *pdev)
1350{
1351 struct device_node *of_node;
1352 u32 rid = 0;
1353
1354 pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1355
1356 of_node = irq_domain_get_of_node(domain);
1357 if (of_node)
1358 rid = of_msi_map_rid(&pdev->dev, of_node, rid);
1359
1360 return rid;
1361}
Jiang Liu3878eae2014-11-11 21:02:18 +08001362#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */