blob: 5cb471ec3e61f83d84683c92015383eb73cb378c [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{
Jiang Liu63a7b172014-11-06 22:20:32 +0800104 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100105 struct msi_desc *entry;
106
Jiang Liu63a7b172014-11-06 22:20:32 +0800107 list_for_each_entry(entry, &dev->msi_list, list)
108 if (entry->irq)
109 for (i = 0; i < entry->nvec_used; i++)
110 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100111}
112
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200113void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
114{
115 return default_teardown_msi_irqs(dev);
116}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500117
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800118static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500119{
120 struct msi_desc *entry;
121
122 entry = NULL;
123 if (dev->msix_enabled) {
124 list_for_each_entry(entry, &dev->msi_list, list) {
125 if (irq == entry->irq)
126 break;
127 }
128 } else if (dev->msi_enabled) {
129 entry = irq_get_msi_desc(irq);
130 }
131
132 if (entry)
Yijing Wang56b72b42014-09-29 18:35:16 -0600133 __write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500134}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200135
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800136void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200137{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800138 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200139}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500140
Gavin Shane375b562013-04-04 16:54:30 +0000141static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800142{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800143 u16 control;
144
Gavin Shane375b562013-04-04 16:54:30 +0000145 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600146 control &= ~PCI_MSI_FLAGS_ENABLE;
147 if (enable)
148 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000149 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900150}
151
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800152static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800153{
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800154 u16 ctrl;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800155
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800156 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
157 ctrl &= ~clear;
158 ctrl |= set;
159 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800160}
161
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500162static inline __attribute_const__ u32 msi_mask(unsigned x)
163{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700164 /* Don't shift by >= width of type */
165 if (x >= 5)
166 return 0xffffffff;
167 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500168}
169
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600170/*
171 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
172 * mask all MSI interrupts by clearing the MSI enable bit does not work
173 * reliably as devices without an INTx disable bit will then generate a
174 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600175 */
Yijing Wang03f56e42014-10-27 10:44:37 +0800176u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400178 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Yijing Wang38737d82014-10-27 10:44:36 +0800180 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900181 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400182
183 mask_bits &= ~mask;
184 mask_bits |= flag;
185 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900186
187 return mask_bits;
188}
189
190static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
191{
Yijing Wang03f56e42014-10-27 10:44:37 +0800192 desc->masked = __msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400193}
194
195/*
196 * This internal function does not flush PCI writes to the device.
197 * All users must ensure that they read from the device before either
198 * assuming that the device state is up to date, or returning out of this
199 * file. This saves a few milliseconds when initialising devices with lots
200 * of MSI-X interrupts.
201 */
Yijing Wang03f56e42014-10-27 10:44:37 +0800202u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400203{
204 u32 mask_bits = desc->masked;
205 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900206 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800207
208 if (pci_msi_ignore_mask)
209 return 0;
210
Sheng Yang8d805282010-11-11 15:46:55 +0800211 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
212 if (flag)
213 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400214 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900215
216 return mask_bits;
217}
218
219static void msix_mask_irq(struct msi_desc *desc, u32 flag)
220{
Yijing Wang03f56e42014-10-27 10:44:37 +0800221 desc->masked = __msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400222}
223
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200224static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400225{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200226 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400227
228 if (desc->msi_attrib.is_msix) {
229 msix_mask_irq(desc, flag);
230 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400231 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800232 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400233 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400235}
236
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200237void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400238{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200239 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400240}
241
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200242void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400243{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200244 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800247void default_restore_msi_irqs(struct pci_dev *dev)
248{
249 struct msi_desc *entry;
250
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800251 list_for_each_entry(entry, &dev->msi_list, list)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800252 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800253}
254
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200255void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700256{
Ben Hutchings30da5522010-07-23 14:56:28 +0100257 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700258
Ben Hutchings30da5522010-07-23 14:56:28 +0100259 if (entry->msi_attrib.is_msix) {
260 void __iomem *base = entry->mask_base +
261 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
262
263 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
264 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
265 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
266 } else {
267 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600268 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100269 u16 data;
270
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600271 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
272 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100273 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600274 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
275 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600276 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100277 } else {
278 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600279 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100280 }
281 msg->data = data;
282 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700283}
284
Yinghai Lu3145e942008-12-05 18:58:34 -0800285void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700286{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200287 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800288
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200289 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800290}
291
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200292void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100293{
Ben Hutchings30da5522010-07-23 14:56:28 +0100294 /* Assert that the cache is valid, assuming that
295 * valid messages are not all-zeroes. */
296 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
297 entry->msg.data));
298
299 *msg = entry->msg;
300}
301
302void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
303{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200304 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100305
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200306 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100307}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600308EXPORT_SYMBOL_GPL(get_cached_msi_msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100309
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200310void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800311{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100312 if (entry->dev->current_state != PCI_D0) {
313 /* Don't touch the hardware now */
314 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400315 void __iomem *base;
316 base = entry->mask_base +
317 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
318
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900319 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
320 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
321 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400322 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700323 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600324 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400325 u16 msgctl;
326
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600327 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400328 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
329 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600330 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700331
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600332 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
333 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700334 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600335 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
336 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600337 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
338 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700339 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600340 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
341 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700342 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700343 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700344 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700345}
346
Yinghai Lu3145e942008-12-05 18:58:34 -0800347void write_msi_msg(unsigned int irq, struct msi_msg *msg)
348{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200349 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800350
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200351 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800352}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600353EXPORT_SYMBOL_GPL(write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800354
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900355static void free_msi_irqs(struct pci_dev *dev)
356{
357 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800358 struct attribute **msi_attrs;
359 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800360 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900361
Jiang Liu63a7b172014-11-06 22:20:32 +0800362 list_for_each_entry(entry, &dev->msi_list, list)
363 if (entry->irq)
364 for (i = 0; i < entry->nvec_used; i++)
365 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900366
367 arch_teardown_msi_irqs(dev);
368
369 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
370 if (entry->msi_attrib.is_msix) {
371 if (list_is_last(&entry->list, &dev->msi_list))
372 iounmap(entry->mask_base);
373 }
Neil Horman424eb392012-01-03 10:29:54 -0500374
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900375 list_del(&entry->list);
376 kfree(entry);
377 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800378
379 if (dev->msi_irq_groups) {
380 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
381 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700382 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800383 dev_attr = container_of(msi_attrs[count],
384 struct device_attribute, attr);
385 kfree(dev_attr->attr.name);
386 kfree(dev_attr);
387 ++count;
388 }
389 kfree(msi_attrs);
390 kfree(dev->msi_irq_groups[0]);
391 kfree(dev->msi_irq_groups);
392 dev->msi_irq_groups = NULL;
393 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900394}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900395
Matthew Wilcox379f5322009-03-17 08:54:07 -0400396static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400398 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
399 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return NULL;
401
Matthew Wilcox379f5322009-03-17 08:54:07 -0400402 INIT_LIST_HEAD(&desc->list);
403 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Matthew Wilcox379f5322009-03-17 08:54:07 -0400405 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
David Millerba698ad2007-10-25 01:16:30 -0700408static void pci_intx_for_msi(struct pci_dev *dev, int enable)
409{
410 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
411 pci_intx(dev, enable);
412}
413
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100414static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800415{
Shaohua Li41017f02006-02-08 17:11:38 +0800416 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700417 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800418
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800419 if (!dev->msi_enabled)
420 return;
421
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200422 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800423
David Millerba698ad2007-10-25 01:16:30 -0700424 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000425 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800426 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700427
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600428 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800429 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
430 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700431 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400432 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600433 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100434}
435
436static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800437{
Shaohua Li41017f02006-02-08 17:11:38 +0800438 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800439
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700440 if (!dev->msix_enabled)
441 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700442 BUG_ON(list_empty(&dev->msi_list));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700443
Shaohua Li41017f02006-02-08 17:11:38 +0800444 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700445 pci_intx_for_msi(dev, 0);
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800446 msix_clear_and_set_ctrl(dev, 0,
447 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800448
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800449 arch_restore_msi_irqs(dev);
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800450 list_for_each_entry(entry, &dev->msi_list, list)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400451 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800452
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800453 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800454}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100455
456void pci_restore_msi_state(struct pci_dev *dev)
457{
458 __pci_restore_msi_state(dev);
459 __pci_restore_msix_state(dev);
460}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600461EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800462
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800463static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400464 char *buf)
465{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800466 struct msi_desc *entry;
467 unsigned long irq;
468 int retval;
469
470 retval = kstrtoul(attr->attr.name, 10, &irq);
471 if (retval)
472 return retval;
473
Yijing Wange11ece52014-07-08 10:09:19 +0800474 entry = irq_get_msi_desc(irq);
475 if (entry)
476 return sprintf(buf, "%s\n",
477 entry->msi_attrib.is_msix ? "msix" : "msi");
478
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800479 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400480}
481
Neil Hormanda8d1c82011-10-06 14:08:18 -0400482static int populate_msi_sysfs(struct pci_dev *pdev)
483{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800484 struct attribute **msi_attrs;
485 struct attribute *msi_attr;
486 struct device_attribute *msi_dev_attr;
487 struct attribute_group *msi_irq_group;
488 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400489 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800490 int ret = -ENOMEM;
491 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400492 int count = 0;
493
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800494 /* Determine how many msi entries we have */
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800495 list_for_each_entry(entry, &pdev->msi_list, list)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800496 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497 if (!num_msi)
498 return 0;
499
500 /* Dynamically create the MSI attributes for the PCI device */
501 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
502 if (!msi_attrs)
503 return -ENOMEM;
504 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700505 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600506 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700507 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600508 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700509
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800510 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600511 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
512 entry->irq);
513 if (!msi_dev_attr->attr.name)
514 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800515 msi_dev_attr->attr.mode = S_IRUGO;
516 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800517 ++count;
518 }
519
520 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
521 if (!msi_irq_group)
522 goto error_attrs;
523 msi_irq_group->name = "msi_irqs";
524 msi_irq_group->attrs = msi_attrs;
525
526 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
527 if (!msi_irq_groups)
528 goto error_irq_group;
529 msi_irq_groups[0] = msi_irq_group;
530
531 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
532 if (ret)
533 goto error_irq_groups;
534 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400535
536 return 0;
537
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800538error_irq_groups:
539 kfree(msi_irq_groups);
540error_irq_group:
541 kfree(msi_irq_group);
542error_attrs:
543 count = 0;
544 msi_attr = msi_attrs[count];
545 while (msi_attr) {
546 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
547 kfree(msi_attr->name);
548 kfree(msi_dev_attr);
549 ++count;
550 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400551 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700552 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400553 return ret;
554}
555
Jiang Liu63a7b172014-11-06 22:20:32 +0800556static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800557{
558 u16 control;
559 struct msi_desc *entry;
560
561 /* MSI Entry Initialization */
562 entry = alloc_msi_entry(dev);
563 if (!entry)
564 return NULL;
565
566 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
567
568 entry->msi_attrib.is_msix = 0;
569 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
570 entry->msi_attrib.entry_nr = 0;
571 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
572 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800573 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800574 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
575 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800576
577 if (control & PCI_MSI_FLAGS_64BIT)
578 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
579 else
580 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
581
582 /* Save the initial mask status */
583 if (entry->msi_attrib.maskbit)
584 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
585
586 return entry;
587}
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589/**
590 * msi_capability_init - configure device's MSI capability structure
591 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400592 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400594 * Setup the MSI capability structure of the device with the requested
595 * number of interrupts. A return value of zero indicates the successful
596 * setup of an entry with the new MSI irq. A negative return value indicates
597 * an error, and a positive return value indicates the number of interrupts
598 * which could have been allocated.
599 */
600static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000603 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400604 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Gavin Shane375b562013-04-04 16:54:30 +0000606 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600607
Jiang Liu63a7b172014-11-06 22:20:32 +0800608 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700609 if (!entry)
610 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700611
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400612 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800613 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400614 msi_mask_irq(entry, mask, mask);
615
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700616 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400619 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000620 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900621 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900622 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000623 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500624 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700625
Neil Hormanda8d1c82011-10-06 14:08:18 -0400626 ret = populate_msi_sysfs(dev);
627 if (ret) {
628 msi_mask_irq(entry, mask, ~mask);
629 free_msi_irqs(dev);
630 return ret;
631 }
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700634 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000635 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800636 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Michael Ellerman7fe37302007-04-18 19:39:21 +1000638 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
640}
641
Gavin Shan520fe9d2013-04-04 16:54:33 +0000642static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900643{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900644 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900645 u32 table_offset;
646 u8 bir;
647
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600648 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
649 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600650 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
651 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900652 phys_addr = pci_resource_start(dev, bir) + table_offset;
653
654 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
655}
656
Gavin Shan520fe9d2013-04-04 16:54:33 +0000657static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
658 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900659{
660 struct msi_desc *entry;
661 int i;
662
663 for (i = 0; i < nvec; i++) {
664 entry = alloc_msi_entry(dev);
665 if (!entry) {
666 if (!i)
667 iounmap(base);
668 else
669 free_msi_irqs(dev);
670 /* No enough memory. Don't try again */
671 return -ENOMEM;
672 }
673
674 entry->msi_attrib.is_msix = 1;
675 entry->msi_attrib.is_64 = 1;
676 entry->msi_attrib.entry_nr = entries[i].entry;
677 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900678 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800679 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900680
681 list_add_tail(&entry->list, &dev->msi_list);
682 }
683
684 return 0;
685}
686
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900687static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000688 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900689{
690 struct msi_desc *entry;
691 int i = 0;
692
693 list_for_each_entry(entry, &dev->msi_list, list) {
694 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
695 PCI_MSIX_ENTRY_VECTOR_CTRL;
696
697 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900698 entry->masked = readl(entry->mask_base + offset);
699 msix_mask_irq(entry, 1);
700 i++;
701 }
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/**
705 * msix_capability_init - configure device's MSI-X capability
706 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700707 * @entries: pointer to an array of struct msix_entry entries
708 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600710 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700711 * single MSI-X irq. A return of zero indicates the successful setup of
712 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 **/
714static int msix_capability_init(struct pci_dev *dev,
715 struct msix_entry *entries, int nvec)
716{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000717 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900718 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 void __iomem *base;
720
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700721 /* Ensure MSI-X is disabled while it is set up */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800722 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700723
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800724 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600726 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900727 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return -ENOMEM;
729
Gavin Shan520fe9d2013-04-04 16:54:33 +0000730 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900731 if (ret)
732 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000733
734 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900735 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100736 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000737
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700738 /*
739 * Some devices require MSI-X to be enabled before we can touch the
740 * MSI-X registers. We need to mask all the vectors to prevent
741 * interrupts coming in before they're fully set up.
742 */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800743 msix_clear_and_set_ctrl(dev, 0,
744 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700745
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900746 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700747
Neil Hormanda8d1c82011-10-06 14:08:18 -0400748 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100749 if (ret)
750 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400751
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700752 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700753 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800754 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800756 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900759
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100760out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900761 if (ret < 0) {
762 /*
763 * If we had some success, report the number of irqs
764 * we succeeded in setting up.
765 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900766 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900767 int avail = 0;
768
769 list_for_each_entry(entry, &dev->msi_list, list) {
770 if (entry->irq != 0)
771 avail++;
772 }
773 if (avail != 0)
774 ret = avail;
775 }
776
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100777out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900778 free_msi_irqs(dev);
779
780 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600784 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400785 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000786 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400787 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700788 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000789 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600790 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400791 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600792static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400793{
794 struct pci_bus *bus;
795
Brice Goglin0306ebf2006-10-05 10:24:31 +0200796 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600797 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600798 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600799
800 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600801 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400802
Michael Ellerman314e77b2007-04-05 17:19:12 +1000803 /*
804 * You can't ask to have 0 or less MSIs configured.
805 * a) it's stupid ..
806 * b) the list manipulation code assumes nvec >= 1.
807 */
808 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600809 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000810
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900811 /*
812 * Any bridge which does NOT route MSI transactions from its
813 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200814 * the secondary pci_bus.
815 * We expect only arch-specific PCI host bus controller driver
816 * or quirks for specific PCI bridges to be setting NO_MSI.
817 */
Brice Goglin24334a12006-08-31 01:55:07 -0400818 for (bus = dev->bus; bus; bus = bus->parent)
819 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600820 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400821
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600822 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400823}
824
825/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100826 * pci_msi_vec_count - Return the number of MSI vectors a device can send
827 * @dev: device to report about
828 *
829 * This function returns the number of MSI vectors a device requested via
830 * Multiple Message Capable register. It returns a negative errno if the
831 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
832 * and returns a power of two, up to a maximum of 2^5 (32), according to the
833 * MSI specification.
834 **/
835int pci_msi_vec_count(struct pci_dev *dev)
836{
837 int ret;
838 u16 msgctl;
839
840 if (!dev->msi_cap)
841 return -EINVAL;
842
843 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
844 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
845
846 return ret;
847}
848EXPORT_SYMBOL(pci_msi_vec_count);
849
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400850void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400852 struct msi_desc *desc;
853 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100855 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700856 return;
857
Matthew Wilcox110828c2009-06-16 06:31:45 -0600858 BUG_ON(list_empty(&dev->msi_list));
859 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600860
Gavin Shane375b562013-04-04 16:54:30 +0000861 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700862 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800863 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700864
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900865 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800866 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900867 /* Keep cached state to be restored */
Yijing Wang03f56e42014-10-27 10:44:37 +0800868 __msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100869
870 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400871 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700872}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400873
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900874void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700875{
Yinghai Lud52877c2008-04-23 14:58:09 -0700876 if (!pci_msi_enable || !dev || !dev->msi_enabled)
877 return;
878
879 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900880 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100882EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100885 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100886 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100887 * This function returns the number of device's MSI-X table entries and
888 * therefore the number of MSI-X vectors device is capable of sending.
889 * It returns a negative errno if the device is not capable of sending MSI-X
890 * interrupts.
891 **/
892int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100893{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100894 u16 control;
895
Gavin Shan520fe9d2013-04-04 16:54:33 +0000896 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100897 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100898
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600899 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600900 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100901}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100902EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100903
904/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 * pci_enable_msix - configure device's MSI-X capability structure
906 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700907 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700908 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 *
910 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700911 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 * MSI-X mode enabled on its hardware device function. A return of zero
913 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700914 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300916 * of irqs or MSI-X vectors available. Driver should use the returned value to
917 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900919int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600921 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700922 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600924 if (!pci_msi_supported(dev, nvec))
925 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000926
Alexander Gordeev27e20602014-09-23 14:25:11 -0600927 if (!entries)
928 return -EINVAL;
929
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100930 nr_entries = pci_msix_vec_count(dev);
931 if (nr_entries < 0)
932 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300934 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 /* Check for any invalid entries */
937 for (i = 0; i < nvec; i++) {
938 if (entries[i].entry >= nr_entries)
939 return -EINVAL; /* invalid entry */
940 for (j = i + 1; j < nvec; j++) {
941 if (entries[i].entry == entries[j].entry)
942 return -EINVAL; /* duplicate entry */
943 }
944 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700945 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700946
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700947 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900948 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400949 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return -EINVAL;
951 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600952 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100954EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900956void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100957{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900958 struct msi_desc *entry;
959
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100960 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700961 return;
962
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900963 /* Return the device with MSI-X masked as initial states */
964 list_for_each_entry(entry, &dev->msi_list, list) {
965 /* Keep cached states to be restored */
Yijing Wang03f56e42014-10-27 10:44:37 +0800966 __msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900967 }
968
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800969 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700970 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800971 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700972}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900973
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900974void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700975{
976 if (!pci_msi_enable || !dev || !dev->msix_enabled)
977 return;
978
979 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900980 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100982EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700984void pci_no_msi(void)
985{
986 pci_msi_enable = 0;
987}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000988
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700989/**
990 * pci_msi_enabled - is MSI enabled?
991 *
992 * Returns true if MSI has not been disabled by the command-line option
993 * pci=nomsi.
994 **/
995int pci_msi_enabled(void)
996{
997 return pci_msi_enable;
998}
999EXPORT_SYMBOL(pci_msi_enabled);
1000
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001001void pci_msi_init_pci_dev(struct pci_dev *dev)
1002{
1003 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001004
1005 /* Disable the msi hardware to avoid screaming interrupts
1006 * during boot. This is the power on reset default so
1007 * usually this should be a noop.
1008 */
Gavin Shane375b562013-04-04 16:54:30 +00001009 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1010 if (dev->msi_cap)
1011 msi_set_enable(dev, 0);
1012
1013 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1014 if (dev->msix_cap)
Yijing Wang66f0d0c2014-06-19 16:29:53 +08001015 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001016}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001017
1018/**
1019 * pci_enable_msi_range - configure device's MSI capability structure
1020 * @dev: device to configure
1021 * @minvec: minimal number of interrupts to configure
1022 * @maxvec: maximum number of interrupts to configure
1023 *
1024 * This function tries to allocate a maximum possible number of interrupts in a
1025 * range between @minvec and @maxvec. It returns a negative errno if an error
1026 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1027 * and updates the @dev's irq member to the lowest new interrupt number;
1028 * the other interrupt numbers allocated to this device are consecutive.
1029 **/
1030int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1031{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001032 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001033 int rc;
1034
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001035 if (!pci_msi_supported(dev, minvec))
1036 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001037
1038 WARN_ON(!!dev->msi_enabled);
1039
1040 /* Check whether driver already requested MSI-X irqs */
1041 if (dev->msix_enabled) {
1042 dev_info(&dev->dev,
1043 "can't enable MSI (MSI-X already enabled)\n");
1044 return -EINVAL;
1045 }
1046
Alexander Gordeev302a2522013-12-30 08:28:16 +01001047 if (maxvec < minvec)
1048 return -ERANGE;
1049
Alexander Gordeev034cd972014-04-14 15:28:35 +02001050 nvec = pci_msi_vec_count(dev);
1051 if (nvec < 0)
1052 return nvec;
1053 else if (nvec < minvec)
1054 return -EINVAL;
1055 else if (nvec > maxvec)
1056 nvec = maxvec;
1057
Alexander Gordeev302a2522013-12-30 08:28:16 +01001058 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001059 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001060 if (rc < 0) {
1061 return rc;
1062 } else if (rc > 0) {
1063 if (rc < minvec)
1064 return -ENOSPC;
1065 nvec = rc;
1066 }
1067 } while (rc);
1068
1069 return nvec;
1070}
1071EXPORT_SYMBOL(pci_enable_msi_range);
1072
1073/**
1074 * pci_enable_msix_range - configure device's MSI-X capability structure
1075 * @dev: pointer to the pci_dev data structure of MSI-X device function
1076 * @entries: pointer to an array of MSI-X entries
1077 * @minvec: minimum number of MSI-X irqs requested
1078 * @maxvec: maximum number of MSI-X irqs requested
1079 *
1080 * Setup the MSI-X capability structure of device function with a maximum
1081 * possible number of interrupts in the range between @minvec and @maxvec
1082 * upon its software driver call to request for MSI-X mode enabled on its
1083 * hardware device function. It returns a negative errno if an error occurs.
1084 * If it succeeds, it returns the actual number of interrupts allocated and
1085 * indicates the successful configuration of MSI-X capability structure
1086 * with new allocated MSI-X interrupts.
1087 **/
1088int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1089 int minvec, int maxvec)
1090{
1091 int nvec = maxvec;
1092 int rc;
1093
1094 if (maxvec < minvec)
1095 return -ERANGE;
1096
1097 do {
1098 rc = pci_enable_msix(dev, entries, nvec);
1099 if (rc < 0) {
1100 return rc;
1101 } else if (rc > 0) {
1102 if (rc < minvec)
1103 return -ENOSPC;
1104 nvec = rc;
1105 }
1106 } while (rc);
1107
1108 return nvec;
1109}
1110EXPORT_SYMBOL(pci_enable_msix_range);