blob: f1eb873eeaa6fdb9bdf376f3d864b9b3920883e4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int pci_msi_enable = 1;
Yijing Wang38737d82014-10-27 10:44:36 +080026int pci_msi_ignore_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Bjorn Helgaas527eee22013-04-17 17:44:48 -060028#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
29
30
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010031/* Arch hooks */
32
Yijing Wang262a2ba2014-11-11 15:22:45 -070033struct msi_controller * __weak pcibios_msi_controller(struct pci_dev *dev)
34{
35 return NULL;
36}
37
38static struct msi_controller *pci_msi_controller(struct pci_dev *dev)
39{
40 struct msi_controller *msi_ctrl = dev->bus->msi;
41
42 if (msi_ctrl)
43 return msi_ctrl;
44
45 return pcibios_msi_controller(dev);
46}
47
Thomas Petazzoni4287d822013-08-09 22:27:06 +020048int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
49{
Yijing Wang262a2ba2014-11-11 15:22:45 -070050 struct msi_controller *chip = pci_msi_controller(dev);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020051 int err;
52
53 if (!chip || !chip->setup_irq)
54 return -EINVAL;
55
56 err = chip->setup_irq(chip, dev, desc);
57 if (err < 0)
58 return err;
59
60 irq_set_chip_data(desc->irq, chip);
61
62 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020063}
64
65void __weak arch_teardown_msi_irq(unsigned int irq)
66{
Yijing Wangc2791b82014-11-11 17:45:45 -070067 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020068
69 if (!chip || !chip->teardown_irq)
70 return;
71
72 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +020073}
74
Thomas Petazzoni4287d822013-08-09 22:27:06 +020075int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010076{
77 struct msi_desc *entry;
78 int ret;
79
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040080 /*
81 * If an architecture wants to support multiple MSI, it needs to
82 * override arch_setup_msi_irqs()
83 */
84 if (type == PCI_CAP_ID_MSI && nvec > 1)
85 return 1;
86
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010087 list_for_each_entry(entry, &dev->msi_list, list) {
88 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110089 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010090 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110091 if (ret > 0)
92 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010093 }
94
95 return 0;
96}
97
Thomas Petazzoni4287d822013-08-09 22:27:06 +020098/*
99 * We have a default implementation available as a separate non-weak
100 * function, as it is used by the Xen x86 PCI code
101 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400102void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100103{
104 struct msi_desc *entry;
105
106 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400107 int i, nvec;
108 if (entry->irq == 0)
109 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200110 if (entry->nvec_used)
111 nvec = entry->nvec_used;
112 else
113 nvec = 1 << entry->msi_attrib.multiple;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400114 for (i = 0; i < nvec; i++)
115 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100116 }
117}
118
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200119void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
120{
121 return default_teardown_msi_irqs(dev);
122}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500123
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800124static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500125{
126 struct msi_desc *entry;
127
128 entry = NULL;
129 if (dev->msix_enabled) {
130 list_for_each_entry(entry, &dev->msi_list, list) {
131 if (irq == entry->irq)
132 break;
133 }
134 } else if (dev->msi_enabled) {
135 entry = irq_get_msi_desc(irq);
136 }
137
138 if (entry)
Yijing Wang56b72b42014-09-29 18:35:16 -0600139 __write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500140}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200141
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800142void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200143{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800144 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200145}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500146
Gavin Shane375b562013-04-04 16:54:30 +0000147static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800148{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800149 u16 control;
150
Gavin Shane375b562013-04-04 16:54:30 +0000151 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600152 control &= ~PCI_MSI_FLAGS_ENABLE;
153 if (enable)
154 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000155 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900156}
157
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800158static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800159{
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800160 u16 ctrl;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800161
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800162 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
163 ctrl &= ~clear;
164 ctrl |= set;
165 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800166}
167
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500168static inline __attribute_const__ u32 msi_mask(unsigned x)
169{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700170 /* Don't shift by >= width of type */
171 if (x >= 5)
172 return 0xffffffff;
173 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500174}
175
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600176/*
177 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
178 * mask all MSI interrupts by clearing the MSI enable bit does not work
179 * reliably as devices without an INTx disable bit will then generate a
180 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600181 */
Yijing Wang03f56e42014-10-27 10:44:37 +0800182u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400184 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Yijing Wang38737d82014-10-27 10:44:36 +0800186 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900187 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400188
189 mask_bits &= ~mask;
190 mask_bits |= flag;
191 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900192
193 return mask_bits;
194}
195
196static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
197{
Yijing Wang03f56e42014-10-27 10:44:37 +0800198 desc->masked = __msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400199}
200
201/*
202 * This internal function does not flush PCI writes to the device.
203 * All users must ensure that they read from the device before either
204 * assuming that the device state is up to date, or returning out of this
205 * file. This saves a few milliseconds when initialising devices with lots
206 * of MSI-X interrupts.
207 */
Yijing Wang03f56e42014-10-27 10:44:37 +0800208u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400209{
210 u32 mask_bits = desc->masked;
211 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900212 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800213
214 if (pci_msi_ignore_mask)
215 return 0;
216
Sheng Yang8d805282010-11-11 15:46:55 +0800217 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
218 if (flag)
219 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400220 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900221
222 return mask_bits;
223}
224
225static void msix_mask_irq(struct msi_desc *desc, u32 flag)
226{
Yijing Wang03f56e42014-10-27 10:44:37 +0800227 desc->masked = __msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400228}
229
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200230static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400231{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200232 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400233
234 if (desc->msi_attrib.is_msix) {
235 msix_mask_irq(desc, flag);
236 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400237 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800238 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400239 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400241}
242
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200243void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400244{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200245 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400246}
247
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200248void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400249{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200250 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800253void default_restore_msi_irqs(struct pci_dev *dev)
254{
255 struct msi_desc *entry;
256
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800257 list_for_each_entry(entry, &dev->msi_list, list)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800258 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800259}
260
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200261void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700262{
Ben Hutchings30da5522010-07-23 14:56:28 +0100263 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700264
Ben Hutchings30da5522010-07-23 14:56:28 +0100265 if (entry->msi_attrib.is_msix) {
266 void __iomem *base = entry->mask_base +
267 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
268
269 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
270 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
271 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
272 } else {
273 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600274 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100275 u16 data;
276
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600277 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
278 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100279 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600280 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
281 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600282 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100283 } else {
284 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600285 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100286 }
287 msg->data = data;
288 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700289}
290
Yinghai Lu3145e942008-12-05 18:58:34 -0800291void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700292{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200293 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800294
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200295 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800296}
297
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200298void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100299{
Ben Hutchings30da5522010-07-23 14:56:28 +0100300 /* Assert that the cache is valid, assuming that
301 * valid messages are not all-zeroes. */
302 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
303 entry->msg.data));
304
305 *msg = entry->msg;
306}
307
308void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
309{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200310 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100311
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200312 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100313}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600314EXPORT_SYMBOL_GPL(get_cached_msi_msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100315
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200316void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800317{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100318 if (entry->dev->current_state != PCI_D0) {
319 /* Don't touch the hardware now */
320 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400321 void __iomem *base;
322 base = entry->mask_base +
323 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
324
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900325 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
326 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
327 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400328 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700329 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600330 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400331 u16 msgctl;
332
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600333 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400334 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
335 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600336 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700337
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600338 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
339 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700340 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600341 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
342 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600343 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
344 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700345 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600346 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
347 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700348 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700349 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700350 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700351}
352
Yinghai Lu3145e942008-12-05 18:58:34 -0800353void write_msi_msg(unsigned int irq, struct msi_msg *msg)
354{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200355 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800356
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200357 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800358}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600359EXPORT_SYMBOL_GPL(write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800360
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900361static void free_msi_irqs(struct pci_dev *dev)
362{
363 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800364 struct attribute **msi_attrs;
365 struct device_attribute *dev_attr;
366 int count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900367
368 list_for_each_entry(entry, &dev->msi_list, list) {
369 int i, nvec;
370 if (!entry->irq)
371 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200372 if (entry->nvec_used)
373 nvec = entry->nvec_used;
374 else
375 nvec = 1 << entry->msi_attrib.multiple;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900376 for (i = 0; i < nvec; i++)
377 BUG_ON(irq_has_action(entry->irq + i));
378 }
379
380 arch_teardown_msi_irqs(dev);
381
382 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
383 if (entry->msi_attrib.is_msix) {
384 if (list_is_last(&entry->list, &dev->msi_list))
385 iounmap(entry->mask_base);
386 }
Neil Horman424eb392012-01-03 10:29:54 -0500387
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900388 list_del(&entry->list);
389 kfree(entry);
390 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800391
392 if (dev->msi_irq_groups) {
393 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
394 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700395 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800396 dev_attr = container_of(msi_attrs[count],
397 struct device_attribute, attr);
398 kfree(dev_attr->attr.name);
399 kfree(dev_attr);
400 ++count;
401 }
402 kfree(msi_attrs);
403 kfree(dev->msi_irq_groups[0]);
404 kfree(dev->msi_irq_groups);
405 dev->msi_irq_groups = NULL;
406 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900407}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900408
Matthew Wilcox379f5322009-03-17 08:54:07 -0400409static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400411 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
412 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return NULL;
414
Matthew Wilcox379f5322009-03-17 08:54:07 -0400415 INIT_LIST_HEAD(&desc->list);
416 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Matthew Wilcox379f5322009-03-17 08:54:07 -0400418 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
David Millerba698ad2007-10-25 01:16:30 -0700421static void pci_intx_for_msi(struct pci_dev *dev, int enable)
422{
423 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
424 pci_intx(dev, enable);
425}
426
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100427static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800428{
Shaohua Li41017f02006-02-08 17:11:38 +0800429 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700430 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800431
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800432 if (!dev->msi_enabled)
433 return;
434
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200435 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800436
David Millerba698ad2007-10-25 01:16:30 -0700437 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000438 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800439 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700440
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600441 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800442 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
443 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700444 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400445 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600446 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100447}
448
449static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800450{
Shaohua Li41017f02006-02-08 17:11:38 +0800451 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800452
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700453 if (!dev->msix_enabled)
454 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700455 BUG_ON(list_empty(&dev->msi_list));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700456
Shaohua Li41017f02006-02-08 17:11:38 +0800457 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700458 pci_intx_for_msi(dev, 0);
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800459 msix_clear_and_set_ctrl(dev, 0,
460 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800461
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800462 arch_restore_msi_irqs(dev);
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800463 list_for_each_entry(entry, &dev->msi_list, list)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400464 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800465
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800466 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800467}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100468
469void pci_restore_msi_state(struct pci_dev *dev)
470{
471 __pci_restore_msi_state(dev);
472 __pci_restore_msix_state(dev);
473}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600474EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800475
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800476static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400477 char *buf)
478{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800479 struct msi_desc *entry;
480 unsigned long irq;
481 int retval;
482
483 retval = kstrtoul(attr->attr.name, 10, &irq);
484 if (retval)
485 return retval;
486
Yijing Wange11ece52014-07-08 10:09:19 +0800487 entry = irq_get_msi_desc(irq);
488 if (entry)
489 return sprintf(buf, "%s\n",
490 entry->msi_attrib.is_msix ? "msix" : "msi");
491
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800492 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400493}
494
Neil Hormanda8d1c82011-10-06 14:08:18 -0400495static int populate_msi_sysfs(struct pci_dev *pdev)
496{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497 struct attribute **msi_attrs;
498 struct attribute *msi_attr;
499 struct device_attribute *msi_dev_attr;
500 struct attribute_group *msi_irq_group;
501 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400502 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800503 int ret = -ENOMEM;
504 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400505 int count = 0;
506
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800507 /* Determine how many msi entries we have */
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800508 list_for_each_entry(entry, &pdev->msi_list, list)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800509 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800510 if (!num_msi)
511 return 0;
512
513 /* Dynamically create the MSI attributes for the PCI device */
514 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
515 if (!msi_attrs)
516 return -ENOMEM;
517 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700518 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600519 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700520 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600521 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700522
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800523 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600524 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
525 entry->irq);
526 if (!msi_dev_attr->attr.name)
527 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800528 msi_dev_attr->attr.mode = S_IRUGO;
529 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800530 ++count;
531 }
532
533 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
534 if (!msi_irq_group)
535 goto error_attrs;
536 msi_irq_group->name = "msi_irqs";
537 msi_irq_group->attrs = msi_attrs;
538
539 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
540 if (!msi_irq_groups)
541 goto error_irq_group;
542 msi_irq_groups[0] = msi_irq_group;
543
544 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
545 if (ret)
546 goto error_irq_groups;
547 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400548
549 return 0;
550
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800551error_irq_groups:
552 kfree(msi_irq_groups);
553error_irq_group:
554 kfree(msi_irq_group);
555error_attrs:
556 count = 0;
557 msi_attr = msi_attrs[count];
558 while (msi_attr) {
559 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
560 kfree(msi_attr->name);
561 kfree(msi_dev_attr);
562 ++count;
563 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400564 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700565 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400566 return ret;
567}
568
Yijing Wangd873b4d2014-07-08 10:07:23 +0800569static struct msi_desc *msi_setup_entry(struct pci_dev *dev)
570{
571 u16 control;
572 struct msi_desc *entry;
573
574 /* MSI Entry Initialization */
575 entry = alloc_msi_entry(dev);
576 if (!entry)
577 return NULL;
578
579 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
580
581 entry->msi_attrib.is_msix = 0;
582 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
583 entry->msi_attrib.entry_nr = 0;
584 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
585 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800586 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
587
588 if (control & PCI_MSI_FLAGS_64BIT)
589 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
590 else
591 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
592
593 /* Save the initial mask status */
594 if (entry->msi_attrib.maskbit)
595 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
596
597 return entry;
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600/**
601 * msi_capability_init - configure device's MSI capability structure
602 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400603 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400605 * Setup the MSI capability structure of the device with the requested
606 * number of interrupts. A return value of zero indicates the successful
607 * setup of an entry with the new MSI irq. A negative return value indicates
608 * an error, and a positive return value indicates the number of interrupts
609 * which could have been allocated.
610 */
611static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000614 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400615 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Gavin Shane375b562013-04-04 16:54:30 +0000617 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600618
Yijing Wangd873b4d2014-07-08 10:07:23 +0800619 entry = msi_setup_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700620 if (!entry)
621 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700622
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400623 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800624 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400625 msi_mask_irq(entry, mask, mask);
626
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700627 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400630 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000631 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900632 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900633 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000634 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500635 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700636
Neil Hormanda8d1c82011-10-06 14:08:18 -0400637 ret = populate_msi_sysfs(dev);
638 if (ret) {
639 msi_mask_irq(entry, mask, ~mask);
640 free_msi_irqs(dev);
641 return ret;
642 }
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700645 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000646 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800647 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Michael Ellerman7fe37302007-04-18 19:39:21 +1000649 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
651}
652
Gavin Shan520fe9d2013-04-04 16:54:33 +0000653static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900654{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900655 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900656 u32 table_offset;
657 u8 bir;
658
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600659 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
660 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600661 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
662 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900663 phys_addr = pci_resource_start(dev, bir) + table_offset;
664
665 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
666}
667
Gavin Shan520fe9d2013-04-04 16:54:33 +0000668static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
669 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900670{
671 struct msi_desc *entry;
672 int i;
673
674 for (i = 0; i < nvec; i++) {
675 entry = alloc_msi_entry(dev);
676 if (!entry) {
677 if (!i)
678 iounmap(base);
679 else
680 free_msi_irqs(dev);
681 /* No enough memory. Don't try again */
682 return -ENOMEM;
683 }
684
685 entry->msi_attrib.is_msix = 1;
686 entry->msi_attrib.is_64 = 1;
687 entry->msi_attrib.entry_nr = entries[i].entry;
688 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900689 entry->mask_base = base;
690
691 list_add_tail(&entry->list, &dev->msi_list);
692 }
693
694 return 0;
695}
696
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900697static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000698 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900699{
700 struct msi_desc *entry;
701 int i = 0;
702
703 list_for_each_entry(entry, &dev->msi_list, list) {
704 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
705 PCI_MSIX_ENTRY_VECTOR_CTRL;
706
707 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200708 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900709 entry->masked = readl(entry->mask_base + offset);
710 msix_mask_irq(entry, 1);
711 i++;
712 }
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715/**
716 * msix_capability_init - configure device's MSI-X capability
717 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700718 * @entries: pointer to an array of struct msix_entry entries
719 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600721 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700722 * single MSI-X irq. A return of zero indicates the successful setup of
723 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 **/
725static int msix_capability_init(struct pci_dev *dev,
726 struct msix_entry *entries, int nvec)
727{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000728 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900729 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 void __iomem *base;
731
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700732 /* Ensure MSI-X is disabled while it is set up */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800733 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700734
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800735 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600737 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900738 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -ENOMEM;
740
Gavin Shan520fe9d2013-04-04 16:54:33 +0000741 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900742 if (ret)
743 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000744
745 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900746 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100747 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000748
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700749 /*
750 * Some devices require MSI-X to be enabled before we can touch the
751 * MSI-X registers. We need to mask all the vectors to prevent
752 * interrupts coming in before they're fully set up.
753 */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800754 msix_clear_and_set_ctrl(dev, 0,
755 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700756
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900757 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700758
Neil Hormanda8d1c82011-10-06 14:08:18 -0400759 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100760 if (ret)
761 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400762
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700763 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700764 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800765 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800767 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900770
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100771out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900772 if (ret < 0) {
773 /*
774 * If we had some success, report the number of irqs
775 * we succeeded in setting up.
776 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900777 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900778 int avail = 0;
779
780 list_for_each_entry(entry, &dev->msi_list, list) {
781 if (entry->irq != 0)
782 avail++;
783 }
784 if (avail != 0)
785 ret = avail;
786 }
787
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100788out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900789 free_msi_irqs(dev);
790
791 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
794/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600795 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400796 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000797 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400798 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700799 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000800 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600801 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400802 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600803static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400804{
805 struct pci_bus *bus;
806
Brice Goglin0306ebf2006-10-05 10:24:31 +0200807 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600808 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600809 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600810
811 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600812 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400813
Michael Ellerman314e77b2007-04-05 17:19:12 +1000814 /*
815 * You can't ask to have 0 or less MSIs configured.
816 * a) it's stupid ..
817 * b) the list manipulation code assumes nvec >= 1.
818 */
819 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600820 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000821
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900822 /*
823 * Any bridge which does NOT route MSI transactions from its
824 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200825 * the secondary pci_bus.
826 * We expect only arch-specific PCI host bus controller driver
827 * or quirks for specific PCI bridges to be setting NO_MSI.
828 */
Brice Goglin24334a12006-08-31 01:55:07 -0400829 for (bus = dev->bus; bus; bus = bus->parent)
830 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600831 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400832
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600833 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400834}
835
836/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100837 * pci_msi_vec_count - Return the number of MSI vectors a device can send
838 * @dev: device to report about
839 *
840 * This function returns the number of MSI vectors a device requested via
841 * Multiple Message Capable register. It returns a negative errno if the
842 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
843 * and returns a power of two, up to a maximum of 2^5 (32), according to the
844 * MSI specification.
845 **/
846int pci_msi_vec_count(struct pci_dev *dev)
847{
848 int ret;
849 u16 msgctl;
850
851 if (!dev->msi_cap)
852 return -EINVAL;
853
854 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
855 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
856
857 return ret;
858}
859EXPORT_SYMBOL(pci_msi_vec_count);
860
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400861void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400863 struct msi_desc *desc;
864 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100866 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700867 return;
868
Matthew Wilcox110828c2009-06-16 06:31:45 -0600869 BUG_ON(list_empty(&dev->msi_list));
870 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600871
Gavin Shane375b562013-04-04 16:54:30 +0000872 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700873 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800874 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700875
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900876 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800877 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900878 /* Keep cached state to be restored */
Yijing Wang03f56e42014-10-27 10:44:37 +0800879 __msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100880
881 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400882 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700883}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400884
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900885void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700886{
Yinghai Lud52877c2008-04-23 14:58:09 -0700887 if (!pci_msi_enable || !dev || !dev->msi_enabled)
888 return;
889
890 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900891 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100893EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100896 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100897 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100898 * This function returns the number of device's MSI-X table entries and
899 * therefore the number of MSI-X vectors device is capable of sending.
900 * It returns a negative errno if the device is not capable of sending MSI-X
901 * interrupts.
902 **/
903int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100904{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100905 u16 control;
906
Gavin Shan520fe9d2013-04-04 16:54:33 +0000907 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100908 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100909
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600910 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600911 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100912}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100913EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100914
915/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * pci_enable_msix - configure device's MSI-X capability structure
917 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700918 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700919 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 *
921 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700922 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * MSI-X mode enabled on its hardware device function. A return of zero
924 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700925 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300927 * of irqs or MSI-X vectors available. Driver should use the returned value to
928 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900930int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600932 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700933 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600935 if (!pci_msi_supported(dev, nvec))
936 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000937
Alexander Gordeev27e20602014-09-23 14:25:11 -0600938 if (!entries)
939 return -EINVAL;
940
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100941 nr_entries = pci_msix_vec_count(dev);
942 if (nr_entries < 0)
943 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300945 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /* Check for any invalid entries */
948 for (i = 0; i < nvec; i++) {
949 if (entries[i].entry >= nr_entries)
950 return -EINVAL; /* invalid entry */
951 for (j = i + 1; j < nvec; j++) {
952 if (entries[i].entry == entries[j].entry)
953 return -EINVAL; /* duplicate entry */
954 }
955 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700956 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700957
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700958 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900959 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400960 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -EINVAL;
962 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600963 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100965EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900967void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100968{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900969 struct msi_desc *entry;
970
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100971 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700972 return;
973
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900974 /* Return the device with MSI-X masked as initial states */
975 list_for_each_entry(entry, &dev->msi_list, list) {
976 /* Keep cached states to be restored */
Yijing Wang03f56e42014-10-27 10:44:37 +0800977 __msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900978 }
979
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800980 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700981 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800982 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700983}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900984
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900985void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700986{
987 if (!pci_msi_enable || !dev || !dev->msix_enabled)
988 return;
989
990 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900991 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100993EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700995void pci_no_msi(void)
996{
997 pci_msi_enable = 0;
998}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000999
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001000/**
1001 * pci_msi_enabled - is MSI enabled?
1002 *
1003 * Returns true if MSI has not been disabled by the command-line option
1004 * pci=nomsi.
1005 **/
1006int pci_msi_enabled(void)
1007{
1008 return pci_msi_enable;
1009}
1010EXPORT_SYMBOL(pci_msi_enabled);
1011
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001012void pci_msi_init_pci_dev(struct pci_dev *dev)
1013{
1014 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001015
1016 /* Disable the msi hardware to avoid screaming interrupts
1017 * during boot. This is the power on reset default so
1018 * usually this should be a noop.
1019 */
Gavin Shane375b562013-04-04 16:54:30 +00001020 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1021 if (dev->msi_cap)
1022 msi_set_enable(dev, 0);
1023
1024 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1025 if (dev->msix_cap)
Yijing Wang66f0d0c2014-06-19 16:29:53 +08001026 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001027}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001028
1029/**
1030 * pci_enable_msi_range - configure device's MSI capability structure
1031 * @dev: device to configure
1032 * @minvec: minimal number of interrupts to configure
1033 * @maxvec: maximum number of interrupts to configure
1034 *
1035 * This function tries to allocate a maximum possible number of interrupts in a
1036 * range between @minvec and @maxvec. It returns a negative errno if an error
1037 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1038 * and updates the @dev's irq member to the lowest new interrupt number;
1039 * the other interrupt numbers allocated to this device are consecutive.
1040 **/
1041int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1042{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001043 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001044 int rc;
1045
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001046 if (!pci_msi_supported(dev, minvec))
1047 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001048
1049 WARN_ON(!!dev->msi_enabled);
1050
1051 /* Check whether driver already requested MSI-X irqs */
1052 if (dev->msix_enabled) {
1053 dev_info(&dev->dev,
1054 "can't enable MSI (MSI-X already enabled)\n");
1055 return -EINVAL;
1056 }
1057
Alexander Gordeev302a2522013-12-30 08:28:16 +01001058 if (maxvec < minvec)
1059 return -ERANGE;
1060
Alexander Gordeev034cd972014-04-14 15:28:35 +02001061 nvec = pci_msi_vec_count(dev);
1062 if (nvec < 0)
1063 return nvec;
1064 else if (nvec < minvec)
1065 return -EINVAL;
1066 else if (nvec > maxvec)
1067 nvec = maxvec;
1068
Alexander Gordeev302a2522013-12-30 08:28:16 +01001069 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001070 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001071 if (rc < 0) {
1072 return rc;
1073 } else if (rc > 0) {
1074 if (rc < minvec)
1075 return -ENOSPC;
1076 nvec = rc;
1077 }
1078 } while (rc);
1079
1080 return nvec;
1081}
1082EXPORT_SYMBOL(pci_enable_msi_range);
1083
1084/**
1085 * pci_enable_msix_range - configure device's MSI-X capability structure
1086 * @dev: pointer to the pci_dev data structure of MSI-X device function
1087 * @entries: pointer to an array of MSI-X entries
1088 * @minvec: minimum number of MSI-X irqs requested
1089 * @maxvec: maximum number of MSI-X irqs requested
1090 *
1091 * Setup the MSI-X capability structure of device function with a maximum
1092 * possible number of interrupts in the range between @minvec and @maxvec
1093 * upon its software driver call to request for MSI-X mode enabled on its
1094 * hardware device function. It returns a negative errno if an error occurs.
1095 * If it succeeds, it returns the actual number of interrupts allocated and
1096 * indicates the successful configuration of MSI-X capability structure
1097 * with new allocated MSI-X interrupts.
1098 **/
1099int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1100 int minvec, int maxvec)
1101{
1102 int nvec = maxvec;
1103 int rc;
1104
1105 if (maxvec < minvec)
1106 return -ERANGE;
1107
1108 do {
1109 rc = pci_enable_msix(dev, entries, nvec);
1110 if (rc < 0) {
1111 return rc;
1112 } else if (rc > 0) {
1113 if (rc < minvec)
1114 return -ENOSPC;
1115 nvec = rc;
1116 }
1117 } while (rc);
1118
1119 return nvec;
1120}
1121EXPORT_SYMBOL(pci_enable_msix_range);