blob: 51bf0400a8891ba53c1fc6f32a81229b4110db00 [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>
13#include <linux/init.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pci.h>
17#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070018#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070019#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090020#include <linux/errno.h>
21#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int pci_msi_enable = 1;
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
Thomas Petazzoni4287d822013-08-09 22:27:06 +020033int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
34{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020035 struct msi_chip *chip = dev->bus->msi;
36 int err;
37
38 if (!chip || !chip->setup_irq)
39 return -EINVAL;
40
41 err = chip->setup_irq(chip, dev, desc);
42 if (err < 0)
43 return err;
44
45 irq_set_chip_data(desc->irq, chip);
46
47 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020048}
49
50void __weak arch_teardown_msi_irq(unsigned int irq)
51{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020052 struct msi_chip *chip = irq_get_chip_data(irq);
53
54 if (!chip || !chip->teardown_irq)
55 return;
56
57 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +020058}
59
60int __weak arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010061{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020062 struct msi_chip *chip = dev->bus->msi;
63
64 if (!chip || !chip->check_device)
65 return 0;
66
67 return chip->check_device(chip, dev, nvec, type);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010068}
69
Thomas Petazzoni4287d822013-08-09 22:27:06 +020070int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010071{
72 struct msi_desc *entry;
73 int ret;
74
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040075 /*
76 * If an architecture wants to support multiple MSI, it needs to
77 * override arch_setup_msi_irqs()
78 */
79 if (type == PCI_CAP_ID_MSI && nvec > 1)
80 return 1;
81
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010082 list_for_each_entry(entry, &dev->msi_list, list) {
83 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110084 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010085 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110086 if (ret > 0)
87 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010088 }
89
90 return 0;
91}
92
Thomas Petazzoni4287d822013-08-09 22:27:06 +020093/*
94 * We have a default implementation available as a separate non-weak
95 * function, as it is used by the Xen x86 PCI code
96 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -040097void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010098{
99 struct msi_desc *entry;
100
101 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400102 int i, nvec;
103 if (entry->irq == 0)
104 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200105 if (entry->nvec_used)
106 nvec = entry->nvec_used;
107 else
108 nvec = 1 << entry->msi_attrib.multiple;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400109 for (i = 0; i < nvec; i++)
110 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100111 }
112}
113
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200114void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
115{
116 return default_teardown_msi_irqs(dev);
117}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500118
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800119static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500120{
121 struct msi_desc *entry;
122
123 entry = NULL;
124 if (dev->msix_enabled) {
125 list_for_each_entry(entry, &dev->msi_list, list) {
126 if (irq == entry->irq)
127 break;
128 }
129 } else if (dev->msi_enabled) {
130 entry = irq_get_msi_desc(irq);
131 }
132
133 if (entry)
134 write_msi_msg(irq, &entry->msg);
135}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200136
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800137void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200138{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800139 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200140}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500141
Gavin Shane375b562013-04-04 16:54:30 +0000142static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800143{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800144 u16 control;
145
Gavin Shane375b562013-04-04 16:54:30 +0000146 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600147 control &= ~PCI_MSI_FLAGS_ENABLE;
148 if (enable)
149 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000150 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900151}
152
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800153static void msix_set_enable(struct pci_dev *dev, int enable)
154{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800155 u16 control;
156
Gavin Shane375b562013-04-04 16:54:30 +0000157 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
158 control &= ~PCI_MSIX_FLAGS_ENABLE;
159 if (enable)
160 control |= PCI_MSIX_FLAGS_ENABLE;
161 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800162}
163
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500164static inline __attribute_const__ u32 msi_mask(unsigned x)
165{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700166 /* Don't shift by >= width of type */
167 if (x >= 5)
168 return 0xffffffff;
169 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500170}
171
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400172static inline __attribute_const__ u32 msi_capable_mask(u16 control)
Mitch Williams988cbb12007-03-30 11:54:08 -0700173{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400174 return msi_mask((control >> 1) & 7);
175}
Mitch Williams988cbb12007-03-30 11:54:08 -0700176
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400177static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
178{
179 return msi_mask((control >> 4) & 7);
Mitch Williams988cbb12007-03-30 11:54:08 -0700180}
181
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600182/*
183 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
184 * mask all MSI interrupts by clearing the MSI enable bit does not work
185 * reliably as devices without an INTx disable bit will then generate a
186 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600187 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500188u32 default_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400190 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400192 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900193 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400194
195 mask_bits &= ~mask;
196 mask_bits |= flag;
197 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900198
199 return mask_bits;
200}
201
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500202__weak u32 arch_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
203{
204 return default_msi_mask_irq(desc, mask, flag);
205}
206
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900207static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
208{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500209 desc->masked = arch_msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400210}
211
212/*
213 * This internal function does not flush PCI writes to the device.
214 * All users must ensure that they read from the device before either
215 * assuming that the device state is up to date, or returning out of this
216 * file. This saves a few milliseconds when initialising devices with lots
217 * of MSI-X interrupts.
218 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500219u32 default_msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400220{
221 u32 mask_bits = desc->masked;
222 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900223 PCI_MSIX_ENTRY_VECTOR_CTRL;
Sheng Yang8d805282010-11-11 15:46:55 +0800224 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
225 if (flag)
226 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400227 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900228
229 return mask_bits;
230}
231
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500232__weak u32 arch_msix_mask_irq(struct msi_desc *desc, u32 flag)
233{
234 return default_msix_mask_irq(desc, flag);
235}
236
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900237static void msix_mask_irq(struct msi_desc *desc, u32 flag)
238{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500239 desc->masked = arch_msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400240}
241
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200242static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400243{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200244 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400245
246 if (desc->msi_attrib.is_msix) {
247 msix_mask_irq(desc, flag);
248 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400249 } else {
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200250 unsigned offset = data->irq - desc->dev->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400251 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400253}
254
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200255void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400256{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200257 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400258}
259
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200260void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400261{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200262 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800265void default_restore_msi_irqs(struct pci_dev *dev)
266{
267 struct msi_desc *entry;
268
269 list_for_each_entry(entry, &dev->msi_list, list) {
270 default_restore_msi_irq(dev, entry->irq);
271 }
272}
273
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200274void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700275{
Ben Hutchings30da5522010-07-23 14:56:28 +0100276 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700277
Ben Hutchings30da5522010-07-23 14:56:28 +0100278 if (entry->msi_attrib.is_msix) {
279 void __iomem *base = entry->mask_base +
280 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
281
282 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
283 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
284 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
285 } else {
286 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600287 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100288 u16 data;
289
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600290 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
291 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100292 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600293 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
294 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600295 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100296 } else {
297 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600298 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100299 }
300 msg->data = data;
301 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700302}
303
Yinghai Lu3145e942008-12-05 18:58:34 -0800304void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700305{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200306 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800307
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200308 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800309}
310
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200311void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100312{
Ben Hutchings30da5522010-07-23 14:56:28 +0100313 /* Assert that the cache is valid, assuming that
314 * valid messages are not all-zeroes. */
315 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
316 entry->msg.data));
317
318 *msg = entry->msg;
319}
320
321void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
322{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200323 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100324
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200325 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100326}
327
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200328void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800329{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100330 if (entry->dev->current_state != PCI_D0) {
331 /* Don't touch the hardware now */
332 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400333 void __iomem *base;
334 base = entry->mask_base +
335 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
336
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900337 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
338 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
339 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400340 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700341 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600342 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400343 u16 msgctl;
344
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600345 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400346 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
347 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600348 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700349
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600350 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
351 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700352 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600353 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
354 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600355 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
356 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700357 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600358 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
359 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700360 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700361 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700362 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700363}
364
Yinghai Lu3145e942008-12-05 18:58:34 -0800365void write_msi_msg(unsigned int irq, struct msi_msg *msg)
366{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200367 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800368
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200369 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800370}
371
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900372static void free_msi_irqs(struct pci_dev *dev)
373{
374 struct msi_desc *entry, *tmp;
375
376 list_for_each_entry(entry, &dev->msi_list, list) {
377 int i, nvec;
378 if (!entry->irq)
379 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200380 if (entry->nvec_used)
381 nvec = entry->nvec_used;
382 else
383 nvec = 1 << entry->msi_attrib.multiple;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900384 for (i = 0; i < nvec; i++)
385 BUG_ON(irq_has_action(entry->irq + i));
386 }
387
388 arch_teardown_msi_irqs(dev);
389
390 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
391 if (entry->msi_attrib.is_msix) {
392 if (list_is_last(&entry->list, &dev->msi_list))
393 iounmap(entry->mask_base);
394 }
Neil Horman424eb392012-01-03 10:29:54 -0500395
396 /*
397 * Its possible that we get into this path
398 * When populate_msi_sysfs fails, which means the entries
399 * were not registered with sysfs. In that case don't
400 * unregister them.
401 */
402 if (entry->kobj.parent) {
403 kobject_del(&entry->kobj);
404 kobject_put(&entry->kobj);
405 }
406
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900407 list_del(&entry->list);
408 kfree(entry);
409 }
410}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900411
Matthew Wilcox379f5322009-03-17 08:54:07 -0400412static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400414 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
415 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return NULL;
417
Matthew Wilcox379f5322009-03-17 08:54:07 -0400418 INIT_LIST_HEAD(&desc->list);
419 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Matthew Wilcox379f5322009-03-17 08:54:07 -0400421 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
David Millerba698ad2007-10-25 01:16:30 -0700424static void pci_intx_for_msi(struct pci_dev *dev, int enable)
425{
426 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
427 pci_intx(dev, enable);
428}
429
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100430static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800431{
Shaohua Li41017f02006-02-08 17:11:38 +0800432 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700433 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800434
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800435 if (!dev->msi_enabled)
436 return;
437
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200438 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800439
David Millerba698ad2007-10-25 01:16:30 -0700440 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000441 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800442 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700443
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600444 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400445 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700446 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400447 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600448 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100449}
450
451static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800452{
Shaohua Li41017f02006-02-08 17:11:38 +0800453 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700454 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800455
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700456 if (!dev->msix_enabled)
457 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700458 BUG_ON(list_empty(&dev->msi_list));
Hidetoshi Seto9cc8d542009-08-06 11:32:04 +0900459 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600460 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700461
Shaohua Li41017f02006-02-08 17:11:38 +0800462 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700463 pci_intx_for_msi(dev, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700464 control |= PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600465 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800466
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800467 arch_restore_msi_irqs(dev);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000468 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400469 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800470 }
Shaohua Li41017f02006-02-08 17:11:38 +0800471
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700472 control &= ~PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600473 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800474}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100475
476void pci_restore_msi_state(struct pci_dev *dev)
477{
478 __pci_restore_msi_state(dev);
479 __pci_restore_msix_state(dev);
480}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600481EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800482
Neil Hormanda8d1c82011-10-06 14:08:18 -0400483
484#define to_msi_attr(obj) container_of(obj, struct msi_attribute, attr)
485#define to_msi_desc(obj) container_of(obj, struct msi_desc, kobj)
486
487struct msi_attribute {
488 struct attribute attr;
489 ssize_t (*show)(struct msi_desc *entry, struct msi_attribute *attr,
490 char *buf);
491 ssize_t (*store)(struct msi_desc *entry, struct msi_attribute *attr,
492 const char *buf, size_t count);
493};
494
495static ssize_t show_msi_mode(struct msi_desc *entry, struct msi_attribute *atr,
496 char *buf)
497{
498 return sprintf(buf, "%s\n", entry->msi_attrib.is_msix ? "msix" : "msi");
499}
500
501static ssize_t msi_irq_attr_show(struct kobject *kobj,
502 struct attribute *attr, char *buf)
503{
504 struct msi_attribute *attribute = to_msi_attr(attr);
505 struct msi_desc *entry = to_msi_desc(kobj);
506
507 if (!attribute->show)
508 return -EIO;
509
510 return attribute->show(entry, attribute, buf);
511}
512
513static const struct sysfs_ops msi_irq_sysfs_ops = {
514 .show = msi_irq_attr_show,
515};
516
517static struct msi_attribute mode_attribute =
518 __ATTR(mode, S_IRUGO, show_msi_mode, NULL);
519
520
Bjorn Helgaas9738abe2013-04-12 11:20:03 -0600521static struct attribute *msi_irq_default_attrs[] = {
Neil Hormanda8d1c82011-10-06 14:08:18 -0400522 &mode_attribute.attr,
523 NULL
524};
525
Bjorn Helgaas9738abe2013-04-12 11:20:03 -0600526static void msi_kobj_release(struct kobject *kobj)
Neil Hormanda8d1c82011-10-06 14:08:18 -0400527{
528 struct msi_desc *entry = to_msi_desc(kobj);
529
530 pci_dev_put(entry->dev);
531}
532
533static struct kobj_type msi_irq_ktype = {
534 .release = msi_kobj_release,
535 .sysfs_ops = &msi_irq_sysfs_ops,
536 .default_attrs = msi_irq_default_attrs,
537};
538
539static int populate_msi_sysfs(struct pci_dev *pdev)
540{
541 struct msi_desc *entry;
542 struct kobject *kobj;
543 int ret;
544 int count = 0;
545
546 pdev->msi_kset = kset_create_and_add("msi_irqs", NULL, &pdev->dev.kobj);
547 if (!pdev->msi_kset)
548 return -ENOMEM;
549
550 list_for_each_entry(entry, &pdev->msi_list, list) {
551 kobj = &entry->kobj;
552 kobj->kset = pdev->msi_kset;
553 pci_dev_get(pdev);
554 ret = kobject_init_and_add(kobj, &msi_irq_ktype, NULL,
555 "%u", entry->irq);
556 if (ret)
557 goto out_unroll;
558
559 count++;
560 }
561
562 return 0;
563
564out_unroll:
565 list_for_each_entry(entry, &pdev->msi_list, list) {
566 if (!count)
567 break;
568 kobject_del(&entry->kobj);
569 kobject_put(&entry->kobj);
570 count--;
571 }
572 return ret;
573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/**
576 * msi_capability_init - configure device's MSI capability structure
577 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400578 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400580 * Setup the MSI capability structure of the device with the requested
581 * number of interrupts. A return value of zero indicates the successful
582 * setup of an entry with the new MSI irq. A negative return value indicates
583 * an error, and a positive return value indicates the number of interrupts
584 * which could have been allocated.
585 */
586static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000589 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 u16 control;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400591 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Gavin Shane375b562013-04-04 16:54:30 +0000593 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600594
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600595 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400597 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700598 if (!entry)
599 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700600
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900601 entry->msi_attrib.is_msix = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600602 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900603 entry->msi_attrib.entry_nr = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600604 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900605 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Gavin Shanf4651362013-04-04 16:54:32 +0000606 entry->msi_attrib.pos = dev->msi_cap;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900607
Dan Carpentere5f66ea2013-04-30 10:44:54 +0300608 if (control & PCI_MSI_FLAGS_64BIT)
609 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
610 else
611 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400612 /* All MSIs are unmasked by default, Mask them all */
613 if (entry->msi_attrib.maskbit)
614 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
615 mask = msi_capable_mask(control);
616 msi_mask_irq(entry, mask, mask);
617
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700618 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400621 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000622 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900623 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900624 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000625 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500626 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700627
Neil Hormanda8d1c82011-10-06 14:08:18 -0400628 ret = populate_msi_sysfs(dev);
629 if (ret) {
630 msi_mask_irq(entry, mask, ~mask);
631 free_msi_irqs(dev);
632 return ret;
633 }
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700636 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000637 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800638 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Michael Ellerman7fe37302007-04-18 19:39:21 +1000640 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return 0;
642}
643
Gavin Shan520fe9d2013-04-04 16:54:33 +0000644static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900645{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900646 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900647 u32 table_offset;
648 u8 bir;
649
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600650 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
651 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600652 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
653 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900654 phys_addr = pci_resource_start(dev, bir) + table_offset;
655
656 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
657}
658
Gavin Shan520fe9d2013-04-04 16:54:33 +0000659static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
660 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900661{
662 struct msi_desc *entry;
663 int i;
664
665 for (i = 0; i < nvec; i++) {
666 entry = alloc_msi_entry(dev);
667 if (!entry) {
668 if (!i)
669 iounmap(base);
670 else
671 free_msi_irqs(dev);
672 /* No enough memory. Don't try again */
673 return -ENOMEM;
674 }
675
676 entry->msi_attrib.is_msix = 1;
677 entry->msi_attrib.is_64 = 1;
678 entry->msi_attrib.entry_nr = entries[i].entry;
679 entry->msi_attrib.default_irq = dev->irq;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000680 entry->msi_attrib.pos = dev->msix_cap;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900681 entry->mask_base = base;
682
683 list_add_tail(&entry->list, &dev->msi_list);
684 }
685
686 return 0;
687}
688
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900689static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000690 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900691{
692 struct msi_desc *entry;
693 int i = 0;
694
695 list_for_each_entry(entry, &dev->msi_list, list) {
696 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
697 PCI_MSIX_ENTRY_VECTOR_CTRL;
698
699 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200700 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900701 entry->masked = readl(entry->mask_base + offset);
702 msix_mask_irq(entry, 1);
703 i++;
704 }
705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/**
708 * msix_capability_init - configure device's MSI-X capability
709 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700710 * @entries: pointer to an array of struct msix_entry entries
711 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600713 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700714 * single MSI-X irq. A return of zero indicates the successful setup of
715 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 **/
717static int msix_capability_init(struct pci_dev *dev,
718 struct msix_entry *entries, int nvec)
719{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000720 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900721 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 void __iomem *base;
723
Gavin Shan520fe9d2013-04-04 16:54:33 +0000724 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700725
726 /* Ensure MSI-X is disabled while it is set up */
727 control &= ~PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000728 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600731 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900732 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return -ENOMEM;
734
Gavin Shan520fe9d2013-04-04 16:54:33 +0000735 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900736 if (ret)
737 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000738
739 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900740 if (ret)
741 goto error;
Michael Ellerman9c831332007-04-18 19:39:21 +1000742
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700743 /*
744 * Some devices require MSI-X to be enabled before we can touch the
745 * MSI-X registers. We need to mask all the vectors to prevent
746 * interrupts coming in before they're fully set up.
747 */
748 control |= PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000749 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700750
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900751 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700752
Neil Hormanda8d1c82011-10-06 14:08:18 -0400753 ret = populate_msi_sysfs(dev);
754 if (ret) {
755 ret = 0;
756 goto error;
757 }
758
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700759 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700760 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800761 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700763 control &= ~PCI_MSIX_FLAGS_MASKALL;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000764 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900767
768error:
769 if (ret < 0) {
770 /*
771 * If we had some success, report the number of irqs
772 * we succeeded in setting up.
773 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900774 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900775 int avail = 0;
776
777 list_for_each_entry(entry, &dev->msi_list, list) {
778 if (entry->irq != 0)
779 avail++;
780 }
781 if (avail != 0)
782 ret = avail;
783 }
784
785 free_msi_irqs(dev);
786
787 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000791 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400792 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000793 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100794 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400795 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700796 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000797 * to determine if MSI/-X are supported for the device. If MSI/-X is
798 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400799 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900800static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400801{
802 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000803 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400804
Brice Goglin0306ebf2006-10-05 10:24:31 +0200805 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400806 if (!pci_msi_enable || !dev || dev->no_msi)
807 return -EINVAL;
808
Michael Ellerman314e77b2007-04-05 17:19:12 +1000809 /*
810 * You can't ask to have 0 or less MSIs configured.
811 * a) it's stupid ..
812 * b) the list manipulation code assumes nvec >= 1.
813 */
814 if (nvec < 1)
815 return -ERANGE;
816
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900817 /*
818 * Any bridge which does NOT route MSI transactions from its
819 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200820 * the secondary pci_bus.
821 * We expect only arch-specific PCI host bus controller driver
822 * or quirks for specific PCI bridges to be setting NO_MSI.
823 */
Brice Goglin24334a12006-08-31 01:55:07 -0400824 for (bus = dev->bus; bus; bus = bus->parent)
825 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
826 return -EINVAL;
827
Michael Ellermanc9953a72007-04-05 17:19:08 +1000828 ret = arch_msi_check_device(dev, nvec, type);
829 if (ret)
830 return ret;
831
Brice Goglin24334a12006-08-31 01:55:07 -0400832 return 0;
833}
834
835/**
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400836 * pci_enable_msi_block - configure device's MSI capability structure
837 * @dev: device to configure
838 * @nvec: number of interrupts to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400840 * Allocate IRQs for a device with the MSI capability.
841 * This function returns a negative errno if an error occurs. If it
842 * is unable to allocate the number of interrupts requested, it returns
843 * the number of interrupts it might be able to allocate. If it successfully
844 * allocates at least the number of interrupts requested, it returns 0 and
845 * updates the @dev's irq member to the lowest new interrupt number; the
846 * other interrupt numbers allocated to this device are consecutive.
847 */
848int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Gavin Shanf4651362013-04-04 16:54:32 +0000850 int status, maxvec;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400851 u16 msgctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Yijing Wang869a1612013-10-10 20:58:11 +0800853 if (!dev->msi_cap || dev->current_state != PCI_D0)
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400854 return -EINVAL;
Gavin Shanf4651362013-04-04 16:54:32 +0000855
856 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400857 maxvec = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
858 if (nvec > maxvec)
859 return maxvec;
860
861 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellermanc9953a72007-04-05 17:19:08 +1000862 if (status)
863 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700865 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400867 /* Check whether driver already requested MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800868 if (dev->msix_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600869 dev_info(&dev->dev, "can't enable MSI "
870 "(MSI-X already enabled)\n");
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800871 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400873
874 status = msi_capability_init(dev, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return status;
876}
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400877EXPORT_SYMBOL(pci_enable_msi_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Alexander Gordeev08261d82012-11-19 16:02:10 +0100879int pci_enable_msi_block_auto(struct pci_dev *dev, unsigned int *maxvec)
880{
Gavin Shanf4651362013-04-04 16:54:32 +0000881 int ret, nvec;
Alexander Gordeev08261d82012-11-19 16:02:10 +0100882 u16 msgctl;
883
Yijing Wang869a1612013-10-10 20:58:11 +0800884 if (!dev->msi_cap || dev->current_state != PCI_D0)
Alexander Gordeev08261d82012-11-19 16:02:10 +0100885 return -EINVAL;
886
Gavin Shanf4651362013-04-04 16:54:32 +0000887 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
Alexander Gordeev08261d82012-11-19 16:02:10 +0100888 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
889
890 if (maxvec)
891 *maxvec = ret;
892
893 do {
894 nvec = ret;
895 ret = pci_enable_msi_block(dev, nvec);
896 } while (ret > 0);
897
898 if (ret < 0)
899 return ret;
900 return nvec;
901}
902EXPORT_SYMBOL(pci_enable_msi_block_auto);
903
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400904void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400906 struct msi_desc *desc;
907 u32 mask;
908 u16 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100910 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700911 return;
912
Matthew Wilcox110828c2009-06-16 06:31:45 -0600913 BUG_ON(list_empty(&dev->msi_list));
914 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600915
Gavin Shane375b562013-04-04 16:54:30 +0000916 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700917 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800918 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700919
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900920 /* Return the device with MSI unmasked as initial states */
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600921 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400922 mask = msi_capable_mask(ctrl);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900923 /* Keep cached state to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500924 arch_msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100925
926 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400927 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700928}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400929
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900930void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700931{
Yinghai Lud52877c2008-04-23 14:58:09 -0700932 if (!pci_msi_enable || !dev || !dev->msi_enabled)
933 return;
934
935 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900936 free_msi_irqs(dev);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400937 kset_unregister(dev->msi_kset);
938 dev->msi_kset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100940EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/**
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100943 * pci_msix_table_size - return the number of device's MSI-X table entries
944 * @dev: pointer to the pci_dev data structure of MSI-X device function
945 */
946int pci_msix_table_size(struct pci_dev *dev)
947{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100948 u16 control;
949
Gavin Shan520fe9d2013-04-04 16:54:33 +0000950 if (!dev->msix_cap)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100951 return 0;
952
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600953 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600954 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100955}
956
957/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * pci_enable_msix - configure device's MSI-X capability structure
959 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700960 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700961 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 *
963 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700964 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * MSI-X mode enabled on its hardware device function. A return of zero
966 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700967 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300969 * of irqs or MSI-X vectors available. Driver should use the returned value to
970 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900972int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100974 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700975 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Yijing Wang869a1612013-10-10 20:58:11 +0800977 if (!entries || !dev->msix_cap || dev->current_state != PCI_D0)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900978 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Michael Ellermanc9953a72007-04-05 17:19:08 +1000980 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
981 if (status)
982 return status;
983
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100984 nr_entries = pci_msix_table_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300986 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 /* Check for any invalid entries */
989 for (i = 0; i < nvec; i++) {
990 if (entries[i].entry >= nr_entries)
991 return -EINVAL; /* invalid entry */
992 for (j = i + 1; j < nvec; j++) {
993 if (entries[i].entry == entries[j].entry)
994 return -EINVAL; /* duplicate entry */
995 }
996 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700997 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700998
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700999 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001000 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001001 dev_info(&dev->dev, "can't enable MSI-X "
1002 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return -EINVAL;
1004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return status;
1007}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001008EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001010void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +11001011{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001012 struct msi_desc *entry;
1013
Michael Ellerman128bc5f2007-03-22 21:51:39 +11001014 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -07001015 return;
1016
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001017 /* Return the device with MSI-X masked as initial states */
1018 list_for_each_entry(entry, &dev->msi_list, list) {
1019 /* Keep cached states to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -05001020 arch_msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001021 }
1022
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001023 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -07001024 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001025 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001026}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001027
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001028void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001029{
1030 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1031 return;
1032
1033 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001034 free_msi_irqs(dev);
Neil Hormanda8d1c82011-10-06 14:08:18 -04001035 kset_unregister(dev->msi_kset);
1036 dev->msi_kset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001038EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001041 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 * @dev: pointer to the pci_dev data structure of MSI(X) device function
1043 *
Steven Coleeaae4b32005-05-03 18:38:30 -06001044 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001045 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 * allocated for this device function, are reclaimed to unused state,
1047 * which may be used later on.
1048 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001049void msi_remove_pci_irq_vectors(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (!pci_msi_enable || !dev)
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001052 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001054 if (dev->msi_enabled || dev->msix_enabled)
1055 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001058void pci_no_msi(void)
1059{
1060 pci_msi_enable = 0;
1061}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001062
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001063/**
1064 * pci_msi_enabled - is MSI enabled?
1065 *
1066 * Returns true if MSI has not been disabled by the command-line option
1067 * pci=nomsi.
1068 **/
1069int pci_msi_enabled(void)
1070{
1071 return pci_msi_enable;
1072}
1073EXPORT_SYMBOL(pci_msi_enabled);
1074
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001075void pci_msi_init_pci_dev(struct pci_dev *dev)
1076{
1077 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001078
1079 /* Disable the msi hardware to avoid screaming interrupts
1080 * during boot. This is the power on reset default so
1081 * usually this should be a noop.
1082 */
Gavin Shane375b562013-04-04 16:54:30 +00001083 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1084 if (dev->msi_cap)
1085 msi_set_enable(dev, 0);
1086
1087 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1088 if (dev->msix_cap)
1089 msix_set_enable(dev, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001090}