blob: 4603344097944ead0f82528918d390c00d65e8da [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{
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010042 struct irq_domain *domain;
Marc Zyngier020c3122014-11-15 10:49:12 +000043
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010044 domain = dev_get_msi_domain(&dev->dev);
45 if (domain)
46 return domain;
Marc Zyngier020c3122014-11-15 10:49:12 +000047
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010048 if (dev->bus->msi && (domain = dev->bus->msi->domain))
49 return domain;
50
51 return arch_get_pci_msi_domain(dev);
Marc Zyngier020c3122014-11-15 10:49:12 +000052}
53
Jiang Liu8e047ad2014-11-15 22:24:07 +080054static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
55{
56 struct irq_domain *domain;
57
Marc Zyngier020c3122014-11-15 10:49:12 +000058 domain = pci_msi_get_domain(dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080059 if (domain)
60 return pci_msi_domain_alloc_irqs(domain, dev, nvec, type);
61
62 return arch_setup_msi_irqs(dev, nvec, type);
63}
64
65static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
66{
67 struct irq_domain *domain;
68
Marc Zyngier020c3122014-11-15 10:49:12 +000069 domain = pci_msi_get_domain(dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080070 if (domain)
71 pci_msi_domain_free_irqs(domain, dev);
72 else
73 arch_teardown_msi_irqs(dev);
74}
75#else
76#define pci_msi_setup_msi_irqs arch_setup_msi_irqs
77#define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
78#endif
Bjorn Helgaas527eee22013-04-17 17:44:48 -060079
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010080/* Arch hooks */
81
Yijing Wang262a2ba2014-11-11 15:22:45 -070082struct msi_controller * __weak pcibios_msi_controller(struct pci_dev *dev)
83{
84 return NULL;
85}
86
87static struct msi_controller *pci_msi_controller(struct pci_dev *dev)
88{
89 struct msi_controller *msi_ctrl = dev->bus->msi;
90
91 if (msi_ctrl)
92 return msi_ctrl;
93
94 return pcibios_msi_controller(dev);
95}
96
Thomas Petazzoni4287d822013-08-09 22:27:06 +020097int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
98{
Yijing Wang262a2ba2014-11-11 15:22:45 -070099 struct msi_controller *chip = pci_msi_controller(dev);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +0200100 int err;
101
102 if (!chip || !chip->setup_irq)
103 return -EINVAL;
104
105 err = chip->setup_irq(chip, dev, desc);
106 if (err < 0)
107 return err;
108
109 irq_set_chip_data(desc->irq, chip);
110
111 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200112}
113
114void __weak arch_teardown_msi_irq(unsigned int irq)
115{
Yijing Wangc2791b82014-11-11 17:45:45 -0700116 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +0200117
118 if (!chip || !chip->teardown_irq)
119 return;
120
121 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200122}
123
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200124int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100125{
126 struct msi_desc *entry;
127 int ret;
128
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400129 /*
130 * If an architecture wants to support multiple MSI, it needs to
131 * override arch_setup_msi_irqs()
132 */
133 if (type == PCI_CAP_ID_MSI && nvec > 1)
134 return 1;
135
Jiang Liu5004e982015-07-09 16:00:41 +0800136 for_each_pci_msi_entry(entry, dev) {
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100137 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100138 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100139 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100140 if (ret > 0)
141 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100142 }
143
144 return 0;
145}
146
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200147/*
148 * We have a default implementation available as a separate non-weak
149 * function, as it is used by the Xen x86 PCI code
150 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400151void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100152{
Jiang Liu63a7b172014-11-06 22:20:32 +0800153 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100154 struct msi_desc *entry;
155
Jiang Liu5004e982015-07-09 16:00:41 +0800156 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800157 if (entry->irq)
158 for (i = 0; i < entry->nvec_used; i++)
159 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100160}
161
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200162void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
163{
164 return default_teardown_msi_irqs(dev);
165}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500166
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800167static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500168{
169 struct msi_desc *entry;
170
171 entry = NULL;
172 if (dev->msix_enabled) {
Jiang Liu5004e982015-07-09 16:00:41 +0800173 for_each_pci_msi_entry(entry, dev) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500174 if (irq == entry->irq)
175 break;
176 }
177 } else if (dev->msi_enabled) {
178 entry = irq_get_msi_desc(irq);
179 }
180
181 if (entry)
Jiang Liu83a18912014-11-09 23:10:34 +0800182 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500183}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200184
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800185void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200186{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800187 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200188}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500189
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500190static inline __attribute_const__ u32 msi_mask(unsigned x)
191{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700192 /* Don't shift by >= width of type */
193 if (x >= 5)
194 return 0xffffffff;
195 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500196}
197
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600198/*
199 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
200 * mask all MSI interrupts by clearing the MSI enable bit does not work
201 * reliably as devices without an INTx disable bit will then generate a
202 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600203 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100204u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400206 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Yijing Wang38737d82014-10-27 10:44:36 +0800208 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900209 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400210
211 mask_bits &= ~mask;
212 mask_bits |= flag;
Jiang Liue39758e2015-07-09 16:00:43 +0800213 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
214 mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900215
216 return mask_bits;
217}
218
219static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
220{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100221 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400222}
223
224/*
225 * This internal function does not flush PCI writes to the device.
226 * All users must ensure that they read from the device before either
227 * assuming that the device state is up to date, or returning out of this
228 * file. This saves a few milliseconds when initialising devices with lots
229 * of MSI-X interrupts.
230 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100231u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400232{
233 u32 mask_bits = desc->masked;
234 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900235 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800236
237 if (pci_msi_ignore_mask)
238 return 0;
239
Sheng Yang8d805282010-11-11 15:46:55 +0800240 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
241 if (flag)
242 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400243 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900244
245 return mask_bits;
246}
247
248static void msix_mask_irq(struct msi_desc *desc, u32 flag)
249{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100250 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400251}
252
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200253static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400254{
Jiang Liuc391f262015-06-01 16:05:41 +0800255 struct msi_desc *desc = irq_data_get_msi_desc(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400256
257 if (desc->msi_attrib.is_msix) {
258 msix_mask_irq(desc, flag);
259 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400260 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800261 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400262 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400264}
265
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100266/**
267 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
268 * @data: pointer to irqdata associated to that interrupt
269 */
270void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400271{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200272 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400273}
274
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100275/**
276 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
277 * @data: pointer to irqdata associated to that interrupt
278 */
279void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400280{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200281 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800284void default_restore_msi_irqs(struct pci_dev *dev)
285{
286 struct msi_desc *entry;
287
Jiang Liu5004e982015-07-09 16:00:41 +0800288 for_each_pci_msi_entry(entry, dev)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800289 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800290}
291
Jiang Liu891d4a42014-11-09 23:10:33 +0800292void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700293{
Jiang Liue39758e2015-07-09 16:00:43 +0800294 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
295
296 BUG_ON(dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700297
Ben Hutchings30da5522010-07-23 14:56:28 +0100298 if (entry->msi_attrib.is_msix) {
299 void __iomem *base = entry->mask_base +
300 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
301
302 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
303 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
304 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
305 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600306 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100307 u16 data;
308
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600309 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
310 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100311 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600312 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
313 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600314 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100315 } else {
316 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600317 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100318 }
319 msg->data = data;
320 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700321}
322
Jiang Liu83a18912014-11-09 23:10:34 +0800323void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800324{
Jiang Liue39758e2015-07-09 16:00:43 +0800325 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
326
327 if (dev->current_state != PCI_D0) {
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100328 /* Don't touch the hardware now */
329 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400330 void __iomem *base;
331 base = entry->mask_base +
332 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
333
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900334 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
335 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
336 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400337 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600338 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400339 u16 msgctl;
340
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600341 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400342 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
343 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600344 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700345
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600346 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
347 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700348 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600349 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
350 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600351 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
352 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700353 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600354 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
355 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700356 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700357 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700358 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700359}
360
Jiang Liu83a18912014-11-09 23:10:34 +0800361void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800362{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200363 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800364
Jiang Liu83a18912014-11-09 23:10:34 +0800365 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800366}
Jiang Liu83a18912014-11-09 23:10:34 +0800367EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800368
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900369static void free_msi_irqs(struct pci_dev *dev)
370{
Jiang Liu5004e982015-07-09 16:00:41 +0800371 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900372 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800373 struct attribute **msi_attrs;
374 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800375 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900376
Jiang Liu5004e982015-07-09 16:00:41 +0800377 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800378 if (entry->irq)
379 for (i = 0; i < entry->nvec_used; i++)
380 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900381
Jiang Liu8e047ad2014-11-15 22:24:07 +0800382 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900383
Jiang Liu5004e982015-07-09 16:00:41 +0800384 list_for_each_entry_safe(entry, tmp, msi_list, list) {
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900385 if (entry->msi_attrib.is_msix) {
Jiang Liu5004e982015-07-09 16:00:41 +0800386 if (list_is_last(&entry->list, msi_list))
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900387 iounmap(entry->mask_base);
388 }
Neil Horman424eb392012-01-03 10:29:54 -0500389
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900390 list_del(&entry->list);
391 kfree(entry);
392 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800393
394 if (dev->msi_irq_groups) {
395 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
396 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700397 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800398 dev_attr = container_of(msi_attrs[count],
399 struct device_attribute, attr);
400 kfree(dev_attr->attr.name);
401 kfree(dev_attr);
402 ++count;
403 }
404 kfree(msi_attrs);
405 kfree(dev->msi_irq_groups[0]);
406 kfree(dev->msi_irq_groups);
407 dev->msi_irq_groups = NULL;
408 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900409}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900410
David Millerba698ad2007-10-25 01:16:30 -0700411static void pci_intx_for_msi(struct pci_dev *dev, int enable)
412{
413 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
414 pci_intx(dev, enable);
415}
416
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100417static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800418{
Shaohua Li41017f02006-02-08 17:11:38 +0800419 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700420 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800421
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800422 if (!dev->msi_enabled)
423 return;
424
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200425 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800426
David Millerba698ad2007-10-25 01:16:30 -0700427 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500428 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800429 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700430
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600431 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800432 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
433 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700434 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400435 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600436 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100437}
438
439static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800440{
Shaohua Li41017f02006-02-08 17:11:38 +0800441 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800442
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700443 if (!dev->msix_enabled)
444 return;
Jiang Liu5004e982015-07-09 16:00:41 +0800445 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700446
Shaohua Li41017f02006-02-08 17:11:38 +0800447 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700448 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500449 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800450 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800451
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800452 arch_restore_msi_irqs(dev);
Jiang Liu5004e982015-07-09 16:00:41 +0800453 for_each_pci_msi_entry(entry, dev)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400454 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800455
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500456 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800457}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100458
459void pci_restore_msi_state(struct pci_dev *dev)
460{
461 __pci_restore_msi_state(dev);
462 __pci_restore_msix_state(dev);
463}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600464EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800465
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800466static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400467 char *buf)
468{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800469 struct msi_desc *entry;
470 unsigned long irq;
471 int retval;
472
473 retval = kstrtoul(attr->attr.name, 10, &irq);
474 if (retval)
475 return retval;
476
Yijing Wange11ece52014-07-08 10:09:19 +0800477 entry = irq_get_msi_desc(irq);
478 if (entry)
479 return sprintf(buf, "%s\n",
480 entry->msi_attrib.is_msix ? "msix" : "msi");
481
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800482 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400483}
484
Neil Hormanda8d1c82011-10-06 14:08:18 -0400485static int populate_msi_sysfs(struct pci_dev *pdev)
486{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800487 struct attribute **msi_attrs;
488 struct attribute *msi_attr;
489 struct device_attribute *msi_dev_attr;
490 struct attribute_group *msi_irq_group;
491 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400492 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800493 int ret = -ENOMEM;
494 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400495 int count = 0;
496
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497 /* Determine how many msi entries we have */
Jiang Liu5004e982015-07-09 16:00:41 +0800498 for_each_pci_msi_entry(entry, pdev)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800499 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800500 if (!num_msi)
501 return 0;
502
503 /* Dynamically create the MSI attributes for the PCI device */
504 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
505 if (!msi_attrs)
506 return -ENOMEM;
Jiang Liu5004e982015-07-09 16:00:41 +0800507 for_each_pci_msi_entry(entry, pdev) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700508 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600509 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700510 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600511 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700512
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800513 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600514 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
515 entry->irq);
516 if (!msi_dev_attr->attr.name)
517 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800518 msi_dev_attr->attr.mode = S_IRUGO;
519 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800520 ++count;
521 }
522
523 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
524 if (!msi_irq_group)
525 goto error_attrs;
526 msi_irq_group->name = "msi_irqs";
527 msi_irq_group->attrs = msi_attrs;
528
529 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
530 if (!msi_irq_groups)
531 goto error_irq_group;
532 msi_irq_groups[0] = msi_irq_group;
533
534 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
535 if (ret)
536 goto error_irq_groups;
537 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400538
539 return 0;
540
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800541error_irq_groups:
542 kfree(msi_irq_groups);
543error_irq_group:
544 kfree(msi_irq_group);
545error_attrs:
546 count = 0;
547 msi_attr = msi_attrs[count];
548 while (msi_attr) {
549 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
550 kfree(msi_attr->name);
551 kfree(msi_dev_attr);
552 ++count;
553 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400554 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700555 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400556 return ret;
557}
558
Jiang Liu63a7b172014-11-06 22:20:32 +0800559static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800560{
561 u16 control;
562 struct msi_desc *entry;
563
564 /* MSI Entry Initialization */
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800565 entry = alloc_msi_entry(&dev->dev);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800566 if (!entry)
567 return NULL;
568
569 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
570
571 entry->msi_attrib.is_msix = 0;
572 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
573 entry->msi_attrib.entry_nr = 0;
574 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
575 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800576 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800577 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
578 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800579
580 if (control & PCI_MSI_FLAGS_64BIT)
581 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
582 else
583 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
584
585 /* Save the initial mask status */
586 if (entry->msi_attrib.maskbit)
587 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
588
589 return entry;
590}
591
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000592static int msi_verify_entries(struct pci_dev *dev)
593{
594 struct msi_desc *entry;
595
Jiang Liu5004e982015-07-09 16:00:41 +0800596 for_each_pci_msi_entry(entry, dev) {
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000597 if (!dev->no_64bit_msi || !entry->msg.address_hi)
598 continue;
599 dev_err(&dev->dev, "Device has broken 64-bit MSI but arch"
600 " tried to assign one above 4G\n");
601 return -EIO;
602 }
603 return 0;
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606/**
607 * msi_capability_init - configure device's MSI capability structure
608 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400609 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400611 * Setup the MSI capability structure of the device with the requested
612 * number of interrupts. A return value of zero indicates the successful
613 * setup of an entry with the new MSI irq. A negative return value indicates
614 * an error, and a positive return value indicates the number of interrupts
615 * which could have been allocated.
616 */
617static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000620 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400621 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500623 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600624
Jiang Liu63a7b172014-11-06 22:20:32 +0800625 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700626 if (!entry)
627 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700628
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400629 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800630 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400631 msi_mask_irq(entry, mask, mask);
632
Jiang Liu5004e982015-07-09 16:00:41 +0800633 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Michael Ellerman9c831332007-04-18 19:39:21 +1000634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800636 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000637 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900638 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900639 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000640 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500641 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700642
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000643 ret = msi_verify_entries(dev);
644 if (ret) {
645 msi_mask_irq(entry, mask, ~mask);
646 free_msi_irqs(dev);
647 return ret;
648 }
649
Neil Hormanda8d1c82011-10-06 14:08:18 -0400650 ret = populate_msi_sysfs(dev);
651 if (ret) {
652 msi_mask_irq(entry, mask, ~mask);
653 free_msi_irqs(dev);
654 return ret;
655 }
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700658 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500659 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800660 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Michael Ellerman7fe37302007-04-18 19:39:21 +1000662 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return 0;
664}
665
Gavin Shan520fe9d2013-04-04 16:54:33 +0000666static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900667{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900668 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900669 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800670 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900671 u8 bir;
672
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600673 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
674 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600675 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800676 flags = pci_resource_flags(dev, bir);
677 if (!flags || (flags & IORESOURCE_UNSET))
678 return NULL;
679
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600680 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900681 phys_addr = pci_resource_start(dev, bir) + table_offset;
682
683 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
684}
685
Gavin Shan520fe9d2013-04-04 16:54:33 +0000686static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
687 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900688{
689 struct msi_desc *entry;
690 int i;
691
692 for (i = 0; i < nvec; i++) {
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800693 entry = alloc_msi_entry(&dev->dev);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900694 if (!entry) {
695 if (!i)
696 iounmap(base);
697 else
698 free_msi_irqs(dev);
699 /* No enough memory. Don't try again */
700 return -ENOMEM;
701 }
702
703 entry->msi_attrib.is_msix = 1;
704 entry->msi_attrib.is_64 = 1;
705 entry->msi_attrib.entry_nr = entries[i].entry;
706 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900707 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800708 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900709
Jiang Liu5004e982015-07-09 16:00:41 +0800710 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900711 }
712
713 return 0;
714}
715
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900716static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000717 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900718{
719 struct msi_desc *entry;
720 int i = 0;
721
Jiang Liu5004e982015-07-09 16:00:41 +0800722 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900723 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
724 PCI_MSIX_ENTRY_VECTOR_CTRL;
725
726 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900727 entry->masked = readl(entry->mask_base + offset);
728 msix_mask_irq(entry, 1);
729 i++;
730 }
731}
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733/**
734 * msix_capability_init - configure device's MSI-X capability
735 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700736 * @entries: pointer to an array of struct msix_entry entries
737 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600739 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700740 * single MSI-X irq. A return of zero indicates the successful setup of
741 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 **/
743static int msix_capability_init(struct pci_dev *dev,
744 struct msix_entry *entries, int nvec)
745{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000746 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900747 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 void __iomem *base;
749
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700750 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500751 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700752
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800753 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600755 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900756 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return -ENOMEM;
758
Gavin Shan520fe9d2013-04-04 16:54:33 +0000759 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900760 if (ret)
761 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000762
Jiang Liu8e047ad2014-11-15 22:24:07 +0800763 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900764 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100765 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000766
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000767 /* Check if all MSI entries honor device restrictions */
768 ret = msi_verify_entries(dev);
769 if (ret)
770 goto out_free;
771
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700772 /*
773 * Some devices require MSI-X to be enabled before we can touch the
774 * MSI-X registers. We need to mask all the vectors to prevent
775 * interrupts coming in before they're fully set up.
776 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500777 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800778 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700779
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900780 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700781
Neil Hormanda8d1c82011-10-06 14:08:18 -0400782 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100783 if (ret)
784 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400785
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700786 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700787 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800788 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500790 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900793
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100794out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900795 if (ret < 0) {
796 /*
797 * If we had some success, report the number of irqs
798 * we succeeded in setting up.
799 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900800 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900801 int avail = 0;
802
Jiang Liu5004e982015-07-09 16:00:41 +0800803 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900804 if (entry->irq != 0)
805 avail++;
806 }
807 if (avail != 0)
808 ret = avail;
809 }
810
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100811out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900812 free_msi_irqs(dev);
813
814 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600818 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400819 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000820 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400821 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700822 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000823 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600824 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400825 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600826static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400827{
828 struct pci_bus *bus;
829
Brice Goglin0306ebf2006-10-05 10:24:31 +0200830 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600831 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600832 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600833
834 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600835 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400836
Michael Ellerman314e77b2007-04-05 17:19:12 +1000837 /*
838 * You can't ask to have 0 or less MSIs configured.
839 * a) it's stupid ..
840 * b) the list manipulation code assumes nvec >= 1.
841 */
842 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600843 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000844
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900845 /*
846 * Any bridge which does NOT route MSI transactions from its
847 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200848 * the secondary pci_bus.
849 * We expect only arch-specific PCI host bus controller driver
850 * or quirks for specific PCI bridges to be setting NO_MSI.
851 */
Brice Goglin24334a12006-08-31 01:55:07 -0400852 for (bus = dev->bus; bus; bus = bus->parent)
853 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600854 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400855
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600856 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400857}
858
859/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100860 * pci_msi_vec_count - Return the number of MSI vectors a device can send
861 * @dev: device to report about
862 *
863 * This function returns the number of MSI vectors a device requested via
864 * Multiple Message Capable register. It returns a negative errno if the
865 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
866 * and returns a power of two, up to a maximum of 2^5 (32), according to the
867 * MSI specification.
868 **/
869int pci_msi_vec_count(struct pci_dev *dev)
870{
871 int ret;
872 u16 msgctl;
873
874 if (!dev->msi_cap)
875 return -EINVAL;
876
877 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
878 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
879
880 return ret;
881}
882EXPORT_SYMBOL(pci_msi_vec_count);
883
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400884void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400886 struct msi_desc *desc;
887 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100889 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700890 return;
891
Jiang Liu5004e982015-07-09 16:00:41 +0800892 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Jiang Liu4a7cc832015-07-09 16:00:44 +0800893 desc = first_pci_msi_entry(dev);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600894
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500895 pci_msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700896 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800897 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700898
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900899 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800900 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900901 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100902 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100903
904 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400905 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700906}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400907
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900908void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700909{
Yinghai Lud52877c2008-04-23 14:58:09 -0700910 if (!pci_msi_enable || !dev || !dev->msi_enabled)
911 return;
912
913 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900914 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100916EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100919 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100920 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100921 * This function returns the number of device's MSI-X table entries and
922 * therefore the number of MSI-X vectors device is capable of sending.
923 * It returns a negative errno if the device is not capable of sending MSI-X
924 * interrupts.
925 **/
926int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100927{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100928 u16 control;
929
Gavin Shan520fe9d2013-04-04 16:54:33 +0000930 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100931 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100932
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600933 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600934 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100935}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100936EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100937
938/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 * pci_enable_msix - configure device's MSI-X capability structure
940 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700941 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700942 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 *
944 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700945 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 * MSI-X mode enabled on its hardware device function. A return of zero
947 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700948 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300950 * of irqs or MSI-X vectors available. Driver should use the returned value to
951 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900953int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600955 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700956 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600958 if (!pci_msi_supported(dev, nvec))
959 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000960
Alexander Gordeev27e20602014-09-23 14:25:11 -0600961 if (!entries)
962 return -EINVAL;
963
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100964 nr_entries = pci_msix_vec_count(dev);
965 if (nr_entries < 0)
966 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300968 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 /* Check for any invalid entries */
971 for (i = 0; i < nvec; i++) {
972 if (entries[i].entry >= nr_entries)
973 return -EINVAL; /* invalid entry */
974 for (j = i + 1; j < nvec; j++) {
975 if (entries[i].entry == entries[j].entry)
976 return -EINVAL; /* duplicate entry */
977 }
978 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700979 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700980
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700981 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900982 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400983 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return -EINVAL;
985 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600986 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100988EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900990void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100991{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900992 struct msi_desc *entry;
993
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100994 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700995 return;
996
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900997 /* Return the device with MSI-X masked as initial states */
Jiang Liu5004e982015-07-09 16:00:41 +0800998 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900999 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +01001000 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001001 }
1002
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -05001003 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -07001004 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001005 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001006}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001007
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001008void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001009{
1010 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1011 return;
1012
1013 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001014 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001016EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001018void pci_no_msi(void)
1019{
1020 pci_msi_enable = 0;
1021}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001022
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001023/**
1024 * pci_msi_enabled - is MSI enabled?
1025 *
1026 * Returns true if MSI has not been disabled by the command-line option
1027 * pci=nomsi.
1028 **/
1029int pci_msi_enabled(void)
1030{
1031 return pci_msi_enable;
1032}
1033EXPORT_SYMBOL(pci_msi_enabled);
1034
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001035void pci_msi_init_pci_dev(struct pci_dev *dev)
1036{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001037}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001038
1039/**
1040 * pci_enable_msi_range - configure device's MSI capability structure
1041 * @dev: device to configure
1042 * @minvec: minimal number of interrupts to configure
1043 * @maxvec: maximum number of interrupts to configure
1044 *
1045 * This function tries to allocate a maximum possible number of interrupts in a
1046 * range between @minvec and @maxvec. It returns a negative errno if an error
1047 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1048 * and updates the @dev's irq member to the lowest new interrupt number;
1049 * the other interrupt numbers allocated to this device are consecutive.
1050 **/
1051int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1052{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001053 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001054 int rc;
1055
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001056 if (!pci_msi_supported(dev, minvec))
1057 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001058
1059 WARN_ON(!!dev->msi_enabled);
1060
1061 /* Check whether driver already requested MSI-X irqs */
1062 if (dev->msix_enabled) {
1063 dev_info(&dev->dev,
1064 "can't enable MSI (MSI-X already enabled)\n");
1065 return -EINVAL;
1066 }
1067
Alexander Gordeev302a2522013-12-30 08:28:16 +01001068 if (maxvec < minvec)
1069 return -ERANGE;
1070
Alexander Gordeev034cd972014-04-14 15:28:35 +02001071 nvec = pci_msi_vec_count(dev);
1072 if (nvec < 0)
1073 return nvec;
1074 else if (nvec < minvec)
1075 return -EINVAL;
1076 else if (nvec > maxvec)
1077 nvec = maxvec;
1078
Alexander Gordeev302a2522013-12-30 08:28:16 +01001079 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001080 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001081 if (rc < 0) {
1082 return rc;
1083 } else if (rc > 0) {
1084 if (rc < minvec)
1085 return -ENOSPC;
1086 nvec = rc;
1087 }
1088 } while (rc);
1089
1090 return nvec;
1091}
1092EXPORT_SYMBOL(pci_enable_msi_range);
1093
1094/**
1095 * pci_enable_msix_range - configure device's MSI-X capability structure
1096 * @dev: pointer to the pci_dev data structure of MSI-X device function
1097 * @entries: pointer to an array of MSI-X entries
1098 * @minvec: minimum number of MSI-X irqs requested
1099 * @maxvec: maximum number of MSI-X irqs requested
1100 *
1101 * Setup the MSI-X capability structure of device function with a maximum
1102 * possible number of interrupts in the range between @minvec and @maxvec
1103 * upon its software driver call to request for MSI-X mode enabled on its
1104 * hardware device function. It returns a negative errno if an error occurs.
1105 * If it succeeds, it returns the actual number of interrupts allocated and
1106 * indicates the successful configuration of MSI-X capability structure
1107 * with new allocated MSI-X interrupts.
1108 **/
1109int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1110 int minvec, int maxvec)
1111{
1112 int nvec = maxvec;
1113 int rc;
1114
1115 if (maxvec < minvec)
1116 return -ERANGE;
1117
1118 do {
1119 rc = pci_enable_msix(dev, entries, nvec);
1120 if (rc < 0) {
1121 return rc;
1122 } else if (rc > 0) {
1123 if (rc < minvec)
1124 return -ENOSPC;
1125 nvec = rc;
1126 }
1127 } while (rc);
1128
1129 return nvec;
1130}
1131EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001132
Jiang Liu25a98bd2015-07-09 16:00:45 +08001133struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1134{
1135 return to_pci_dev(desc->dev);
1136}
1137
Jiang Liuc179c9b2015-07-09 16:00:36 +08001138void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1139{
1140 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1141
1142 return dev->bus->sysdata;
1143}
1144EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1145
Jiang Liu3878eae2014-11-11 21:02:18 +08001146#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1147/**
1148 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1149 * @irq_data: Pointer to interrupt data of the MSI interrupt
1150 * @msg: Pointer to the message
1151 */
1152void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1153{
Jiang Liu507a8832015-06-01 16:05:42 +08001154 struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
Jiang Liu3878eae2014-11-11 21:02:18 +08001155
1156 /*
1157 * For MSI-X desc->irq is always equal to irq_data->irq. For
1158 * MSI only the first interrupt of MULTI MSI passes the test.
1159 */
1160 if (desc->irq == irq_data->irq)
1161 __pci_write_msi_msg(desc, msg);
1162}
1163
1164/**
1165 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1166 * @dev: Pointer to the PCI device
1167 * @desc: Pointer to the msi descriptor
1168 *
1169 * The ID number is only used within the irqdomain.
1170 */
1171irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1172 struct msi_desc *desc)
1173{
1174 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1175 PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
1176 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1177}
1178
1179static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1180{
1181 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1182}
1183
1184/**
1185 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1186 * @domain: The interrupt domain to check
1187 * @info: The domain info for verification
1188 * @dev: The device to check
1189 *
1190 * Returns:
1191 * 0 if the functionality is supported
1192 * 1 if Multi MSI is requested, but the domain does not support it
1193 * -ENOTSUPP otherwise
1194 */
1195int pci_msi_domain_check_cap(struct irq_domain *domain,
1196 struct msi_domain_info *info, struct device *dev)
1197{
1198 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1199
1200 /* Special handling to support pci_enable_msi_range() */
1201 if (pci_msi_desc_is_multi_msi(desc) &&
1202 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1203 return 1;
1204 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1205 return -ENOTSUPP;
1206
1207 return 0;
1208}
1209
1210static int pci_msi_domain_handle_error(struct irq_domain *domain,
1211 struct msi_desc *desc, int error)
1212{
1213 /* Special handling to support pci_enable_msi_range() */
1214 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1215 return 1;
1216
1217 return error;
1218}
1219
1220#ifdef GENERIC_MSI_DOMAIN_OPS
1221static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1222 struct msi_desc *desc)
1223{
1224 arg->desc = desc;
1225 arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1226 desc);
1227}
1228#else
1229#define pci_msi_domain_set_desc NULL
1230#endif
1231
1232static struct msi_domain_ops pci_msi_domain_ops_default = {
1233 .set_desc = pci_msi_domain_set_desc,
1234 .msi_check = pci_msi_domain_check_cap,
1235 .handle_error = pci_msi_domain_handle_error,
1236};
1237
1238static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1239{
1240 struct msi_domain_ops *ops = info->ops;
1241
1242 if (ops == NULL) {
1243 info->ops = &pci_msi_domain_ops_default;
1244 } else {
1245 if (ops->set_desc == NULL)
1246 ops->set_desc = pci_msi_domain_set_desc;
1247 if (ops->msi_check == NULL)
1248 ops->msi_check = pci_msi_domain_check_cap;
1249 if (ops->handle_error == NULL)
1250 ops->handle_error = pci_msi_domain_handle_error;
1251 }
1252}
1253
1254static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1255{
1256 struct irq_chip *chip = info->chip;
1257
1258 BUG_ON(!chip);
1259 if (!chip->irq_write_msi_msg)
1260 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1261}
1262
1263/**
1264 * pci_msi_create_irq_domain - Creat a MSI interrupt domain
1265 * @node: Optional device-tree node of the interrupt controller
1266 * @info: MSI domain info
1267 * @parent: Parent irq domain
1268 *
1269 * Updates the domain and chip ops and creates a MSI interrupt domain.
1270 *
1271 * Returns:
1272 * A domain pointer or NULL in case of failure.
1273 */
1274struct irq_domain *pci_msi_create_irq_domain(struct device_node *node,
1275 struct msi_domain_info *info,
1276 struct irq_domain *parent)
1277{
Marc Zyngier03808392015-07-28 14:46:09 +01001278 struct irq_domain *domain;
1279
Jiang Liu3878eae2014-11-11 21:02:18 +08001280 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1281 pci_msi_domain_update_dom_ops(info);
1282 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1283 pci_msi_domain_update_chip_ops(info);
1284
Marc Zyngier03808392015-07-28 14:46:09 +01001285 domain = msi_create_irq_domain(node, info, parent);
1286 if (!domain)
1287 return NULL;
1288
1289 domain->bus_token = DOMAIN_BUS_PCI_MSI;
1290 return domain;
Jiang Liu3878eae2014-11-11 21:02:18 +08001291}
1292
1293/**
1294 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1295 * @domain: The interrupt domain to allocate from
1296 * @dev: The device for which to allocate
1297 * @nvec: The number of interrupts to allocate
1298 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1299 *
1300 * Returns:
1301 * A virtual interrupt number or an error code in case of failure
1302 */
1303int pci_msi_domain_alloc_irqs(struct irq_domain *domain, struct pci_dev *dev,
1304 int nvec, int type)
1305{
1306 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
1307}
1308
1309/**
1310 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1311 * @domain: The interrupt domain
1312 * @dev: The device for which to free interrupts
1313 */
1314void pci_msi_domain_free_irqs(struct irq_domain *domain, struct pci_dev *dev)
1315{
1316 msi_domain_free_irqs(domain, &dev->dev);
1317}
Jiang Liu8e047ad2014-11-15 22:24:07 +08001318
1319/**
1320 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
1321 * @node: Optional device-tree node of the interrupt controller
1322 * @info: MSI domain info
1323 * @parent: Parent irq domain
1324 *
1325 * Returns: A domain pointer or NULL in case of failure. If successful
1326 * the default PCI/MSI irqdomain pointer is updated.
1327 */
1328struct irq_domain *pci_msi_create_default_irq_domain(struct device_node *node,
1329 struct msi_domain_info *info, struct irq_domain *parent)
1330{
1331 struct irq_domain *domain;
1332
1333 mutex_lock(&pci_msi_domain_lock);
1334 if (pci_msi_default_domain) {
1335 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1336 domain = NULL;
1337 } else {
1338 domain = pci_msi_create_irq_domain(node, info, parent);
1339 pci_msi_default_domain = domain;
1340 }
1341 mutex_unlock(&pci_msi_domain_lock);
1342
1343 return domain;
1344}
Jiang Liu3878eae2014-11-11 21:02:18 +08001345#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */