blob: f66be868ad2122efdb40e742f8ecb9fc43cbc508 [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
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100134 list_for_each_entry(entry, &dev->msi_list, list) {
135 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 Liu63a7b172014-11-06 22:20:32 +0800154 list_for_each_entry(entry, &dev->msi_list, list)
155 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) {
171 list_for_each_entry(entry, &dev->msi_list, list) {
172 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;
211 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900212
213 return mask_bits;
214}
215
216static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
217{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100218 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400219}
220
221/*
222 * This internal function does not flush PCI writes to the device.
223 * All users must ensure that they read from the device before either
224 * assuming that the device state is up to date, or returning out of this
225 * file. This saves a few milliseconds when initialising devices with lots
226 * of MSI-X interrupts.
227 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100228u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400229{
230 u32 mask_bits = desc->masked;
231 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900232 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800233
234 if (pci_msi_ignore_mask)
235 return 0;
236
Sheng Yang8d805282010-11-11 15:46:55 +0800237 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
238 if (flag)
239 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400240 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900241
242 return mask_bits;
243}
244
245static void msix_mask_irq(struct msi_desc *desc, u32 flag)
246{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100247 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400248}
249
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200250static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400251{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200252 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400253
254 if (desc->msi_attrib.is_msix) {
255 msix_mask_irq(desc, flag);
256 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400257 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800258 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400259 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400261}
262
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100263/**
264 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
265 * @data: pointer to irqdata associated to that interrupt
266 */
267void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400268{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200269 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400270}
271
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100272/**
273 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
274 * @data: pointer to irqdata associated to that interrupt
275 */
276void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400277{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200278 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800281void default_restore_msi_irqs(struct pci_dev *dev)
282{
283 struct msi_desc *entry;
284
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800285 list_for_each_entry(entry, &dev->msi_list, list)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800286 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800287}
288
Jiang Liu891d4a42014-11-09 23:10:33 +0800289void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700290{
Ben Hutchings30da5522010-07-23 14:56:28 +0100291 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700292
Ben Hutchings30da5522010-07-23 14:56:28 +0100293 if (entry->msi_attrib.is_msix) {
294 void __iomem *base = entry->mask_base +
295 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
296
297 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
298 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
299 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
300 } else {
301 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600302 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100303 u16 data;
304
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600305 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
306 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100307 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600308 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
309 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600310 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100311 } else {
312 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600313 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100314 }
315 msg->data = data;
316 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700317}
318
Jiang Liu83a18912014-11-09 23:10:34 +0800319void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800320{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100321 if (entry->dev->current_state != PCI_D0) {
322 /* Don't touch the hardware now */
323 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400324 void __iomem *base;
325 base = entry->mask_base +
326 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
327
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900328 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
329 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
330 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400331 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700332 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600333 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400334 u16 msgctl;
335
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600336 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400337 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
338 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600339 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700340
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600341 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
342 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700343 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600344 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
345 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600346 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
347 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700348 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600349 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
350 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700351 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700352 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700353 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700354}
355
Jiang Liu83a18912014-11-09 23:10:34 +0800356void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800357{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200358 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800359
Jiang Liu83a18912014-11-09 23:10:34 +0800360 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800361}
Jiang Liu83a18912014-11-09 23:10:34 +0800362EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800363
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900364static void free_msi_irqs(struct pci_dev *dev)
365{
366 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800367 struct attribute **msi_attrs;
368 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800369 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900370
Jiang Liu63a7b172014-11-06 22:20:32 +0800371 list_for_each_entry(entry, &dev->msi_list, list)
372 if (entry->irq)
373 for (i = 0; i < entry->nvec_used; i++)
374 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900375
Jiang Liu8e047ad2014-11-15 22:24:07 +0800376 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900377
378 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
379 if (entry->msi_attrib.is_msix) {
380 if (list_is_last(&entry->list, &dev->msi_list))
381 iounmap(entry->mask_base);
382 }
Neil Horman424eb392012-01-03 10:29:54 -0500383
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900384 list_del(&entry->list);
385 kfree(entry);
386 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800387
388 if (dev->msi_irq_groups) {
389 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
390 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700391 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800392 dev_attr = container_of(msi_attrs[count],
393 struct device_attribute, attr);
394 kfree(dev_attr->attr.name);
395 kfree(dev_attr);
396 ++count;
397 }
398 kfree(msi_attrs);
399 kfree(dev->msi_irq_groups[0]);
400 kfree(dev->msi_irq_groups);
401 dev->msi_irq_groups = NULL;
402 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900403}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900404
Matthew Wilcox379f5322009-03-17 08:54:07 -0400405static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400407 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
408 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return NULL;
410
Matthew Wilcox379f5322009-03-17 08:54:07 -0400411 INIT_LIST_HEAD(&desc->list);
412 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Matthew Wilcox379f5322009-03-17 08:54:07 -0400414 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
David Millerba698ad2007-10-25 01:16:30 -0700417static void pci_intx_for_msi(struct pci_dev *dev, int enable)
418{
419 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
420 pci_intx(dev, enable);
421}
422
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100423static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800424{
Shaohua Li41017f02006-02-08 17:11:38 +0800425 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700426 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800427
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800428 if (!dev->msi_enabled)
429 return;
430
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200431 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800432
David Millerba698ad2007-10-25 01:16:30 -0700433 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500434 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800435 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700436
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600437 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800438 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
439 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700440 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400441 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600442 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100443}
444
445static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800446{
Shaohua Li41017f02006-02-08 17:11:38 +0800447 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800448
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700449 if (!dev->msix_enabled)
450 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700451 BUG_ON(list_empty(&dev->msi_list));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700452
Shaohua Li41017f02006-02-08 17:11:38 +0800453 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700454 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500455 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800456 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800457
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800458 arch_restore_msi_irqs(dev);
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800459 list_for_each_entry(entry, &dev->msi_list, list)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400460 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800461
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500462 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800463}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100464
465void pci_restore_msi_state(struct pci_dev *dev)
466{
467 __pci_restore_msi_state(dev);
468 __pci_restore_msix_state(dev);
469}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600470EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800471
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800472static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400473 char *buf)
474{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800475 struct msi_desc *entry;
476 unsigned long irq;
477 int retval;
478
479 retval = kstrtoul(attr->attr.name, 10, &irq);
480 if (retval)
481 return retval;
482
Yijing Wange11ece52014-07-08 10:09:19 +0800483 entry = irq_get_msi_desc(irq);
484 if (entry)
485 return sprintf(buf, "%s\n",
486 entry->msi_attrib.is_msix ? "msix" : "msi");
487
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800488 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400489}
490
Neil Hormanda8d1c82011-10-06 14:08:18 -0400491static int populate_msi_sysfs(struct pci_dev *pdev)
492{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800493 struct attribute **msi_attrs;
494 struct attribute *msi_attr;
495 struct device_attribute *msi_dev_attr;
496 struct attribute_group *msi_irq_group;
497 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400498 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800499 int ret = -ENOMEM;
500 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400501 int count = 0;
502
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800503 /* Determine how many msi entries we have */
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800504 list_for_each_entry(entry, &pdev->msi_list, list)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800505 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800506 if (!num_msi)
507 return 0;
508
509 /* Dynamically create the MSI attributes for the PCI device */
510 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
511 if (!msi_attrs)
512 return -ENOMEM;
513 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700514 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600515 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700516 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600517 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700518
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800519 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600520 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
521 entry->irq);
522 if (!msi_dev_attr->attr.name)
523 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800524 msi_dev_attr->attr.mode = S_IRUGO;
525 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800526 ++count;
527 }
528
529 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
530 if (!msi_irq_group)
531 goto error_attrs;
532 msi_irq_group->name = "msi_irqs";
533 msi_irq_group->attrs = msi_attrs;
534
535 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
536 if (!msi_irq_groups)
537 goto error_irq_group;
538 msi_irq_groups[0] = msi_irq_group;
539
540 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
541 if (ret)
542 goto error_irq_groups;
543 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400544
545 return 0;
546
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800547error_irq_groups:
548 kfree(msi_irq_groups);
549error_irq_group:
550 kfree(msi_irq_group);
551error_attrs:
552 count = 0;
553 msi_attr = msi_attrs[count];
554 while (msi_attr) {
555 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
556 kfree(msi_attr->name);
557 kfree(msi_dev_attr);
558 ++count;
559 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400560 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700561 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400562 return ret;
563}
564
Jiang Liu63a7b172014-11-06 22:20:32 +0800565static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800566{
567 u16 control;
568 struct msi_desc *entry;
569
570 /* MSI Entry Initialization */
571 entry = alloc_msi_entry(dev);
572 if (!entry)
573 return NULL;
574
575 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
576
577 entry->msi_attrib.is_msix = 0;
578 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
579 entry->msi_attrib.entry_nr = 0;
580 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
581 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800582 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800583 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
584 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800585
586 if (control & PCI_MSI_FLAGS_64BIT)
587 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
588 else
589 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
590
591 /* Save the initial mask status */
592 if (entry->msi_attrib.maskbit)
593 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
594
595 return entry;
596}
597
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000598static int msi_verify_entries(struct pci_dev *dev)
599{
600 struct msi_desc *entry;
601
602 list_for_each_entry(entry, &dev->msi_list, list) {
603 if (!dev->no_64bit_msi || !entry->msg.address_hi)
604 continue;
605 dev_err(&dev->dev, "Device has broken 64-bit MSI but arch"
606 " tried to assign one above 4G\n");
607 return -EIO;
608 }
609 return 0;
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/**
613 * msi_capability_init - configure device's MSI capability structure
614 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400615 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400617 * Setup the MSI capability structure of the device with the requested
618 * number of interrupts. A return value of zero indicates the successful
619 * setup of an entry with the new MSI irq. A negative return value indicates
620 * an error, and a positive return value indicates the number of interrupts
621 * which could have been allocated.
622 */
623static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000626 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400627 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500629 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600630
Jiang Liu63a7b172014-11-06 22:20:32 +0800631 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700632 if (!entry)
633 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700634
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400635 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800636 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400637 msi_mask_irq(entry, mask, mask);
638
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700639 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800642 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000643 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900644 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900645 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000646 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500647 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700648
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000649 ret = msi_verify_entries(dev);
650 if (ret) {
651 msi_mask_irq(entry, mask, ~mask);
652 free_msi_irqs(dev);
653 return ret;
654 }
655
Neil Hormanda8d1c82011-10-06 14:08:18 -0400656 ret = populate_msi_sysfs(dev);
657 if (ret) {
658 msi_mask_irq(entry, mask, ~mask);
659 free_msi_irqs(dev);
660 return ret;
661 }
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700664 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500665 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800666 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Michael Ellerman7fe37302007-04-18 19:39:21 +1000668 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 0;
670}
671
Gavin Shan520fe9d2013-04-04 16:54:33 +0000672static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900673{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900674 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900675 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800676 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900677 u8 bir;
678
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600679 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
680 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600681 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800682 flags = pci_resource_flags(dev, bir);
683 if (!flags || (flags & IORESOURCE_UNSET))
684 return NULL;
685
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600686 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900687 phys_addr = pci_resource_start(dev, bir) + table_offset;
688
689 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
690}
691
Gavin Shan520fe9d2013-04-04 16:54:33 +0000692static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
693 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900694{
695 struct msi_desc *entry;
696 int i;
697
698 for (i = 0; i < nvec; i++) {
699 entry = alloc_msi_entry(dev);
700 if (!entry) {
701 if (!i)
702 iounmap(base);
703 else
704 free_msi_irqs(dev);
705 /* No enough memory. Don't try again */
706 return -ENOMEM;
707 }
708
709 entry->msi_attrib.is_msix = 1;
710 entry->msi_attrib.is_64 = 1;
711 entry->msi_attrib.entry_nr = entries[i].entry;
712 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900713 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800714 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900715
716 list_add_tail(&entry->list, &dev->msi_list);
717 }
718
719 return 0;
720}
721
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900722static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000723 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900724{
725 struct msi_desc *entry;
726 int i = 0;
727
728 list_for_each_entry(entry, &dev->msi_list, list) {
729 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
730 PCI_MSIX_ENTRY_VECTOR_CTRL;
731
732 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900733 entry->masked = readl(entry->mask_base + offset);
734 msix_mask_irq(entry, 1);
735 i++;
736 }
737}
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739/**
740 * msix_capability_init - configure device's MSI-X capability
741 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700742 * @entries: pointer to an array of struct msix_entry entries
743 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600745 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700746 * single MSI-X irq. A return of zero indicates the successful setup of
747 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 **/
749static int msix_capability_init(struct pci_dev *dev,
750 struct msix_entry *entries, int nvec)
751{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000752 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900753 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 void __iomem *base;
755
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700756 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500757 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700758
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800759 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600761 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900762 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return -ENOMEM;
764
Gavin Shan520fe9d2013-04-04 16:54:33 +0000765 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900766 if (ret)
767 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000768
Jiang Liu8e047ad2014-11-15 22:24:07 +0800769 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900770 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100771 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000772
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000773 /* Check if all MSI entries honor device restrictions */
774 ret = msi_verify_entries(dev);
775 if (ret)
776 goto out_free;
777
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700778 /*
779 * Some devices require MSI-X to be enabled before we can touch the
780 * MSI-X registers. We need to mask all the vectors to prevent
781 * interrupts coming in before they're fully set up.
782 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500783 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800784 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700785
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900786 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700787
Neil Hormanda8d1c82011-10-06 14:08:18 -0400788 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100789 if (ret)
790 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400791
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700792 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700793 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800794 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500796 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900799
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100800out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900801 if (ret < 0) {
802 /*
803 * If we had some success, report the number of irqs
804 * we succeeded in setting up.
805 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900806 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900807 int avail = 0;
808
809 list_for_each_entry(entry, &dev->msi_list, list) {
810 if (entry->irq != 0)
811 avail++;
812 }
813 if (avail != 0)
814 ret = avail;
815 }
816
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100817out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900818 free_msi_irqs(dev);
819
820 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600824 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400825 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000826 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400827 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700828 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000829 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600830 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400831 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600832static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400833{
834 struct pci_bus *bus;
835
Brice Goglin0306ebf2006-10-05 10:24:31 +0200836 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600837 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600838 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600839
840 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600841 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400842
Michael Ellerman314e77b2007-04-05 17:19:12 +1000843 /*
844 * You can't ask to have 0 or less MSIs configured.
845 * a) it's stupid ..
846 * b) the list manipulation code assumes nvec >= 1.
847 */
848 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600849 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000850
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900851 /*
852 * Any bridge which does NOT route MSI transactions from its
853 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200854 * the secondary pci_bus.
855 * We expect only arch-specific PCI host bus controller driver
856 * or quirks for specific PCI bridges to be setting NO_MSI.
857 */
Brice Goglin24334a12006-08-31 01:55:07 -0400858 for (bus = dev->bus; bus; bus = bus->parent)
859 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600860 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400861
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600862 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400863}
864
865/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100866 * pci_msi_vec_count - Return the number of MSI vectors a device can send
867 * @dev: device to report about
868 *
869 * This function returns the number of MSI vectors a device requested via
870 * Multiple Message Capable register. It returns a negative errno if the
871 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
872 * and returns a power of two, up to a maximum of 2^5 (32), according to the
873 * MSI specification.
874 **/
875int pci_msi_vec_count(struct pci_dev *dev)
876{
877 int ret;
878 u16 msgctl;
879
880 if (!dev->msi_cap)
881 return -EINVAL;
882
883 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
884 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
885
886 return ret;
887}
888EXPORT_SYMBOL(pci_msi_vec_count);
889
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400890void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400892 struct msi_desc *desc;
893 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100895 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700896 return;
897
Matthew Wilcox110828c2009-06-16 06:31:45 -0600898 BUG_ON(list_empty(&dev->msi_list));
899 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600900
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500901 pci_msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700902 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800903 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700904
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900905 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800906 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900907 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100908 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100909
910 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400911 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700912}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400913
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900914void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700915{
Yinghai Lud52877c2008-04-23 14:58:09 -0700916 if (!pci_msi_enable || !dev || !dev->msi_enabled)
917 return;
918
919 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900920 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100922EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100925 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100926 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100927 * This function returns the number of device's MSI-X table entries and
928 * therefore the number of MSI-X vectors device is capable of sending.
929 * It returns a negative errno if the device is not capable of sending MSI-X
930 * interrupts.
931 **/
932int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100933{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100934 u16 control;
935
Gavin Shan520fe9d2013-04-04 16:54:33 +0000936 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100937 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100938
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600939 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600940 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100941}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100942EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100943
944/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 * pci_enable_msix - configure device's MSI-X capability structure
946 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700947 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700948 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 *
950 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700951 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * MSI-X mode enabled on its hardware device function. A return of zero
953 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700954 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300956 * of irqs or MSI-X vectors available. Driver should use the returned value to
957 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900959int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600961 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700962 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600964 if (!pci_msi_supported(dev, nvec))
965 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000966
Alexander Gordeev27e20602014-09-23 14:25:11 -0600967 if (!entries)
968 return -EINVAL;
969
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100970 nr_entries = pci_msix_vec_count(dev);
971 if (nr_entries < 0)
972 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300974 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 /* Check for any invalid entries */
977 for (i = 0; i < nvec; i++) {
978 if (entries[i].entry >= nr_entries)
979 return -EINVAL; /* invalid entry */
980 for (j = i + 1; j < nvec; j++) {
981 if (entries[i].entry == entries[j].entry)
982 return -EINVAL; /* duplicate entry */
983 }
984 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700985 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700986
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700987 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900988 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400989 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return -EINVAL;
991 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600992 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100994EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900996void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100997{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900998 struct msi_desc *entry;
999
Michael Ellerman128bc5f2007-03-22 21:51:39 +11001000 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -07001001 return;
1002
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001003 /* Return the device with MSI-X masked as initial states */
1004 list_for_each_entry(entry, &dev->msi_list, list) {
1005 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +01001006 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001007 }
1008
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -05001009 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -07001010 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001011 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001012}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001013
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001014void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001015{
1016 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1017 return;
1018
1019 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001020 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001022EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001024void pci_no_msi(void)
1025{
1026 pci_msi_enable = 0;
1027}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001028
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001029/**
1030 * pci_msi_enabled - is MSI enabled?
1031 *
1032 * Returns true if MSI has not been disabled by the command-line option
1033 * pci=nomsi.
1034 **/
1035int pci_msi_enabled(void)
1036{
1037 return pci_msi_enable;
1038}
1039EXPORT_SYMBOL(pci_msi_enabled);
1040
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001041void pci_msi_init_pci_dev(struct pci_dev *dev)
1042{
1043 INIT_LIST_HEAD(&dev->msi_list);
1044}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001045
1046/**
1047 * pci_enable_msi_range - configure device's MSI capability structure
1048 * @dev: device to configure
1049 * @minvec: minimal number of interrupts to configure
1050 * @maxvec: maximum number of interrupts to configure
1051 *
1052 * This function tries to allocate a maximum possible number of interrupts in a
1053 * range between @minvec and @maxvec. It returns a negative errno if an error
1054 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1055 * and updates the @dev's irq member to the lowest new interrupt number;
1056 * the other interrupt numbers allocated to this device are consecutive.
1057 **/
1058int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1059{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001060 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001061 int rc;
1062
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001063 if (!pci_msi_supported(dev, minvec))
1064 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001065
1066 WARN_ON(!!dev->msi_enabled);
1067
1068 /* Check whether driver already requested MSI-X irqs */
1069 if (dev->msix_enabled) {
1070 dev_info(&dev->dev,
1071 "can't enable MSI (MSI-X already enabled)\n");
1072 return -EINVAL;
1073 }
1074
Alexander Gordeev302a2522013-12-30 08:28:16 +01001075 if (maxvec < minvec)
1076 return -ERANGE;
1077
Alexander Gordeev034cd972014-04-14 15:28:35 +02001078 nvec = pci_msi_vec_count(dev);
1079 if (nvec < 0)
1080 return nvec;
1081 else if (nvec < minvec)
1082 return -EINVAL;
1083 else if (nvec > maxvec)
1084 nvec = maxvec;
1085
Alexander Gordeev302a2522013-12-30 08:28:16 +01001086 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001087 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001088 if (rc < 0) {
1089 return rc;
1090 } else if (rc > 0) {
1091 if (rc < minvec)
1092 return -ENOSPC;
1093 nvec = rc;
1094 }
1095 } while (rc);
1096
1097 return nvec;
1098}
1099EXPORT_SYMBOL(pci_enable_msi_range);
1100
1101/**
1102 * pci_enable_msix_range - configure device's MSI-X capability structure
1103 * @dev: pointer to the pci_dev data structure of MSI-X device function
1104 * @entries: pointer to an array of MSI-X entries
1105 * @minvec: minimum number of MSI-X irqs requested
1106 * @maxvec: maximum number of MSI-X irqs requested
1107 *
1108 * Setup the MSI-X capability structure of device function with a maximum
1109 * possible number of interrupts in the range between @minvec and @maxvec
1110 * upon its software driver call to request for MSI-X mode enabled on its
1111 * hardware device function. It returns a negative errno if an error occurs.
1112 * If it succeeds, it returns the actual number of interrupts allocated and
1113 * indicates the successful configuration of MSI-X capability structure
1114 * with new allocated MSI-X interrupts.
1115 **/
1116int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1117 int minvec, int maxvec)
1118{
1119 int nvec = maxvec;
1120 int rc;
1121
1122 if (maxvec < minvec)
1123 return -ERANGE;
1124
1125 do {
1126 rc = pci_enable_msix(dev, entries, nvec);
1127 if (rc < 0) {
1128 return rc;
1129 } else if (rc > 0) {
1130 if (rc < minvec)
1131 return -ENOSPC;
1132 nvec = rc;
1133 }
1134 } while (rc);
1135
1136 return nvec;
1137}
1138EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001139
1140#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1141/**
1142 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1143 * @irq_data: Pointer to interrupt data of the MSI interrupt
1144 * @msg: Pointer to the message
1145 */
1146void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1147{
1148 struct msi_desc *desc = irq_data->msi_desc;
1149
1150 /*
1151 * For MSI-X desc->irq is always equal to irq_data->irq. For
1152 * MSI only the first interrupt of MULTI MSI passes the test.
1153 */
1154 if (desc->irq == irq_data->irq)
1155 __pci_write_msi_msg(desc, msg);
1156}
1157
1158/**
1159 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1160 * @dev: Pointer to the PCI device
1161 * @desc: Pointer to the msi descriptor
1162 *
1163 * The ID number is only used within the irqdomain.
1164 */
1165irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1166 struct msi_desc *desc)
1167{
1168 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1169 PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
1170 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1171}
1172
1173static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1174{
1175 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1176}
1177
1178/**
1179 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1180 * @domain: The interrupt domain to check
1181 * @info: The domain info for verification
1182 * @dev: The device to check
1183 *
1184 * Returns:
1185 * 0 if the functionality is supported
1186 * 1 if Multi MSI is requested, but the domain does not support it
1187 * -ENOTSUPP otherwise
1188 */
1189int pci_msi_domain_check_cap(struct irq_domain *domain,
1190 struct msi_domain_info *info, struct device *dev)
1191{
1192 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1193
1194 /* Special handling to support pci_enable_msi_range() */
1195 if (pci_msi_desc_is_multi_msi(desc) &&
1196 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1197 return 1;
1198 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1199 return -ENOTSUPP;
1200
1201 return 0;
1202}
1203
1204static int pci_msi_domain_handle_error(struct irq_domain *domain,
1205 struct msi_desc *desc, int error)
1206{
1207 /* Special handling to support pci_enable_msi_range() */
1208 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1209 return 1;
1210
1211 return error;
1212}
1213
1214#ifdef GENERIC_MSI_DOMAIN_OPS
1215static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1216 struct msi_desc *desc)
1217{
1218 arg->desc = desc;
1219 arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1220 desc);
1221}
1222#else
1223#define pci_msi_domain_set_desc NULL
1224#endif
1225
1226static struct msi_domain_ops pci_msi_domain_ops_default = {
1227 .set_desc = pci_msi_domain_set_desc,
1228 .msi_check = pci_msi_domain_check_cap,
1229 .handle_error = pci_msi_domain_handle_error,
1230};
1231
1232static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1233{
1234 struct msi_domain_ops *ops = info->ops;
1235
1236 if (ops == NULL) {
1237 info->ops = &pci_msi_domain_ops_default;
1238 } else {
1239 if (ops->set_desc == NULL)
1240 ops->set_desc = pci_msi_domain_set_desc;
1241 if (ops->msi_check == NULL)
1242 ops->msi_check = pci_msi_domain_check_cap;
1243 if (ops->handle_error == NULL)
1244 ops->handle_error = pci_msi_domain_handle_error;
1245 }
1246}
1247
1248static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1249{
1250 struct irq_chip *chip = info->chip;
1251
1252 BUG_ON(!chip);
1253 if (!chip->irq_write_msi_msg)
1254 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1255}
1256
1257/**
1258 * pci_msi_create_irq_domain - Creat a MSI interrupt domain
1259 * @node: Optional device-tree node of the interrupt controller
1260 * @info: MSI domain info
1261 * @parent: Parent irq domain
1262 *
1263 * Updates the domain and chip ops and creates a MSI interrupt domain.
1264 *
1265 * Returns:
1266 * A domain pointer or NULL in case of failure.
1267 */
1268struct irq_domain *pci_msi_create_irq_domain(struct device_node *node,
1269 struct msi_domain_info *info,
1270 struct irq_domain *parent)
1271{
1272 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1273 pci_msi_domain_update_dom_ops(info);
1274 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1275 pci_msi_domain_update_chip_ops(info);
1276
1277 return msi_create_irq_domain(node, info, parent);
1278}
1279
1280/**
1281 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1282 * @domain: The interrupt domain to allocate from
1283 * @dev: The device for which to allocate
1284 * @nvec: The number of interrupts to allocate
1285 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1286 *
1287 * Returns:
1288 * A virtual interrupt number or an error code in case of failure
1289 */
1290int pci_msi_domain_alloc_irqs(struct irq_domain *domain, struct pci_dev *dev,
1291 int nvec, int type)
1292{
1293 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
1294}
1295
1296/**
1297 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1298 * @domain: The interrupt domain
1299 * @dev: The device for which to free interrupts
1300 */
1301void pci_msi_domain_free_irqs(struct irq_domain *domain, struct pci_dev *dev)
1302{
1303 msi_domain_free_irqs(domain, &dev->dev);
1304}
Jiang Liu8e047ad2014-11-15 22:24:07 +08001305
1306/**
1307 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
1308 * @node: Optional device-tree node of the interrupt controller
1309 * @info: MSI domain info
1310 * @parent: Parent irq domain
1311 *
1312 * Returns: A domain pointer or NULL in case of failure. If successful
1313 * the default PCI/MSI irqdomain pointer is updated.
1314 */
1315struct irq_domain *pci_msi_create_default_irq_domain(struct device_node *node,
1316 struct msi_domain_info *info, struct irq_domain *parent)
1317{
1318 struct irq_domain *domain;
1319
1320 mutex_lock(&pci_msi_domain_lock);
1321 if (pci_msi_default_domain) {
1322 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1323 domain = NULL;
1324 } else {
1325 domain = pci_msi_create_irq_domain(node, info, parent);
1326 pci_msi_default_domain = domain;
1327 }
1328 mutex_unlock(&pci_msi_domain_lock);
1329
1330 return domain;
1331}
Jiang Liu3878eae2014-11-11 21:02:18 +08001332#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */