blob: 0260f39332111fe49f112c9cc25c0682b0eda570 [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
Thomas Petazzoni4287d822013-08-09 22:27:06 +020033int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
34{
Yijing Wangc2791b82014-11-11 17:45:45 -070035 struct msi_controller *chip = dev->bus->msi;
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020036 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{
Yijing Wangc2791b82014-11-11 17:45:45 -070052 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020053
54 if (!chip || !chip->teardown_irq)
55 return;
56
57 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +020058}
59
Thomas Petazzoni4287d822013-08-09 22:27:06 +020060int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010061{
62 struct msi_desc *entry;
63 int ret;
64
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040065 /*
66 * If an architecture wants to support multiple MSI, it needs to
67 * override arch_setup_msi_irqs()
68 */
69 if (type == PCI_CAP_ID_MSI && nvec > 1)
70 return 1;
71
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010072 list_for_each_entry(entry, &dev->msi_list, list) {
73 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110074 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010075 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110076 if (ret > 0)
77 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010078 }
79
80 return 0;
81}
82
Thomas Petazzoni4287d822013-08-09 22:27:06 +020083/*
84 * We have a default implementation available as a separate non-weak
85 * function, as it is used by the Xen x86 PCI code
86 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -040087void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010088{
89 struct msi_desc *entry;
90
91 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040092 int i, nvec;
93 if (entry->irq == 0)
94 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +020095 if (entry->nvec_used)
96 nvec = entry->nvec_used;
97 else
98 nvec = 1 << entry->msi_attrib.multiple;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040099 for (i = 0; i < nvec; i++)
100 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100101 }
102}
103
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200104void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
105{
106 return default_teardown_msi_irqs(dev);
107}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500108
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800109static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500110{
111 struct msi_desc *entry;
112
113 entry = NULL;
114 if (dev->msix_enabled) {
115 list_for_each_entry(entry, &dev->msi_list, list) {
116 if (irq == entry->irq)
117 break;
118 }
119 } else if (dev->msi_enabled) {
120 entry = irq_get_msi_desc(irq);
121 }
122
123 if (entry)
Yijing Wang56b72b42014-09-29 18:35:16 -0600124 __write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500125}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200126
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800127void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200128{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800129 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200130}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500131
Gavin Shane375b562013-04-04 16:54:30 +0000132static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800133{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800134 u16 control;
135
Gavin Shane375b562013-04-04 16:54:30 +0000136 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600137 control &= ~PCI_MSI_FLAGS_ENABLE;
138 if (enable)
139 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000140 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900141}
142
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800143static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800144{
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800145 u16 ctrl;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800146
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800147 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
148 ctrl &= ~clear;
149 ctrl |= set;
150 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800151}
152
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500153static inline __attribute_const__ u32 msi_mask(unsigned x)
154{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700155 /* Don't shift by >= width of type */
156 if (x >= 5)
157 return 0xffffffff;
158 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500159}
160
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600161/*
162 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
163 * mask all MSI interrupts by clearing the MSI enable bit does not work
164 * reliably as devices without an INTx disable bit will then generate a
165 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600166 */
Yijing Wang03f56e42014-10-27 10:44:37 +0800167u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400169 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Yijing Wang38737d82014-10-27 10:44:36 +0800171 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900172 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400173
174 mask_bits &= ~mask;
175 mask_bits |= flag;
176 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900177
178 return mask_bits;
179}
180
181static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
182{
Yijing Wang03f56e42014-10-27 10:44:37 +0800183 desc->masked = __msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400184}
185
186/*
187 * This internal function does not flush PCI writes to the device.
188 * All users must ensure that they read from the device before either
189 * assuming that the device state is up to date, or returning out of this
190 * file. This saves a few milliseconds when initialising devices with lots
191 * of MSI-X interrupts.
192 */
Yijing Wang03f56e42014-10-27 10:44:37 +0800193u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400194{
195 u32 mask_bits = desc->masked;
196 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900197 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800198
199 if (pci_msi_ignore_mask)
200 return 0;
201
Sheng Yang8d805282010-11-11 15:46:55 +0800202 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
203 if (flag)
204 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400205 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900206
207 return mask_bits;
208}
209
210static void msix_mask_irq(struct msi_desc *desc, u32 flag)
211{
Yijing Wang03f56e42014-10-27 10:44:37 +0800212 desc->masked = __msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400213}
214
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200215static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400216{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200217 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400218
219 if (desc->msi_attrib.is_msix) {
220 msix_mask_irq(desc, flag);
221 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400222 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800223 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400224 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400226}
227
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200228void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400229{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200230 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400231}
232
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200233void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400234{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200235 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800238void default_restore_msi_irqs(struct pci_dev *dev)
239{
240 struct msi_desc *entry;
241
242 list_for_each_entry(entry, &dev->msi_list, list) {
243 default_restore_msi_irq(dev, entry->irq);
244 }
245}
246
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200247void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700248{
Ben Hutchings30da5522010-07-23 14:56:28 +0100249 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700250
Ben Hutchings30da5522010-07-23 14:56:28 +0100251 if (entry->msi_attrib.is_msix) {
252 void __iomem *base = entry->mask_base +
253 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
254
255 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
256 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
257 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
258 } else {
259 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600260 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100261 u16 data;
262
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600263 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
264 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100265 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600266 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
267 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600268 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100269 } else {
270 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600271 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100272 }
273 msg->data = data;
274 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700275}
276
Yinghai Lu3145e942008-12-05 18:58:34 -0800277void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700278{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200279 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800280
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200281 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800282}
283
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200284void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100285{
Ben Hutchings30da5522010-07-23 14:56:28 +0100286 /* Assert that the cache is valid, assuming that
287 * valid messages are not all-zeroes. */
288 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
289 entry->msg.data));
290
291 *msg = entry->msg;
292}
293
294void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
295{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200296 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100297
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200298 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100299}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600300EXPORT_SYMBOL_GPL(get_cached_msi_msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100301
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200302void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800303{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100304 if (entry->dev->current_state != PCI_D0) {
305 /* Don't touch the hardware now */
306 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400307 void __iomem *base;
308 base = entry->mask_base +
309 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
310
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900311 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
312 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
313 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400314 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700315 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600316 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400317 u16 msgctl;
318
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600319 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400320 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
321 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600322 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700323
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600324 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
325 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700326 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600327 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
328 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600329 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
330 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700331 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600332 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
333 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700334 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700335 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700336 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700337}
338
Yinghai Lu3145e942008-12-05 18:58:34 -0800339void write_msi_msg(unsigned int irq, struct msi_msg *msg)
340{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200341 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800342
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200343 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800344}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600345EXPORT_SYMBOL_GPL(write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800346
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900347static void free_msi_irqs(struct pci_dev *dev)
348{
349 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800350 struct attribute **msi_attrs;
351 struct device_attribute *dev_attr;
352 int count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900353
354 list_for_each_entry(entry, &dev->msi_list, list) {
355 int i, nvec;
356 if (!entry->irq)
357 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200358 if (entry->nvec_used)
359 nvec = entry->nvec_used;
360 else
361 nvec = 1 << entry->msi_attrib.multiple;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900362 for (i = 0; i < nvec; i++)
363 BUG_ON(irq_has_action(entry->irq + i));
364 }
365
366 arch_teardown_msi_irqs(dev);
367
368 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
369 if (entry->msi_attrib.is_msix) {
370 if (list_is_last(&entry->list, &dev->msi_list))
371 iounmap(entry->mask_base);
372 }
Neil Horman424eb392012-01-03 10:29:54 -0500373
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900374 list_del(&entry->list);
375 kfree(entry);
376 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800377
378 if (dev->msi_irq_groups) {
379 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
380 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700381 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800382 dev_attr = container_of(msi_attrs[count],
383 struct device_attribute, attr);
384 kfree(dev_attr->attr.name);
385 kfree(dev_attr);
386 ++count;
387 }
388 kfree(msi_attrs);
389 kfree(dev->msi_irq_groups[0]);
390 kfree(dev->msi_irq_groups);
391 dev->msi_irq_groups = NULL;
392 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900393}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900394
Matthew Wilcox379f5322009-03-17 08:54:07 -0400395static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400397 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
398 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return NULL;
400
Matthew Wilcox379f5322009-03-17 08:54:07 -0400401 INIT_LIST_HEAD(&desc->list);
402 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Matthew Wilcox379f5322009-03-17 08:54:07 -0400404 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
David Millerba698ad2007-10-25 01:16:30 -0700407static void pci_intx_for_msi(struct pci_dev *dev, int enable)
408{
409 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
410 pci_intx(dev, enable);
411}
412
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100413static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800414{
Shaohua Li41017f02006-02-08 17:11:38 +0800415 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700416 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800417
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800418 if (!dev->msi_enabled)
419 return;
420
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200421 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800422
David Millerba698ad2007-10-25 01:16:30 -0700423 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000424 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800425 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700426
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600427 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800428 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
429 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700430 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400431 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600432 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100433}
434
435static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800436{
Shaohua Li41017f02006-02-08 17:11:38 +0800437 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800438
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700439 if (!dev->msix_enabled)
440 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700441 BUG_ON(list_empty(&dev->msi_list));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700442
Shaohua Li41017f02006-02-08 17:11:38 +0800443 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700444 pci_intx_for_msi(dev, 0);
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800445 msix_clear_and_set_ctrl(dev, 0,
446 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800447
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800448 arch_restore_msi_irqs(dev);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000449 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400450 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800451 }
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 */
Neil Hormanda8d1c82011-10-06 14:08:18 -0400495 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800496 ++num_msi;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400497 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800498 if (!num_msi)
499 return 0;
500
501 /* Dynamically create the MSI attributes for the PCI device */
502 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
503 if (!msi_attrs)
504 return -ENOMEM;
505 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700506 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600507 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700508 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600509 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700510
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800511 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600512 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
513 entry->irq);
514 if (!msi_dev_attr->attr.name)
515 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800516 msi_dev_attr->attr.mode = S_IRUGO;
517 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800518 ++count;
519 }
520
521 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
522 if (!msi_irq_group)
523 goto error_attrs;
524 msi_irq_group->name = "msi_irqs";
525 msi_irq_group->attrs = msi_attrs;
526
527 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
528 if (!msi_irq_groups)
529 goto error_irq_group;
530 msi_irq_groups[0] = msi_irq_group;
531
532 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
533 if (ret)
534 goto error_irq_groups;
535 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400536
537 return 0;
538
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800539error_irq_groups:
540 kfree(msi_irq_groups);
541error_irq_group:
542 kfree(msi_irq_group);
543error_attrs:
544 count = 0;
545 msi_attr = msi_attrs[count];
546 while (msi_attr) {
547 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
548 kfree(msi_attr->name);
549 kfree(msi_dev_attr);
550 ++count;
551 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400552 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700553 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400554 return ret;
555}
556
Yijing Wangd873b4d2014-07-08 10:07:23 +0800557static struct msi_desc *msi_setup_entry(struct pci_dev *dev)
558{
559 u16 control;
560 struct msi_desc *entry;
561
562 /* MSI Entry Initialization */
563 entry = alloc_msi_entry(dev);
564 if (!entry)
565 return NULL;
566
567 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
568
569 entry->msi_attrib.is_msix = 0;
570 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
571 entry->msi_attrib.entry_nr = 0;
572 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
573 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800574 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
575
576 if (control & PCI_MSI_FLAGS_64BIT)
577 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
578 else
579 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
580
581 /* Save the initial mask status */
582 if (entry->msi_attrib.maskbit)
583 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
584
585 return entry;
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/**
589 * msi_capability_init - configure device's MSI capability structure
590 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400591 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400593 * Setup the MSI capability structure of the device with the requested
594 * number of interrupts. A return value of zero indicates the successful
595 * setup of an entry with the new MSI irq. A negative return value indicates
596 * an error, and a positive return value indicates the number of interrupts
597 * which could have been allocated.
598 */
599static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000602 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400603 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Gavin Shane375b562013-04-04 16:54:30 +0000605 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600606
Yijing Wangd873b4d2014-07-08 10:07:23 +0800607 entry = msi_setup_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700608 if (!entry)
609 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700610
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400611 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800612 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400613 msi_mask_irq(entry, mask, mask);
614
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700615 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400618 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000619 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900620 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900621 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000622 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500623 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700624
Neil Hormanda8d1c82011-10-06 14:08:18 -0400625 ret = populate_msi_sysfs(dev);
626 if (ret) {
627 msi_mask_irq(entry, mask, ~mask);
628 free_msi_irqs(dev);
629 return ret;
630 }
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700633 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000634 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800635 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Michael Ellerman7fe37302007-04-18 19:39:21 +1000637 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639}
640
Gavin Shan520fe9d2013-04-04 16:54:33 +0000641static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900642{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900643 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900644 u32 table_offset;
645 u8 bir;
646
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600647 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
648 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600649 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
650 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900651 phys_addr = pci_resource_start(dev, bir) + table_offset;
652
653 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
654}
655
Gavin Shan520fe9d2013-04-04 16:54:33 +0000656static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
657 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900658{
659 struct msi_desc *entry;
660 int i;
661
662 for (i = 0; i < nvec; i++) {
663 entry = alloc_msi_entry(dev);
664 if (!entry) {
665 if (!i)
666 iounmap(base);
667 else
668 free_msi_irqs(dev);
669 /* No enough memory. Don't try again */
670 return -ENOMEM;
671 }
672
673 entry->msi_attrib.is_msix = 1;
674 entry->msi_attrib.is_64 = 1;
675 entry->msi_attrib.entry_nr = entries[i].entry;
676 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900677 entry->mask_base = base;
678
679 list_add_tail(&entry->list, &dev->msi_list);
680 }
681
682 return 0;
683}
684
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900685static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000686 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900687{
688 struct msi_desc *entry;
689 int i = 0;
690
691 list_for_each_entry(entry, &dev->msi_list, list) {
692 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
693 PCI_MSIX_ENTRY_VECTOR_CTRL;
694
695 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200696 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900697 entry->masked = readl(entry->mask_base + offset);
698 msix_mask_irq(entry, 1);
699 i++;
700 }
701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/**
704 * msix_capability_init - configure device's MSI-X capability
705 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700706 * @entries: pointer to an array of struct msix_entry entries
707 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600709 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700710 * single MSI-X irq. A return of zero indicates the successful setup of
711 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 **/
713static int msix_capability_init(struct pci_dev *dev,
714 struct msix_entry *entries, int nvec)
715{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000716 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900717 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 void __iomem *base;
719
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700720 /* Ensure MSI-X is disabled while it is set up */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800721 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700722
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800723 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600725 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900726 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return -ENOMEM;
728
Gavin Shan520fe9d2013-04-04 16:54:33 +0000729 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900730 if (ret)
731 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000732
733 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900734 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100735 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000736
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700737 /*
738 * Some devices require MSI-X to be enabled before we can touch the
739 * MSI-X registers. We need to mask all the vectors to prevent
740 * interrupts coming in before they're fully set up.
741 */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800742 msix_clear_and_set_ctrl(dev, 0,
743 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700744
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900745 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700746
Neil Hormanda8d1c82011-10-06 14:08:18 -0400747 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100748 if (ret)
749 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400750
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700751 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700752 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800753 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800755 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900758
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100759out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900760 if (ret < 0) {
761 /*
762 * If we had some success, report the number of irqs
763 * we succeeded in setting up.
764 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900765 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900766 int avail = 0;
767
768 list_for_each_entry(entry, &dev->msi_list, list) {
769 if (entry->irq != 0)
770 avail++;
771 }
772 if (avail != 0)
773 ret = avail;
774 }
775
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100776out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900777 free_msi_irqs(dev);
778
779 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600783 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400784 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000785 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400786 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700787 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000788 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600789 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400790 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600791static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400792{
793 struct pci_bus *bus;
794
Brice Goglin0306ebf2006-10-05 10:24:31 +0200795 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600796 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600797 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600798
799 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600800 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400801
Michael Ellerman314e77b2007-04-05 17:19:12 +1000802 /*
803 * You can't ask to have 0 or less MSIs configured.
804 * a) it's stupid ..
805 * b) the list manipulation code assumes nvec >= 1.
806 */
807 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600808 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000809
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900810 /*
811 * Any bridge which does NOT route MSI transactions from its
812 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200813 * the secondary pci_bus.
814 * We expect only arch-specific PCI host bus controller driver
815 * or quirks for specific PCI bridges to be setting NO_MSI.
816 */
Brice Goglin24334a12006-08-31 01:55:07 -0400817 for (bus = dev->bus; bus; bus = bus->parent)
818 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600819 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400820
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600821 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400822}
823
824/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100825 * pci_msi_vec_count - Return the number of MSI vectors a device can send
826 * @dev: device to report about
827 *
828 * This function returns the number of MSI vectors a device requested via
829 * Multiple Message Capable register. It returns a negative errno if the
830 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
831 * and returns a power of two, up to a maximum of 2^5 (32), according to the
832 * MSI specification.
833 **/
834int pci_msi_vec_count(struct pci_dev *dev)
835{
836 int ret;
837 u16 msgctl;
838
839 if (!dev->msi_cap)
840 return -EINVAL;
841
842 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
843 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
844
845 return ret;
846}
847EXPORT_SYMBOL(pci_msi_vec_count);
848
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400849void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400851 struct msi_desc *desc;
852 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100854 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700855 return;
856
Matthew Wilcox110828c2009-06-16 06:31:45 -0600857 BUG_ON(list_empty(&dev->msi_list));
858 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600859
Gavin Shane375b562013-04-04 16:54:30 +0000860 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700861 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800862 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700863
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900864 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800865 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900866 /* Keep cached state to be restored */
Yijing Wang03f56e42014-10-27 10:44:37 +0800867 __msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100868
869 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400870 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700871}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400872
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900873void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700874{
Yinghai Lud52877c2008-04-23 14:58:09 -0700875 if (!pci_msi_enable || !dev || !dev->msi_enabled)
876 return;
877
878 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900879 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100881EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100884 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100885 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100886 * This function returns the number of device's MSI-X table entries and
887 * therefore the number of MSI-X vectors device is capable of sending.
888 * It returns a negative errno if the device is not capable of sending MSI-X
889 * interrupts.
890 **/
891int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100892{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100893 u16 control;
894
Gavin Shan520fe9d2013-04-04 16:54:33 +0000895 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100896 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100897
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600898 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600899 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100900}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100901EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100902
903/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * pci_enable_msix - configure device's MSI-X capability structure
905 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700906 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700907 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 *
909 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700910 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 * MSI-X mode enabled on its hardware device function. A return of zero
912 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700913 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300915 * of irqs or MSI-X vectors available. Driver should use the returned value to
916 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900918int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600920 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700921 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600923 if (!pci_msi_supported(dev, nvec))
924 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000925
Alexander Gordeev27e20602014-09-23 14:25:11 -0600926 if (!entries)
927 return -EINVAL;
928
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100929 nr_entries = pci_msix_vec_count(dev);
930 if (nr_entries < 0)
931 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300933 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 /* Check for any invalid entries */
936 for (i = 0; i < nvec; i++) {
937 if (entries[i].entry >= nr_entries)
938 return -EINVAL; /* invalid entry */
939 for (j = i + 1; j < nvec; j++) {
940 if (entries[i].entry == entries[j].entry)
941 return -EINVAL; /* duplicate entry */
942 }
943 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700944 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700945
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700946 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900947 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400948 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return -EINVAL;
950 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600951 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100953EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900955void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100956{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900957 struct msi_desc *entry;
958
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100959 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700960 return;
961
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900962 /* Return the device with MSI-X masked as initial states */
963 list_for_each_entry(entry, &dev->msi_list, list) {
964 /* Keep cached states to be restored */
Yijing Wang03f56e42014-10-27 10:44:37 +0800965 __msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900966 }
967
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800968 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700969 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800970 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700971}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900972
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900973void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700974{
975 if (!pci_msi_enable || !dev || !dev->msix_enabled)
976 return;
977
978 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900979 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100981EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700983void pci_no_msi(void)
984{
985 pci_msi_enable = 0;
986}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000987
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700988/**
989 * pci_msi_enabled - is MSI enabled?
990 *
991 * Returns true if MSI has not been disabled by the command-line option
992 * pci=nomsi.
993 **/
994int pci_msi_enabled(void)
995{
996 return pci_msi_enable;
997}
998EXPORT_SYMBOL(pci_msi_enabled);
999
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001000void pci_msi_init_pci_dev(struct pci_dev *dev)
1001{
1002 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001003
1004 /* Disable the msi hardware to avoid screaming interrupts
1005 * during boot. This is the power on reset default so
1006 * usually this should be a noop.
1007 */
Gavin Shane375b562013-04-04 16:54:30 +00001008 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1009 if (dev->msi_cap)
1010 msi_set_enable(dev, 0);
1011
1012 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1013 if (dev->msix_cap)
Yijing Wang66f0d0c2014-06-19 16:29:53 +08001014 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001015}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001016
1017/**
1018 * pci_enable_msi_range - configure device's MSI capability structure
1019 * @dev: device to configure
1020 * @minvec: minimal number of interrupts to configure
1021 * @maxvec: maximum number of interrupts to configure
1022 *
1023 * This function tries to allocate a maximum possible number of interrupts in a
1024 * range between @minvec and @maxvec. It returns a negative errno if an error
1025 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1026 * and updates the @dev's irq member to the lowest new interrupt number;
1027 * the other interrupt numbers allocated to this device are consecutive.
1028 **/
1029int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1030{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001031 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001032 int rc;
1033
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001034 if (!pci_msi_supported(dev, minvec))
1035 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001036
1037 WARN_ON(!!dev->msi_enabled);
1038
1039 /* Check whether driver already requested MSI-X irqs */
1040 if (dev->msix_enabled) {
1041 dev_info(&dev->dev,
1042 "can't enable MSI (MSI-X already enabled)\n");
1043 return -EINVAL;
1044 }
1045
Alexander Gordeev302a2522013-12-30 08:28:16 +01001046 if (maxvec < minvec)
1047 return -ERANGE;
1048
Alexander Gordeev034cd972014-04-14 15:28:35 +02001049 nvec = pci_msi_vec_count(dev);
1050 if (nvec < 0)
1051 return nvec;
1052 else if (nvec < minvec)
1053 return -EINVAL;
1054 else if (nvec > maxvec)
1055 nvec = maxvec;
1056
Alexander Gordeev302a2522013-12-30 08:28:16 +01001057 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001058 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001059 if (rc < 0) {
1060 return rc;
1061 } else if (rc > 0) {
1062 if (rc < minvec)
1063 return -ENOSPC;
1064 nvec = rc;
1065 }
1066 } while (rc);
1067
1068 return nvec;
1069}
1070EXPORT_SYMBOL(pci_enable_msi_range);
1071
1072/**
1073 * pci_enable_msix_range - configure device's MSI-X capability structure
1074 * @dev: pointer to the pci_dev data structure of MSI-X device function
1075 * @entries: pointer to an array of MSI-X entries
1076 * @minvec: minimum number of MSI-X irqs requested
1077 * @maxvec: maximum number of MSI-X irqs requested
1078 *
1079 * Setup the MSI-X capability structure of device function with a maximum
1080 * possible number of interrupts in the range between @minvec and @maxvec
1081 * upon its software driver call to request for MSI-X mode enabled on its
1082 * hardware device function. It returns a negative errno if an error occurs.
1083 * If it succeeds, it returns the actual number of interrupts allocated and
1084 * indicates the successful configuration of MSI-X capability structure
1085 * with new allocated MSI-X interrupts.
1086 **/
1087int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1088 int minvec, int maxvec)
1089{
1090 int nvec = maxvec;
1091 int rc;
1092
1093 if (maxvec < minvec)
1094 return -ERANGE;
1095
1096 do {
1097 rc = pci_enable_msix(dev, entries, nvec);
1098 if (rc < 0) {
1099 return rc;
1100 } else if (rc > 0) {
1101 if (rc < minvec)
1102 return -ENOSPC;
1103 nvec = rc;
1104 }
1105 } while (rc);
1106
1107 return nvec;
1108}
1109EXPORT_SYMBOL(pci_enable_msix_range);