blob: 3aae7c9ad31c8686f6eff6d13532256a6e27a732 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int pci_msi_enable = 1;
Yijing Wang38737d82014-10-27 10:44:36 +080027int pci_msi_ignore_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Bjorn Helgaas527eee22013-04-17 17:44:48 -060029#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
30
Jiang Liu8e047ad2014-11-15 22:24:07 +080031#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
32static struct irq_domain *pci_msi_default_domain;
33static DEFINE_MUTEX(pci_msi_domain_lock);
34
35struct irq_domain * __weak arch_get_pci_msi_domain(struct pci_dev *dev)
36{
37 return pci_msi_default_domain;
38}
39
Marc Zyngier020c3122014-11-15 10:49:12 +000040static struct irq_domain *pci_msi_get_domain(struct pci_dev *dev)
41{
42 struct irq_domain *domain = NULL;
43
44 if (dev->bus->msi)
45 domain = dev->bus->msi->domain;
46 if (!domain)
47 domain = arch_get_pci_msi_domain(dev);
48
49 return domain;
50}
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
Yijing Wang262a2ba2014-11-11 15:22:45 -070080struct msi_controller * __weak pcibios_msi_controller(struct pci_dev *dev)
81{
82 return NULL;
83}
84
85static struct msi_controller *pci_msi_controller(struct pci_dev *dev)
86{
87 struct msi_controller *msi_ctrl = dev->bus->msi;
88
89 if (msi_ctrl)
90 return msi_ctrl;
91
92 return pcibios_msi_controller(dev);
93}
94
Thomas Petazzoni4287d822013-08-09 22:27:06 +020095int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
96{
Yijing Wang262a2ba2014-11-11 15:22:45 -070097 struct msi_controller *chip = pci_msi_controller(dev);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020098 int err;
99
100 if (!chip || !chip->setup_irq)
101 return -EINVAL;
102
103 err = chip->setup_irq(chip, dev, desc);
104 if (err < 0)
105 return err;
106
107 irq_set_chip_data(desc->irq, chip);
108
109 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200110}
111
112void __weak arch_teardown_msi_irq(unsigned int irq)
113{
Yijing Wangc2791b82014-11-11 17:45:45 -0700114 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +0200115
116 if (!chip || !chip->teardown_irq)
117 return;
118
119 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200120}
121
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200122int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100123{
124 struct msi_desc *entry;
125 int ret;
126
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400127 /*
128 * If an architecture wants to support multiple MSI, it needs to
129 * override arch_setup_msi_irqs()
130 */
131 if (type == PCI_CAP_ID_MSI && nvec > 1)
132 return 1;
133
Jiang Liu5004e982015-07-09 16:00:41 +0800134 for_each_pci_msi_entry(entry, dev) {
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100135 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100136 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100137 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100138 if (ret > 0)
139 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100140 }
141
142 return 0;
143}
144
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200145/*
146 * We have a default implementation available as a separate non-weak
147 * function, as it is used by the Xen x86 PCI code
148 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400149void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100150{
Jiang Liu63a7b172014-11-06 22:20:32 +0800151 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100152 struct msi_desc *entry;
153
Jiang Liu5004e982015-07-09 16:00:41 +0800154 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800155 if (entry->irq)
156 for (i = 0; i < entry->nvec_used; i++)
157 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100158}
159
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200160void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
161{
162 return default_teardown_msi_irqs(dev);
163}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500164
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800165static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500166{
167 struct msi_desc *entry;
168
169 entry = NULL;
170 if (dev->msix_enabled) {
Jiang Liu5004e982015-07-09 16:00:41 +0800171 for_each_pci_msi_entry(entry, dev) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500172 if (irq == entry->irq)
173 break;
174 }
175 } else if (dev->msi_enabled) {
176 entry = irq_get_msi_desc(irq);
177 }
178
179 if (entry)
Jiang Liu83a18912014-11-09 23:10:34 +0800180 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500181}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200182
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800183void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200184{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800185 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200186}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500187
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500188static inline __attribute_const__ u32 msi_mask(unsigned x)
189{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700190 /* Don't shift by >= width of type */
191 if (x >= 5)
192 return 0xffffffff;
193 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500194}
195
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600196/*
197 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
198 * mask all MSI interrupts by clearing the MSI enable bit does not work
199 * reliably as devices without an INTx disable bit will then generate a
200 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600201 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100202u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400204 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Yijing Wang38737d82014-10-27 10:44:36 +0800206 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900207 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400208
209 mask_bits &= ~mask;
210 mask_bits |= flag;
Jiang Liue39758e2015-07-09 16:00:43 +0800211 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
212 mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900213
214 return mask_bits;
215}
216
217static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
218{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100219 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400220}
221
222/*
223 * This internal function does not flush PCI writes to the device.
224 * All users must ensure that they read from the device before either
225 * assuming that the device state is up to date, or returning out of this
226 * file. This saves a few milliseconds when initialising devices with lots
227 * of MSI-X interrupts.
228 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100229u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400230{
231 u32 mask_bits = desc->masked;
232 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900233 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800234
235 if (pci_msi_ignore_mask)
236 return 0;
237
Sheng Yang8d805282010-11-11 15:46:55 +0800238 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
239 if (flag)
240 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400241 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900242
243 return mask_bits;
244}
245
246static void msix_mask_irq(struct msi_desc *desc, u32 flag)
247{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100248 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400249}
250
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200251static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400252{
Jiang Liuc391f262015-06-01 16:05:41 +0800253 struct msi_desc *desc = irq_data_get_msi_desc(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400254
255 if (desc->msi_attrib.is_msix) {
256 msix_mask_irq(desc, flag);
257 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400258 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800259 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400260 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400262}
263
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100264/**
265 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
266 * @data: pointer to irqdata associated to that interrupt
267 */
268void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400269{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200270 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400271}
272
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100273/**
274 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
275 * @data: pointer to irqdata associated to that interrupt
276 */
277void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400278{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200279 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800282void default_restore_msi_irqs(struct pci_dev *dev)
283{
284 struct msi_desc *entry;
285
Jiang Liu5004e982015-07-09 16:00:41 +0800286 for_each_pci_msi_entry(entry, dev)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800287 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800288}
289
Jiang Liu891d4a42014-11-09 23:10:33 +0800290void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700291{
Jiang Liue39758e2015-07-09 16:00:43 +0800292 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
293
294 BUG_ON(dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700295
Ben Hutchings30da5522010-07-23 14:56:28 +0100296 if (entry->msi_attrib.is_msix) {
297 void __iomem *base = entry->mask_base +
298 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
299
300 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
301 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
302 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
303 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600304 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100305 u16 data;
306
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600307 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
308 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100309 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600310 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
311 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600312 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100313 } else {
314 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600315 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100316 }
317 msg->data = data;
318 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700319}
320
Jiang Liu83a18912014-11-09 23:10:34 +0800321void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800322{
Jiang Liue39758e2015-07-09 16:00:43 +0800323 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
324
325 if (dev->current_state != PCI_D0) {
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100326 /* Don't touch the hardware now */
327 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400328 void __iomem *base;
329 base = entry->mask_base +
330 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
331
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900332 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
333 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
334 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400335 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600336 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400337 u16 msgctl;
338
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600339 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400340 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
341 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600342 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700343
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600344 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
345 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700346 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600347 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
348 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600349 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
350 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700351 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600352 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
353 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700354 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700355 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700356 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700357}
358
Jiang Liu83a18912014-11-09 23:10:34 +0800359void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800360{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200361 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800362
Jiang Liu83a18912014-11-09 23:10:34 +0800363 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800364}
Jiang Liu83a18912014-11-09 23:10:34 +0800365EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800366
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900367static void free_msi_irqs(struct pci_dev *dev)
368{
Jiang Liu5004e982015-07-09 16:00:41 +0800369 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900370 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800371 struct attribute **msi_attrs;
372 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800373 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900374
Jiang Liu5004e982015-07-09 16:00:41 +0800375 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800376 if (entry->irq)
377 for (i = 0; i < entry->nvec_used; i++)
378 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900379
Jiang Liu8e047ad2014-11-15 22:24:07 +0800380 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900381
Jiang Liu5004e982015-07-09 16:00:41 +0800382 list_for_each_entry_safe(entry, tmp, msi_list, list) {
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900383 if (entry->msi_attrib.is_msix) {
Jiang Liu5004e982015-07-09 16:00:41 +0800384 if (list_is_last(&entry->list, msi_list))
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900385 iounmap(entry->mask_base);
386 }
Neil Horman424eb392012-01-03 10:29:54 -0500387
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900388 list_del(&entry->list);
389 kfree(entry);
390 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800391
392 if (dev->msi_irq_groups) {
393 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
394 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700395 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800396 dev_attr = container_of(msi_attrs[count],
397 struct device_attribute, attr);
398 kfree(dev_attr->attr.name);
399 kfree(dev_attr);
400 ++count;
401 }
402 kfree(msi_attrs);
403 kfree(dev->msi_irq_groups[0]);
404 kfree(dev->msi_irq_groups);
405 dev->msi_irq_groups = NULL;
406 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900407}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900408
David Millerba698ad2007-10-25 01:16:30 -0700409static void pci_intx_for_msi(struct pci_dev *dev, int enable)
410{
411 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
412 pci_intx(dev, enable);
413}
414
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100415static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800416{
Shaohua Li41017f02006-02-08 17:11:38 +0800417 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700418 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800419
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800420 if (!dev->msi_enabled)
421 return;
422
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200423 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800424
David Millerba698ad2007-10-25 01:16:30 -0700425 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500426 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800427 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700428
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600429 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800430 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
431 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700432 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400433 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600434 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100435}
436
437static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800438{
Shaohua Li41017f02006-02-08 17:11:38 +0800439 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800440
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700441 if (!dev->msix_enabled)
442 return;
Jiang Liu5004e982015-07-09 16:00:41 +0800443 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700444
Shaohua Li41017f02006-02-08 17:11:38 +0800445 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700446 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500447 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800448 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800449
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800450 arch_restore_msi_irqs(dev);
Jiang Liu5004e982015-07-09 16:00:41 +0800451 for_each_pci_msi_entry(entry, dev)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400452 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800453
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500454 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800455}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100456
457void pci_restore_msi_state(struct pci_dev *dev)
458{
459 __pci_restore_msi_state(dev);
460 __pci_restore_msix_state(dev);
461}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600462EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800463
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800464static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400465 char *buf)
466{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800467 struct msi_desc *entry;
468 unsigned long irq;
469 int retval;
470
471 retval = kstrtoul(attr->attr.name, 10, &irq);
472 if (retval)
473 return retval;
474
Yijing Wange11ece52014-07-08 10:09:19 +0800475 entry = irq_get_msi_desc(irq);
476 if (entry)
477 return sprintf(buf, "%s\n",
478 entry->msi_attrib.is_msix ? "msix" : "msi");
479
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800480 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400481}
482
Neil Hormanda8d1c82011-10-06 14:08:18 -0400483static int populate_msi_sysfs(struct pci_dev *pdev)
484{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800485 struct attribute **msi_attrs;
486 struct attribute *msi_attr;
487 struct device_attribute *msi_dev_attr;
488 struct attribute_group *msi_irq_group;
489 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400490 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800491 int ret = -ENOMEM;
492 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400493 int count = 0;
494
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800495 /* Determine how many msi entries we have */
Jiang Liu5004e982015-07-09 16:00:41 +0800496 for_each_pci_msi_entry(entry, pdev)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800498 if (!num_msi)
499 return 0;
500
501 /* Dynamically create the MSI attributes for the PCI device */
502 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
503 if (!msi_attrs)
504 return -ENOMEM;
Jiang Liu5004e982015-07-09 16:00:41 +0800505 for_each_pci_msi_entry(entry, pdev) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700506 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600507 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700508 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600509 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700510
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800511 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600512 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
513 entry->irq);
514 if (!msi_dev_attr->attr.name)
515 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800516 msi_dev_attr->attr.mode = S_IRUGO;
517 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800518 ++count;
519 }
520
521 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
522 if (!msi_irq_group)
523 goto error_attrs;
524 msi_irq_group->name = "msi_irqs";
525 msi_irq_group->attrs = msi_attrs;
526
527 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
528 if (!msi_irq_groups)
529 goto error_irq_group;
530 msi_irq_groups[0] = msi_irq_group;
531
532 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
533 if (ret)
534 goto error_irq_groups;
535 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400536
537 return 0;
538
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800539error_irq_groups:
540 kfree(msi_irq_groups);
541error_irq_group:
542 kfree(msi_irq_group);
543error_attrs:
544 count = 0;
545 msi_attr = msi_attrs[count];
546 while (msi_attr) {
547 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
548 kfree(msi_attr->name);
549 kfree(msi_dev_attr);
550 ++count;
551 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400552 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700553 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400554 return ret;
555}
556
Jiang Liu63a7b172014-11-06 22:20:32 +0800557static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800558{
559 u16 control;
560 struct msi_desc *entry;
561
562 /* MSI Entry Initialization */
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800563 entry = alloc_msi_entry(&dev->dev);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800564 if (!entry)
565 return NULL;
566
567 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
568
569 entry->msi_attrib.is_msix = 0;
570 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
571 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));
576 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800577
578 if (control & PCI_MSI_FLAGS_64BIT)
579 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
580 else
581 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
582
583 /* Save the initial mask status */
584 if (entry->msi_attrib.maskbit)
585 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
586
587 return entry;
588}
589
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000590static int msi_verify_entries(struct pci_dev *dev)
591{
592 struct msi_desc *entry;
593
Jiang Liu5004e982015-07-09 16:00:41 +0800594 for_each_pci_msi_entry(entry, dev) {
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000595 if (!dev->no_64bit_msi || !entry->msg.address_hi)
596 continue;
597 dev_err(&dev->dev, "Device has broken 64-bit MSI but arch"
598 " tried to assign one above 4G\n");
599 return -EIO;
600 }
601 return 0;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/**
605 * msi_capability_init - configure device's MSI capability structure
606 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400607 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400609 * Setup the MSI capability structure of the device with the requested
610 * number of interrupts. A return value of zero indicates the successful
611 * setup of an entry with the new MSI irq. A negative return value indicates
612 * an error, and a positive return value indicates the number of interrupts
613 * which could have been allocated.
614 */
615static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000618 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400619 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500621 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600622
Jiang Liu63a7b172014-11-06 22:20:32 +0800623 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700624 if (!entry)
625 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700626
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400627 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800628 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400629 msi_mask_irq(entry, mask, mask);
630
Jiang Liu5004e982015-07-09 16:00:41 +0800631 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Michael Ellerman9c831332007-04-18 19:39:21 +1000632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800634 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000635 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900636 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900637 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000638 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500639 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700640
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000641 ret = msi_verify_entries(dev);
642 if (ret) {
643 msi_mask_irq(entry, mask, ~mask);
644 free_msi_irqs(dev);
645 return ret;
646 }
647
Neil Hormanda8d1c82011-10-06 14:08:18 -0400648 ret = populate_msi_sysfs(dev);
649 if (ret) {
650 msi_mask_irq(entry, mask, ~mask);
651 free_msi_irqs(dev);
652 return ret;
653 }
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700656 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500657 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800658 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Michael Ellerman7fe37302007-04-18 19:39:21 +1000660 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return 0;
662}
663
Gavin Shan520fe9d2013-04-04 16:54:33 +0000664static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900665{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900666 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900667 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800668 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900669 u8 bir;
670
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600671 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
672 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600673 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800674 flags = pci_resource_flags(dev, bir);
675 if (!flags || (flags & IORESOURCE_UNSET))
676 return NULL;
677
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600678 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900679 phys_addr = pci_resource_start(dev, bir) + table_offset;
680
681 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
682}
683
Gavin Shan520fe9d2013-04-04 16:54:33 +0000684static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
685 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900686{
687 struct msi_desc *entry;
688 int i;
689
690 for (i = 0; i < nvec; i++) {
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800691 entry = alloc_msi_entry(&dev->dev);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900692 if (!entry) {
693 if (!i)
694 iounmap(base);
695 else
696 free_msi_irqs(dev);
697 /* No enough memory. Don't try again */
698 return -ENOMEM;
699 }
700
701 entry->msi_attrib.is_msix = 1;
702 entry->msi_attrib.is_64 = 1;
703 entry->msi_attrib.entry_nr = entries[i].entry;
704 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900705 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800706 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900707
Jiang Liu5004e982015-07-09 16:00:41 +0800708 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900709 }
710
711 return 0;
712}
713
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900714static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000715 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900716{
717 struct msi_desc *entry;
718 int i = 0;
719
Jiang Liu5004e982015-07-09 16:00:41 +0800720 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900721 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
722 PCI_MSIX_ENTRY_VECTOR_CTRL;
723
724 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900725 entry->masked = readl(entry->mask_base + offset);
726 msix_mask_irq(entry, 1);
727 i++;
728 }
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731/**
732 * msix_capability_init - configure device's MSI-X capability
733 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700734 * @entries: pointer to an array of struct msix_entry entries
735 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600737 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700738 * single MSI-X irq. A return of zero indicates the successful setup of
739 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 **/
741static int msix_capability_init(struct pci_dev *dev,
742 struct msix_entry *entries, int nvec)
743{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000744 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900745 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 void __iomem *base;
747
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700748 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500749 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700750
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800751 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600753 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900754 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return -ENOMEM;
756
Gavin Shan520fe9d2013-04-04 16:54:33 +0000757 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900758 if (ret)
759 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000760
Jiang Liu8e047ad2014-11-15 22:24:07 +0800761 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900762 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100763 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000764
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000765 /* Check if all MSI entries honor device restrictions */
766 ret = msi_verify_entries(dev);
767 if (ret)
768 goto out_free;
769
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700770 /*
771 * Some devices require MSI-X to be enabled before we can touch the
772 * MSI-X registers. We need to mask all the vectors to prevent
773 * interrupts coming in before they're fully set up.
774 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500775 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800776 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700777
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900778 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700779
Neil Hormanda8d1c82011-10-06 14:08:18 -0400780 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100781 if (ret)
782 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400783
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700784 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700785 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800786 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500788 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900791
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100792out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900793 if (ret < 0) {
794 /*
795 * If we had some success, report the number of irqs
796 * we succeeded in setting up.
797 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900798 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900799 int avail = 0;
800
Jiang Liu5004e982015-07-09 16:00:41 +0800801 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900802 if (entry->irq != 0)
803 avail++;
804 }
805 if (avail != 0)
806 ret = avail;
807 }
808
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100809out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900810 free_msi_irqs(dev);
811
812 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
815/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600816 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400817 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000818 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400819 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700820 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000821 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600822 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400823 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600824static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400825{
826 struct pci_bus *bus;
827
Brice Goglin0306ebf2006-10-05 10:24:31 +0200828 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600829 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600830 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600831
832 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600833 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400834
Michael Ellerman314e77b2007-04-05 17:19:12 +1000835 /*
836 * You can't ask to have 0 or less MSIs configured.
837 * a) it's stupid ..
838 * b) the list manipulation code assumes nvec >= 1.
839 */
840 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600841 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000842
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900843 /*
844 * Any bridge which does NOT route MSI transactions from its
845 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200846 * the secondary pci_bus.
847 * We expect only arch-specific PCI host bus controller driver
848 * or quirks for specific PCI bridges to be setting NO_MSI.
849 */
Brice Goglin24334a12006-08-31 01:55:07 -0400850 for (bus = dev->bus; bus; bus = bus->parent)
851 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600852 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400853
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600854 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400855}
856
857/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100858 * pci_msi_vec_count - Return the number of MSI vectors a device can send
859 * @dev: device to report about
860 *
861 * This function returns the number of MSI vectors a device requested via
862 * Multiple Message Capable register. It returns a negative errno if the
863 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
864 * and returns a power of two, up to a maximum of 2^5 (32), according to the
865 * MSI specification.
866 **/
867int pci_msi_vec_count(struct pci_dev *dev)
868{
869 int ret;
870 u16 msgctl;
871
872 if (!dev->msi_cap)
873 return -EINVAL;
874
875 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
876 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
877
878 return ret;
879}
880EXPORT_SYMBOL(pci_msi_vec_count);
881
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400882void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400884 struct msi_desc *desc;
885 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100887 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700888 return;
889
Jiang Liu5004e982015-07-09 16:00:41 +0800890 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Jiang Liu4a7cc832015-07-09 16:00:44 +0800891 desc = first_pci_msi_entry(dev);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600892
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500893 pci_msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700894 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800895 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700896
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900897 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800898 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900899 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100900 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100901
902 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400903 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700904}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400905
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900906void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700907{
Yinghai Lud52877c2008-04-23 14:58:09 -0700908 if (!pci_msi_enable || !dev || !dev->msi_enabled)
909 return;
910
911 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900912 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100914EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100917 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100918 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100919 * This function returns the number of device's MSI-X table entries and
920 * therefore the number of MSI-X vectors device is capable of sending.
921 * It returns a negative errno if the device is not capable of sending MSI-X
922 * interrupts.
923 **/
924int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100925{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100926 u16 control;
927
Gavin Shan520fe9d2013-04-04 16:54:33 +0000928 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100929 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100930
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600931 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600932 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100933}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100934EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100935
936/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * pci_enable_msix - configure device's MSI-X capability structure
938 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700939 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700940 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
942 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700943 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * MSI-X mode enabled on its hardware device function. A return of zero
945 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700946 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300948 * of irqs or MSI-X vectors available. Driver should use the returned value to
949 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900951int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600953 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700954 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600956 if (!pci_msi_supported(dev, nvec))
957 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000958
Alexander Gordeev27e20602014-09-23 14:25:11 -0600959 if (!entries)
960 return -EINVAL;
961
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100962 nr_entries = pci_msix_vec_count(dev);
963 if (nr_entries < 0)
964 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300966 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 /* Check for any invalid entries */
969 for (i = 0; i < nvec; i++) {
970 if (entries[i].entry >= nr_entries)
971 return -EINVAL; /* invalid entry */
972 for (j = i + 1; j < nvec; j++) {
973 if (entries[i].entry == entries[j].entry)
974 return -EINVAL; /* duplicate entry */
975 }
976 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700977 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700978
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700979 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900980 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400981 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return -EINVAL;
983 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600984 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100986EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900988void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100989{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900990 struct msi_desc *entry;
991
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100992 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700993 return;
994
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900995 /* Return the device with MSI-X masked as initial states */
Jiang Liu5004e982015-07-09 16:00:41 +0800996 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900997 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100998 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900999 }
1000
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -05001001 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -07001002 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001003 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001004}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001005
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001006void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001007{
1008 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1009 return;
1010
1011 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001012 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001014EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001016void pci_no_msi(void)
1017{
1018 pci_msi_enable = 0;
1019}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001020
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001021/**
1022 * pci_msi_enabled - is MSI enabled?
1023 *
1024 * Returns true if MSI has not been disabled by the command-line option
1025 * pci=nomsi.
1026 **/
1027int pci_msi_enabled(void)
1028{
1029 return pci_msi_enable;
1030}
1031EXPORT_SYMBOL(pci_msi_enabled);
1032
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001033void pci_msi_init_pci_dev(struct pci_dev *dev)
1034{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001035}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001036
1037/**
1038 * pci_enable_msi_range - configure device's MSI capability structure
1039 * @dev: device to configure
1040 * @minvec: minimal number of interrupts to configure
1041 * @maxvec: maximum number of interrupts to configure
1042 *
1043 * This function tries to allocate a maximum possible number of interrupts in a
1044 * range between @minvec and @maxvec. It returns a negative errno if an error
1045 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1046 * and updates the @dev's irq member to the lowest new interrupt number;
1047 * the other interrupt numbers allocated to this device are consecutive.
1048 **/
1049int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1050{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001051 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001052 int rc;
1053
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001054 if (!pci_msi_supported(dev, minvec))
1055 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001056
1057 WARN_ON(!!dev->msi_enabled);
1058
1059 /* Check whether driver already requested MSI-X irqs */
1060 if (dev->msix_enabled) {
1061 dev_info(&dev->dev,
1062 "can't enable MSI (MSI-X already enabled)\n");
1063 return -EINVAL;
1064 }
1065
Alexander Gordeev302a2522013-12-30 08:28:16 +01001066 if (maxvec < minvec)
1067 return -ERANGE;
1068
Alexander Gordeev034cd972014-04-14 15:28:35 +02001069 nvec = pci_msi_vec_count(dev);
1070 if (nvec < 0)
1071 return nvec;
1072 else if (nvec < minvec)
1073 return -EINVAL;
1074 else if (nvec > maxvec)
1075 nvec = maxvec;
1076
Alexander Gordeev302a2522013-12-30 08:28:16 +01001077 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001078 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001079 if (rc < 0) {
1080 return rc;
1081 } else if (rc > 0) {
1082 if (rc < minvec)
1083 return -ENOSPC;
1084 nvec = rc;
1085 }
1086 } while (rc);
1087
1088 return nvec;
1089}
1090EXPORT_SYMBOL(pci_enable_msi_range);
1091
1092/**
1093 * pci_enable_msix_range - configure device's MSI-X capability structure
1094 * @dev: pointer to the pci_dev data structure of MSI-X device function
1095 * @entries: pointer to an array of MSI-X entries
1096 * @minvec: minimum number of MSI-X irqs requested
1097 * @maxvec: maximum number of MSI-X irqs requested
1098 *
1099 * Setup the MSI-X capability structure of device function with a maximum
1100 * possible number of interrupts in the range between @minvec and @maxvec
1101 * upon its software driver call to request for MSI-X mode enabled on its
1102 * hardware device function. It returns a negative errno if an error occurs.
1103 * If it succeeds, it returns the actual number of interrupts allocated and
1104 * indicates the successful configuration of MSI-X capability structure
1105 * with new allocated MSI-X interrupts.
1106 **/
1107int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1108 int minvec, int maxvec)
1109{
1110 int nvec = maxvec;
1111 int rc;
1112
1113 if (maxvec < minvec)
1114 return -ERANGE;
1115
1116 do {
1117 rc = pci_enable_msix(dev, entries, nvec);
1118 if (rc < 0) {
1119 return rc;
1120 } else if (rc > 0) {
1121 if (rc < minvec)
1122 return -ENOSPC;
1123 nvec = rc;
1124 }
1125 } while (rc);
1126
1127 return nvec;
1128}
1129EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001130
Jiang Liu25a98bd2015-07-09 16:00:45 +08001131struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1132{
1133 return to_pci_dev(desc->dev);
1134}
1135
Jiang Liuc179c9b2015-07-09 16:00:36 +08001136void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1137{
1138 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1139
1140 return dev->bus->sysdata;
1141}
1142EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1143
Jiang Liu3878eae2014-11-11 21:02:18 +08001144#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1145/**
1146 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1147 * @irq_data: Pointer to interrupt data of the MSI interrupt
1148 * @msg: Pointer to the message
1149 */
1150void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1151{
Jiang Liu507a8832015-06-01 16:05:42 +08001152 struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
Jiang Liu3878eae2014-11-11 21:02:18 +08001153
1154 /*
1155 * For MSI-X desc->irq is always equal to irq_data->irq. For
1156 * MSI only the first interrupt of MULTI MSI passes the test.
1157 */
1158 if (desc->irq == irq_data->irq)
1159 __pci_write_msi_msg(desc, msg);
1160}
1161
1162/**
1163 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1164 * @dev: Pointer to the PCI device
1165 * @desc: Pointer to the msi descriptor
1166 *
1167 * The ID number is only used within the irqdomain.
1168 */
1169irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1170 struct msi_desc *desc)
1171{
1172 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1173 PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
1174 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1175}
1176
1177static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1178{
1179 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1180}
1181
1182/**
1183 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1184 * @domain: The interrupt domain to check
1185 * @info: The domain info for verification
1186 * @dev: The device to check
1187 *
1188 * Returns:
1189 * 0 if the functionality is supported
1190 * 1 if Multi MSI is requested, but the domain does not support it
1191 * -ENOTSUPP otherwise
1192 */
1193int pci_msi_domain_check_cap(struct irq_domain *domain,
1194 struct msi_domain_info *info, struct device *dev)
1195{
1196 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1197
1198 /* Special handling to support pci_enable_msi_range() */
1199 if (pci_msi_desc_is_multi_msi(desc) &&
1200 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1201 return 1;
1202 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1203 return -ENOTSUPP;
1204
1205 return 0;
1206}
1207
1208static int pci_msi_domain_handle_error(struct irq_domain *domain,
1209 struct msi_desc *desc, int error)
1210{
1211 /* Special handling to support pci_enable_msi_range() */
1212 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1213 return 1;
1214
1215 return error;
1216}
1217
1218#ifdef GENERIC_MSI_DOMAIN_OPS
1219static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1220 struct msi_desc *desc)
1221{
1222 arg->desc = desc;
1223 arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1224 desc);
1225}
1226#else
1227#define pci_msi_domain_set_desc NULL
1228#endif
1229
1230static struct msi_domain_ops pci_msi_domain_ops_default = {
1231 .set_desc = pci_msi_domain_set_desc,
1232 .msi_check = pci_msi_domain_check_cap,
1233 .handle_error = pci_msi_domain_handle_error,
1234};
1235
1236static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1237{
1238 struct msi_domain_ops *ops = info->ops;
1239
1240 if (ops == NULL) {
1241 info->ops = &pci_msi_domain_ops_default;
1242 } else {
1243 if (ops->set_desc == NULL)
1244 ops->set_desc = pci_msi_domain_set_desc;
1245 if (ops->msi_check == NULL)
1246 ops->msi_check = pci_msi_domain_check_cap;
1247 if (ops->handle_error == NULL)
1248 ops->handle_error = pci_msi_domain_handle_error;
1249 }
1250}
1251
1252static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1253{
1254 struct irq_chip *chip = info->chip;
1255
1256 BUG_ON(!chip);
1257 if (!chip->irq_write_msi_msg)
1258 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1259}
1260
1261/**
1262 * pci_msi_create_irq_domain - Creat a MSI interrupt domain
1263 * @node: Optional device-tree node of the interrupt controller
1264 * @info: MSI domain info
1265 * @parent: Parent irq domain
1266 *
1267 * Updates the domain and chip ops and creates a MSI interrupt domain.
1268 *
1269 * Returns:
1270 * A domain pointer or NULL in case of failure.
1271 */
1272struct irq_domain *pci_msi_create_irq_domain(struct device_node *node,
1273 struct msi_domain_info *info,
1274 struct irq_domain *parent)
1275{
Marc Zyngier03808392015-07-28 14:46:09 +01001276 struct irq_domain *domain;
1277
Jiang Liu3878eae2014-11-11 21:02:18 +08001278 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1279 pci_msi_domain_update_dom_ops(info);
1280 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1281 pci_msi_domain_update_chip_ops(info);
1282
Marc Zyngier03808392015-07-28 14:46:09 +01001283 domain = msi_create_irq_domain(node, info, parent);
1284 if (!domain)
1285 return NULL;
1286
1287 domain->bus_token = DOMAIN_BUS_PCI_MSI;
1288 return domain;
Jiang Liu3878eae2014-11-11 21:02:18 +08001289}
1290
1291/**
1292 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1293 * @domain: The interrupt domain to allocate from
1294 * @dev: The device for which to allocate
1295 * @nvec: The number of interrupts to allocate
1296 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1297 *
1298 * Returns:
1299 * A virtual interrupt number or an error code in case of failure
1300 */
1301int pci_msi_domain_alloc_irqs(struct irq_domain *domain, struct pci_dev *dev,
1302 int nvec, int type)
1303{
1304 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
1305}
1306
1307/**
1308 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1309 * @domain: The interrupt domain
1310 * @dev: The device for which to free interrupts
1311 */
1312void pci_msi_domain_free_irqs(struct irq_domain *domain, struct pci_dev *dev)
1313{
1314 msi_domain_free_irqs(domain, &dev->dev);
1315}
Jiang Liu8e047ad2014-11-15 22:24:07 +08001316
1317/**
1318 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
1319 * @node: Optional device-tree node of the interrupt controller
1320 * @info: MSI domain info
1321 * @parent: Parent irq domain
1322 *
1323 * Returns: A domain pointer or NULL in case of failure. If successful
1324 * the default PCI/MSI irqdomain pointer is updated.
1325 */
1326struct irq_domain *pci_msi_create_default_irq_domain(struct device_node *node,
1327 struct msi_domain_info *info, struct irq_domain *parent)
1328{
1329 struct irq_domain *domain;
1330
1331 mutex_lock(&pci_msi_domain_lock);
1332 if (pci_msi_default_domain) {
1333 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1334 domain = NULL;
1335 } else {
1336 domain = pci_msi_create_irq_domain(node, info, parent);
1337 pci_msi_default_domain = domain;
1338 }
1339 mutex_unlock(&pci_msi_domain_lock);
1340
1341 return domain;
1342}
Jiang Liu3878eae2014-11-11 21:02:18 +08001343#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */