blob: 9fab30af0e75abdcec135707363951d7e9e26f8c [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Bjorn Helgaas527eee22013-04-17 17:44:48 -060027#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
28
29
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010030/* Arch hooks */
31
Thomas Petazzoni4287d822013-08-09 22:27:06 +020032int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
33{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020034 struct msi_chip *chip = dev->bus->msi;
35 int err;
36
37 if (!chip || !chip->setup_irq)
38 return -EINVAL;
39
40 err = chip->setup_irq(chip, dev, desc);
41 if (err < 0)
42 return err;
43
44 irq_set_chip_data(desc->irq, chip);
45
46 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020047}
48
49void __weak arch_teardown_msi_irq(unsigned int irq)
50{
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020051 struct msi_chip *chip = irq_get_chip_data(irq);
52
53 if (!chip || !chip->teardown_irq)
54 return;
55
56 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +020057}
58
Thomas Petazzoni4287d822013-08-09 22:27:06 +020059int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010060{
61 struct msi_desc *entry;
62 int ret;
63
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040064 /*
65 * If an architecture wants to support multiple MSI, it needs to
66 * override arch_setup_msi_irqs()
67 */
68 if (type == PCI_CAP_ID_MSI && nvec > 1)
69 return 1;
70
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010071 list_for_each_entry(entry, &dev->msi_list, list) {
72 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110073 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010074 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110075 if (ret > 0)
76 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010077 }
78
79 return 0;
80}
81
Thomas Petazzoni4287d822013-08-09 22:27:06 +020082/*
83 * We have a default implementation available as a separate non-weak
84 * function, as it is used by the Xen x86 PCI code
85 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -040086void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010087{
88 struct msi_desc *entry;
89
90 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040091 int i, nvec;
92 if (entry->irq == 0)
93 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +020094 if (entry->nvec_used)
95 nvec = entry->nvec_used;
96 else
97 nvec = 1 << entry->msi_attrib.multiple;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040098 for (i = 0; i < nvec; i++)
99 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100100 }
101}
102
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200103void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
104{
105 return default_teardown_msi_irqs(dev);
106}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500107
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800108static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500109{
110 struct msi_desc *entry;
111
112 entry = NULL;
113 if (dev->msix_enabled) {
114 list_for_each_entry(entry, &dev->msi_list, list) {
115 if (irq == entry->irq)
116 break;
117 }
118 } else if (dev->msi_enabled) {
119 entry = irq_get_msi_desc(irq);
120 }
121
122 if (entry)
Yijing Wang56b72b42014-09-29 18:35:16 -0600123 __write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500124}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200125
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800126void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200127{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800128 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200129}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500130
Gavin Shane375b562013-04-04 16:54:30 +0000131static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800132{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800133 u16 control;
134
Gavin Shane375b562013-04-04 16:54:30 +0000135 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600136 control &= ~PCI_MSI_FLAGS_ENABLE;
137 if (enable)
138 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000139 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900140}
141
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800142static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800143{
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800144 u16 ctrl;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800145
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800146 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
147 ctrl &= ~clear;
148 ctrl |= set;
149 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800150}
151
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500152static inline __attribute_const__ u32 msi_mask(unsigned x)
153{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700154 /* Don't shift by >= width of type */
155 if (x >= 5)
156 return 0xffffffff;
157 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500158}
159
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600160/*
161 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
162 * mask all MSI interrupts by clearing the MSI enable bit does not work
163 * reliably as devices without an INTx disable bit will then generate a
164 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600165 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500166u32 default_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400168 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400170 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900171 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400172
173 mask_bits &= ~mask;
174 mask_bits |= flag;
175 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900176
177 return mask_bits;
178}
179
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500180__weak u32 arch_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
181{
182 return default_msi_mask_irq(desc, mask, flag);
183}
184
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900185static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
186{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500187 desc->masked = arch_msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400188}
189
190/*
191 * This internal function does not flush PCI writes to the device.
192 * All users must ensure that they read from the device before either
193 * assuming that the device state is up to date, or returning out of this
194 * file. This saves a few milliseconds when initialising devices with lots
195 * of MSI-X interrupts.
196 */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500197u32 default_msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400198{
199 u32 mask_bits = desc->masked;
200 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900201 PCI_MSIX_ENTRY_VECTOR_CTRL;
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
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500210__weak u32 arch_msix_mask_irq(struct msi_desc *desc, u32 flag)
211{
212 return default_msix_mask_irq(desc, flag);
213}
214
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900215static void msix_mask_irq(struct msi_desc *desc, u32 flag)
216{
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500217 desc->masked = arch_msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400218}
219
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200220static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400221{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200222 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400223
224 if (desc->msi_attrib.is_msix) {
225 msix_mask_irq(desc, flag);
226 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400227 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800228 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400229 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400231}
232
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200233void mask_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, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400236}
237
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200238void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400239{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200240 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800243void default_restore_msi_irqs(struct pci_dev *dev)
244{
245 struct msi_desc *entry;
246
247 list_for_each_entry(entry, &dev->msi_list, list) {
248 default_restore_msi_irq(dev, entry->irq);
249 }
250}
251
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200252void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700253{
Ben Hutchings30da5522010-07-23 14:56:28 +0100254 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700255
Ben Hutchings30da5522010-07-23 14:56:28 +0100256 if (entry->msi_attrib.is_msix) {
257 void __iomem *base = entry->mask_base +
258 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
259
260 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
261 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
262 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
263 } else {
264 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600265 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100266 u16 data;
267
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600268 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
269 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100270 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600271 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
272 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600273 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100274 } else {
275 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600276 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100277 }
278 msg->data = data;
279 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700280}
281
Yinghai Lu3145e942008-12-05 18:58:34 -0800282void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700283{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200284 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800285
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200286 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800287}
288
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200289void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100290{
Ben Hutchings30da5522010-07-23 14:56:28 +0100291 /* Assert that the cache is valid, assuming that
292 * valid messages are not all-zeroes. */
293 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
294 entry->msg.data));
295
296 *msg = entry->msg;
297}
298
299void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
300{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200301 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100302
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200303 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100304}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600305EXPORT_SYMBOL_GPL(get_cached_msi_msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100306
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200307void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800308{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100309 if (entry->dev->current_state != PCI_D0) {
310 /* Don't touch the hardware now */
311 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400312 void __iomem *base;
313 base = entry->mask_base +
314 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
315
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900316 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
317 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
318 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400319 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700320 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600321 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400322 u16 msgctl;
323
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600324 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400325 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
326 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600327 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700328
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600329 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
330 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700331 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600332 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
333 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600334 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
335 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700336 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600337 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
338 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700339 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700340 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700341 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700342}
343
Yinghai Lu3145e942008-12-05 18:58:34 -0800344void write_msi_msg(unsigned int irq, struct msi_msg *msg)
345{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200346 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800347
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200348 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800349}
Gavin Shan3b307ff2014-09-29 10:13:46 -0600350EXPORT_SYMBOL_GPL(write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800351
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900352static void free_msi_irqs(struct pci_dev *dev)
353{
354 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800355 struct attribute **msi_attrs;
356 struct device_attribute *dev_attr;
357 int count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900358
359 list_for_each_entry(entry, &dev->msi_list, list) {
360 int i, nvec;
361 if (!entry->irq)
362 continue;
Alexander Gordeev65f6ae62013-05-13 11:05:48 +0200363 if (entry->nvec_used)
364 nvec = entry->nvec_used;
365 else
366 nvec = 1 << entry->msi_attrib.multiple;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900367 for (i = 0; i < nvec; i++)
368 BUG_ON(irq_has_action(entry->irq + i));
369 }
370
371 arch_teardown_msi_irqs(dev);
372
373 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
374 if (entry->msi_attrib.is_msix) {
375 if (list_is_last(&entry->list, &dev->msi_list))
376 iounmap(entry->mask_base);
377 }
Neil Horman424eb392012-01-03 10:29:54 -0500378
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900379 list_del(&entry->list);
380 kfree(entry);
381 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800382
383 if (dev->msi_irq_groups) {
384 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
385 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700386 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800387 dev_attr = container_of(msi_attrs[count],
388 struct device_attribute, attr);
389 kfree(dev_attr->attr.name);
390 kfree(dev_attr);
391 ++count;
392 }
393 kfree(msi_attrs);
394 kfree(dev->msi_irq_groups[0]);
395 kfree(dev->msi_irq_groups);
396 dev->msi_irq_groups = NULL;
397 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900398}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900399
Matthew Wilcox379f5322009-03-17 08:54:07 -0400400static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400402 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
403 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return NULL;
405
Matthew Wilcox379f5322009-03-17 08:54:07 -0400406 INIT_LIST_HEAD(&desc->list);
407 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Matthew Wilcox379f5322009-03-17 08:54:07 -0400409 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
David Millerba698ad2007-10-25 01:16:30 -0700412static void pci_intx_for_msi(struct pci_dev *dev, int enable)
413{
414 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
415 pci_intx(dev, enable);
416}
417
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100418static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800419{
Shaohua Li41017f02006-02-08 17:11:38 +0800420 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700421 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800422
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800423 if (!dev->msi_enabled)
424 return;
425
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200426 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800427
David Millerba698ad2007-10-25 01:16:30 -0700428 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000429 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800430 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700431
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600432 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800433 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
434 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700435 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400436 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600437 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100438}
439
440static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800441{
Shaohua Li41017f02006-02-08 17:11:38 +0800442 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800443
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700444 if (!dev->msix_enabled)
445 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700446 BUG_ON(list_empty(&dev->msi_list));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700447
Shaohua Li41017f02006-02-08 17:11:38 +0800448 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700449 pci_intx_for_msi(dev, 0);
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800450 msix_clear_and_set_ctrl(dev, 0,
451 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800452
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800453 arch_restore_msi_irqs(dev);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000454 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400455 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800456 }
Shaohua Li41017f02006-02-08 17:11:38 +0800457
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800458 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800459}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100460
461void pci_restore_msi_state(struct pci_dev *dev)
462{
463 __pci_restore_msi_state(dev);
464 __pci_restore_msix_state(dev);
465}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600466EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800467
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800468static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400469 char *buf)
470{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800471 struct msi_desc *entry;
472 unsigned long irq;
473 int retval;
474
475 retval = kstrtoul(attr->attr.name, 10, &irq);
476 if (retval)
477 return retval;
478
Yijing Wange11ece52014-07-08 10:09:19 +0800479 entry = irq_get_msi_desc(irq);
480 if (entry)
481 return sprintf(buf, "%s\n",
482 entry->msi_attrib.is_msix ? "msix" : "msi");
483
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800484 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400485}
486
Neil Hormanda8d1c82011-10-06 14:08:18 -0400487static int populate_msi_sysfs(struct pci_dev *pdev)
488{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800489 struct attribute **msi_attrs;
490 struct attribute *msi_attr;
491 struct device_attribute *msi_dev_attr;
492 struct attribute_group *msi_irq_group;
493 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400494 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800495 int ret = -ENOMEM;
496 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400497 int count = 0;
498
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800499 /* Determine how many msi entries we have */
Neil Hormanda8d1c82011-10-06 14:08:18 -0400500 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800501 ++num_msi;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400502 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800503 if (!num_msi)
504 return 0;
505
506 /* Dynamically create the MSI attributes for the PCI device */
507 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
508 if (!msi_attrs)
509 return -ENOMEM;
510 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700511 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600512 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700513 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600514 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700515
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800516 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600517 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
518 entry->irq);
519 if (!msi_dev_attr->attr.name)
520 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800521 msi_dev_attr->attr.mode = S_IRUGO;
522 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800523 ++count;
524 }
525
526 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
527 if (!msi_irq_group)
528 goto error_attrs;
529 msi_irq_group->name = "msi_irqs";
530 msi_irq_group->attrs = msi_attrs;
531
532 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
533 if (!msi_irq_groups)
534 goto error_irq_group;
535 msi_irq_groups[0] = msi_irq_group;
536
537 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
538 if (ret)
539 goto error_irq_groups;
540 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400541
542 return 0;
543
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800544error_irq_groups:
545 kfree(msi_irq_groups);
546error_irq_group:
547 kfree(msi_irq_group);
548error_attrs:
549 count = 0;
550 msi_attr = msi_attrs[count];
551 while (msi_attr) {
552 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
553 kfree(msi_attr->name);
554 kfree(msi_dev_attr);
555 ++count;
556 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400557 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700558 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400559 return ret;
560}
561
Yijing Wangd873b4d2014-07-08 10:07:23 +0800562static struct msi_desc *msi_setup_entry(struct pci_dev *dev)
563{
564 u16 control;
565 struct msi_desc *entry;
566
567 /* MSI Entry Initialization */
568 entry = alloc_msi_entry(dev);
569 if (!entry)
570 return NULL;
571
572 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
573
574 entry->msi_attrib.is_msix = 0;
575 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
576 entry->msi_attrib.entry_nr = 0;
577 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
578 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800579 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
580
581 if (control & PCI_MSI_FLAGS_64BIT)
582 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
583 else
584 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
585
586 /* Save the initial mask status */
587 if (entry->msi_attrib.maskbit)
588 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
589
590 return entry;
591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/**
594 * msi_capability_init - configure device's MSI capability structure
595 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400596 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400598 * Setup the MSI capability structure of the device with the requested
599 * number of interrupts. A return value of zero indicates the successful
600 * setup of an entry with the new MSI irq. A negative return value indicates
601 * an error, and a positive return value indicates the number of interrupts
602 * which could have been allocated.
603 */
604static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000607 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400608 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Gavin Shane375b562013-04-04 16:54:30 +0000610 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600611
Yijing Wangd873b4d2014-07-08 10:07:23 +0800612 entry = msi_setup_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700613 if (!entry)
614 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700615
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400616 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800617 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400618 msi_mask_irq(entry, mask, mask);
619
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700620 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400623 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000624 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900625 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900626 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000627 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500628 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700629
Neil Hormanda8d1c82011-10-06 14:08:18 -0400630 ret = populate_msi_sysfs(dev);
631 if (ret) {
632 msi_mask_irq(entry, mask, ~mask);
633 free_msi_irqs(dev);
634 return ret;
635 }
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700638 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000639 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800640 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Michael Ellerman7fe37302007-04-18 19:39:21 +1000642 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return 0;
644}
645
Gavin Shan520fe9d2013-04-04 16:54:33 +0000646static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900647{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900648 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900649 u32 table_offset;
650 u8 bir;
651
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600652 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
653 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600654 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
655 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900656 phys_addr = pci_resource_start(dev, bir) + table_offset;
657
658 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
659}
660
Gavin Shan520fe9d2013-04-04 16:54:33 +0000661static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
662 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900663{
664 struct msi_desc *entry;
665 int i;
666
667 for (i = 0; i < nvec; i++) {
668 entry = alloc_msi_entry(dev);
669 if (!entry) {
670 if (!i)
671 iounmap(base);
672 else
673 free_msi_irqs(dev);
674 /* No enough memory. Don't try again */
675 return -ENOMEM;
676 }
677
678 entry->msi_attrib.is_msix = 1;
679 entry->msi_attrib.is_64 = 1;
680 entry->msi_attrib.entry_nr = entries[i].entry;
681 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900682 entry->mask_base = base;
683
684 list_add_tail(&entry->list, &dev->msi_list);
685 }
686
687 return 0;
688}
689
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900690static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000691 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900692{
693 struct msi_desc *entry;
694 int i = 0;
695
696 list_for_each_entry(entry, &dev->msi_list, list) {
697 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
698 PCI_MSIX_ENTRY_VECTOR_CTRL;
699
700 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200701 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900702 entry->masked = readl(entry->mask_base + offset);
703 msix_mask_irq(entry, 1);
704 i++;
705 }
706}
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708/**
709 * msix_capability_init - configure device's MSI-X capability
710 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700711 * @entries: pointer to an array of struct msix_entry entries
712 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600714 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700715 * single MSI-X irq. A return of zero indicates the successful setup of
716 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 **/
718static int msix_capability_init(struct pci_dev *dev,
719 struct msix_entry *entries, int nvec)
720{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000721 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900722 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 void __iomem *base;
724
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700725 /* Ensure MSI-X is disabled while it is set up */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800726 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700727
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800728 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600730 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900731 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return -ENOMEM;
733
Gavin Shan520fe9d2013-04-04 16:54:33 +0000734 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900735 if (ret)
736 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000737
738 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900739 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100740 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000741
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700742 /*
743 * Some devices require MSI-X to be enabled before we can touch the
744 * MSI-X registers. We need to mask all the vectors to prevent
745 * interrupts coming in before they're fully set up.
746 */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800747 msix_clear_and_set_ctrl(dev, 0,
748 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700749
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900750 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700751
Neil Hormanda8d1c82011-10-06 14:08:18 -0400752 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100753 if (ret)
754 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400755
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700756 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700757 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800758 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800760 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900763
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100764out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900765 if (ret < 0) {
766 /*
767 * If we had some success, report the number of irqs
768 * we succeeded in setting up.
769 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900770 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900771 int avail = 0;
772
773 list_for_each_entry(entry, &dev->msi_list, list) {
774 if (entry->irq != 0)
775 avail++;
776 }
777 if (avail != 0)
778 ret = avail;
779 }
780
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100781out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900782 free_msi_irqs(dev);
783
784 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600788 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400789 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000790 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400791 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700792 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000793 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600794 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400795 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600796static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400797{
798 struct pci_bus *bus;
799
Brice Goglin0306ebf2006-10-05 10:24:31 +0200800 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600801 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600802 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600803
804 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600805 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400806
Michael Ellerman314e77b2007-04-05 17:19:12 +1000807 /*
808 * You can't ask to have 0 or less MSIs configured.
809 * a) it's stupid ..
810 * b) the list manipulation code assumes nvec >= 1.
811 */
812 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600813 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000814
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900815 /*
816 * Any bridge which does NOT route MSI transactions from its
817 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200818 * the secondary pci_bus.
819 * We expect only arch-specific PCI host bus controller driver
820 * or quirks for specific PCI bridges to be setting NO_MSI.
821 */
Brice Goglin24334a12006-08-31 01:55:07 -0400822 for (bus = dev->bus; bus; bus = bus->parent)
823 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600824 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400825
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600826 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400827}
828
829/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100830 * pci_msi_vec_count - Return the number of MSI vectors a device can send
831 * @dev: device to report about
832 *
833 * This function returns the number of MSI vectors a device requested via
834 * Multiple Message Capable register. It returns a negative errno if the
835 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
836 * and returns a power of two, up to a maximum of 2^5 (32), according to the
837 * MSI specification.
838 **/
839int pci_msi_vec_count(struct pci_dev *dev)
840{
841 int ret;
842 u16 msgctl;
843
844 if (!dev->msi_cap)
845 return -EINVAL;
846
847 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
848 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
849
850 return ret;
851}
852EXPORT_SYMBOL(pci_msi_vec_count);
853
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400854void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400856 struct msi_desc *desc;
857 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100859 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700860 return;
861
Matthew Wilcox110828c2009-06-16 06:31:45 -0600862 BUG_ON(list_empty(&dev->msi_list));
863 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600864
Gavin Shane375b562013-04-04 16:54:30 +0000865 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700866 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800867 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700868
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900869 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800870 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900871 /* Keep cached state to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500872 arch_msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100873
874 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400875 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700876}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400877
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900878void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700879{
Yinghai Lud52877c2008-04-23 14:58:09 -0700880 if (!pci_msi_enable || !dev || !dev->msi_enabled)
881 return;
882
883 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900884 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100886EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100889 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100890 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100891 * This function returns the number of device's MSI-X table entries and
892 * therefore the number of MSI-X vectors device is capable of sending.
893 * It returns a negative errno if the device is not capable of sending MSI-X
894 * interrupts.
895 **/
896int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100897{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100898 u16 control;
899
Gavin Shan520fe9d2013-04-04 16:54:33 +0000900 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100901 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100902
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600903 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600904 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100905}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100906EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100907
908/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 * pci_enable_msix - configure device's MSI-X capability structure
910 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700911 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700912 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 *
914 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700915 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * MSI-X mode enabled on its hardware device function. A return of zero
917 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700918 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300920 * of irqs or MSI-X vectors available. Driver should use the returned value to
921 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900923int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600925 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700926 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600928 if (!pci_msi_supported(dev, nvec))
929 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000930
Alexander Gordeev27e20602014-09-23 14:25:11 -0600931 if (!entries)
932 return -EINVAL;
933
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100934 nr_entries = pci_msix_vec_count(dev);
935 if (nr_entries < 0)
936 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300938 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* Check for any invalid entries */
941 for (i = 0; i < nvec; i++) {
942 if (entries[i].entry >= nr_entries)
943 return -EINVAL; /* invalid entry */
944 for (j = i + 1; j < nvec; j++) {
945 if (entries[i].entry == entries[j].entry)
946 return -EINVAL; /* duplicate entry */
947 }
948 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700949 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700950
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700951 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900952 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400953 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return -EINVAL;
955 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600956 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100958EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900960void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100961{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900962 struct msi_desc *entry;
963
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100964 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700965 return;
966
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900967 /* Return the device with MSI-X masked as initial states */
968 list_for_each_entry(entry, &dev->msi_list, list) {
969 /* Keep cached states to be restored */
Konrad Rzeszutek Wilk0e4ccb12013-11-06 16:16:56 -0500970 arch_msix_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900971 }
972
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800973 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700974 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800975 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700976}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900977
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900978void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700979{
980 if (!pci_msi_enable || !dev || !dev->msix_enabled)
981 return;
982
983 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900984 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100986EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700988void pci_no_msi(void)
989{
990 pci_msi_enable = 0;
991}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000992
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700993/**
994 * pci_msi_enabled - is MSI enabled?
995 *
996 * Returns true if MSI has not been disabled by the command-line option
997 * pci=nomsi.
998 **/
999int pci_msi_enabled(void)
1000{
1001 return pci_msi_enable;
1002}
1003EXPORT_SYMBOL(pci_msi_enabled);
1004
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001005void pci_msi_init_pci_dev(struct pci_dev *dev)
1006{
1007 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001008
1009 /* Disable the msi hardware to avoid screaming interrupts
1010 * during boot. This is the power on reset default so
1011 * usually this should be a noop.
1012 */
Gavin Shane375b562013-04-04 16:54:30 +00001013 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1014 if (dev->msi_cap)
1015 msi_set_enable(dev, 0);
1016
1017 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1018 if (dev->msix_cap)
Yijing Wang66f0d0c2014-06-19 16:29:53 +08001019 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001020}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001021
1022/**
1023 * pci_enable_msi_range - configure device's MSI capability structure
1024 * @dev: device to configure
1025 * @minvec: minimal number of interrupts to configure
1026 * @maxvec: maximum number of interrupts to configure
1027 *
1028 * This function tries to allocate a maximum possible number of interrupts in a
1029 * range between @minvec and @maxvec. It returns a negative errno if an error
1030 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1031 * and updates the @dev's irq member to the lowest new interrupt number;
1032 * the other interrupt numbers allocated to this device are consecutive.
1033 **/
1034int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1035{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001036 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001037 int rc;
1038
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001039 if (!pci_msi_supported(dev, minvec))
1040 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001041
1042 WARN_ON(!!dev->msi_enabled);
1043
1044 /* Check whether driver already requested MSI-X irqs */
1045 if (dev->msix_enabled) {
1046 dev_info(&dev->dev,
1047 "can't enable MSI (MSI-X already enabled)\n");
1048 return -EINVAL;
1049 }
1050
Alexander Gordeev302a2522013-12-30 08:28:16 +01001051 if (maxvec < minvec)
1052 return -ERANGE;
1053
Alexander Gordeev034cd972014-04-14 15:28:35 +02001054 nvec = pci_msi_vec_count(dev);
1055 if (nvec < 0)
1056 return nvec;
1057 else if (nvec < minvec)
1058 return -EINVAL;
1059 else if (nvec > maxvec)
1060 nvec = maxvec;
1061
Alexander Gordeev302a2522013-12-30 08:28:16 +01001062 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001063 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001064 if (rc < 0) {
1065 return rc;
1066 } else if (rc > 0) {
1067 if (rc < minvec)
1068 return -ENOSPC;
1069 nvec = rc;
1070 }
1071 } while (rc);
1072
1073 return nvec;
1074}
1075EXPORT_SYMBOL(pci_enable_msi_range);
1076
1077/**
1078 * pci_enable_msix_range - configure device's MSI-X capability structure
1079 * @dev: pointer to the pci_dev data structure of MSI-X device function
1080 * @entries: pointer to an array of MSI-X entries
1081 * @minvec: minimum number of MSI-X irqs requested
1082 * @maxvec: maximum number of MSI-X irqs requested
1083 *
1084 * Setup the MSI-X capability structure of device function with a maximum
1085 * possible number of interrupts in the range between @minvec and @maxvec
1086 * upon its software driver call to request for MSI-X mode enabled on its
1087 * hardware device function. It returns a negative errno if an error occurs.
1088 * If it succeeds, it returns the actual number of interrupts allocated and
1089 * indicates the successful configuration of MSI-X capability structure
1090 * with new allocated MSI-X interrupts.
1091 **/
1092int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1093 int minvec, int maxvec)
1094{
1095 int nvec = maxvec;
1096 int rc;
1097
1098 if (maxvec < minvec)
1099 return -ERANGE;
1100
1101 do {
1102 rc = pci_enable_msix(dev, entries, nvec);
1103 if (rc < 0) {
1104 return rc;
1105 } else if (rc > 0) {
1106 if (rc < minvec)
1107 return -ENOSPC;
1108 nvec = rc;
1109 }
1110 } while (rc);
1111
1112 return nvec;
1113}
1114EXPORT_SYMBOL(pci_enable_msix_range);