blob: 06c5f6edb150f918feecd8ee287d8197ffec67fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: msi.c
3 * Purpose: PCI Message Signaled Interrupt (MSI)
4 *
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
Eric W. Biederman1ce03372006-10-04 02:16:41 -07009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/irq.h>
12#include <linux/interrupt.h>
13#include <linux/init.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pci.h>
17#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070018#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070019#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090020#include <linux/errno.h>
21#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "pci.h"
25#include "msi.h"
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int pci_msi_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Bjorn Helgaas527eee22013-04-17 17:44:48 -060029#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
30
31
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010032/* Arch hooks */
33
Michael Ellerman11df1f02009-01-19 11:31:00 +110034#ifndef arch_msi_check_device
35int arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010036{
37 return 0;
38}
Michael Ellerman11df1f02009-01-19 11:31:00 +110039#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010040
Michael Ellerman11df1f02009-01-19 11:31:00 +110041#ifndef arch_setup_msi_irqs
Thomas Gleixner1525bf02010-10-06 16:05:35 -040042# define arch_setup_msi_irqs default_setup_msi_irqs
43# define HAVE_DEFAULT_MSI_SETUP_IRQS
44#endif
45
46#ifdef HAVE_DEFAULT_MSI_SETUP_IRQS
47int default_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010048{
49 struct msi_desc *entry;
50 int ret;
51
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040052 /*
53 * If an architecture wants to support multiple MSI, it needs to
54 * override arch_setup_msi_irqs()
55 */
56 if (type == PCI_CAP_ID_MSI && nvec > 1)
57 return 1;
58
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010059 list_for_each_entry(entry, &dev->msi_list, list) {
60 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110061 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010062 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110063 if (ret > 0)
64 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010065 }
66
67 return 0;
68}
Michael Ellerman11df1f02009-01-19 11:31:00 +110069#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010070
Michael Ellerman11df1f02009-01-19 11:31:00 +110071#ifndef arch_teardown_msi_irqs
Thomas Gleixner1525bf02010-10-06 16:05:35 -040072# define arch_teardown_msi_irqs default_teardown_msi_irqs
73# define HAVE_DEFAULT_MSI_TEARDOWN_IRQS
74#endif
75
76#ifdef HAVE_DEFAULT_MSI_TEARDOWN_IRQS
77void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010078{
79 struct msi_desc *entry;
80
81 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040082 int i, nvec;
83 if (entry->irq == 0)
84 continue;
85 nvec = 1 << entry->msi_attrib.multiple;
86 for (i = 0; i < nvec; i++)
87 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010088 }
89}
Michael Ellerman11df1f02009-01-19 11:31:00 +110090#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010091
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -050092#ifndef arch_restore_msi_irqs
93# define arch_restore_msi_irqs default_restore_msi_irqs
94# define HAVE_DEFAULT_MSI_RESTORE_IRQS
95#endif
96
97#ifdef HAVE_DEFAULT_MSI_RESTORE_IRQS
98void default_restore_msi_irqs(struct pci_dev *dev, int irq)
99{
100 struct msi_desc *entry;
101
102 entry = NULL;
103 if (dev->msix_enabled) {
104 list_for_each_entry(entry, &dev->msi_list, list) {
105 if (irq == entry->irq)
106 break;
107 }
108 } else if (dev->msi_enabled) {
109 entry = irq_get_msi_desc(irq);
110 }
111
112 if (entry)
113 write_msi_msg(irq, &entry->msg);
114}
115#endif
116
Gavin Shane375b562013-04-04 16:54:30 +0000117static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800118{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800119 u16 control;
120
Gavin Shane375b562013-04-04 16:54:30 +0000121 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600122 control &= ~PCI_MSI_FLAGS_ENABLE;
123 if (enable)
124 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000125 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900126}
127
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800128static void msix_set_enable(struct pci_dev *dev, int enable)
129{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800130 u16 control;
131
Gavin Shane375b562013-04-04 16:54:30 +0000132 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
133 control &= ~PCI_MSIX_FLAGS_ENABLE;
134 if (enable)
135 control |= PCI_MSIX_FLAGS_ENABLE;
136 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800137}
138
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500139static inline __attribute_const__ u32 msi_mask(unsigned x)
140{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700141 /* Don't shift by >= width of type */
142 if (x >= 5)
143 return 0xffffffff;
144 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500145}
146
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400147static inline __attribute_const__ u32 msi_capable_mask(u16 control)
Mitch Williams988cbb12007-03-30 11:54:08 -0700148{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400149 return msi_mask((control >> 1) & 7);
150}
Mitch Williams988cbb12007-03-30 11:54:08 -0700151
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400152static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
153{
154 return msi_mask((control >> 4) & 7);
Mitch Williams988cbb12007-03-30 11:54:08 -0700155}
156
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600157/*
158 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
159 * mask all MSI interrupts by clearing the MSI enable bit does not work
160 * reliably as devices without an INTx disable bit will then generate a
161 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600162 */
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900163static u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400165 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400167 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900168 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400169
170 mask_bits &= ~mask;
171 mask_bits |= flag;
172 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900173
174 return mask_bits;
175}
176
177static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
178{
179 desc->masked = __msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400180}
181
182/*
183 * This internal function does not flush PCI writes to the device.
184 * All users must ensure that they read from the device before either
185 * assuming that the device state is up to date, or returning out of this
186 * file. This saves a few milliseconds when initialising devices with lots
187 * of MSI-X interrupts.
188 */
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900189static u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400190{
191 u32 mask_bits = desc->masked;
192 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900193 PCI_MSIX_ENTRY_VECTOR_CTRL;
Sheng Yang8d805282010-11-11 15:46:55 +0800194 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
195 if (flag)
196 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400197 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900198
199 return mask_bits;
200}
201
202static void msix_mask_irq(struct msi_desc *desc, u32 flag)
203{
204 desc->masked = __msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400205}
206
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100207#ifdef CONFIG_GENERIC_HARDIRQS
208
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200209static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400210{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200211 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400212
213 if (desc->msi_attrib.is_msix) {
214 msix_mask_irq(desc, flag);
215 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400216 } else {
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200217 unsigned offset = data->irq - desc->dev->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400218 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400220}
221
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200222void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400223{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200224 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400225}
226
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200227void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400228{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200229 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100232#endif /* CONFIG_GENERIC_HARDIRQS */
233
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200234void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700235{
Ben Hutchings30da5522010-07-23 14:56:28 +0100236 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700237
Ben Hutchings30da5522010-07-23 14:56:28 +0100238 if (entry->msi_attrib.is_msix) {
239 void __iomem *base = entry->mask_base +
240 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
241
242 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
243 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
244 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
245 } else {
246 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600247 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100248 u16 data;
249
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600250 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
251 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100252 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600253 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
254 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600255 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100256 } else {
257 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600258 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100259 }
260 msg->data = data;
261 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700262}
263
Yinghai Lu3145e942008-12-05 18:58:34 -0800264void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700265{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200266 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800267
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200268 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800269}
270
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200271void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100272{
Ben Hutchings30da5522010-07-23 14:56:28 +0100273 /* Assert that the cache is valid, assuming that
274 * valid messages are not all-zeroes. */
275 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
276 entry->msg.data));
277
278 *msg = entry->msg;
279}
280
281void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
282{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200283 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100284
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200285 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100286}
287
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200288void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800289{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100290 if (entry->dev->current_state != PCI_D0) {
291 /* Don't touch the hardware now */
292 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400293 void __iomem *base;
294 base = entry->mask_base +
295 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
296
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900297 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
298 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
299 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400300 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700301 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600302 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400303 u16 msgctl;
304
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600305 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400306 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
307 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600308 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700309
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600310 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
311 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700312 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600313 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
314 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600315 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
316 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700317 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600318 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
319 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700320 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700321 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700322 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700323}
324
Yinghai Lu3145e942008-12-05 18:58:34 -0800325void write_msi_msg(unsigned int irq, struct msi_msg *msg)
326{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200327 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800328
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200329 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800330}
331
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900332static void free_msi_irqs(struct pci_dev *dev)
333{
334 struct msi_desc *entry, *tmp;
335
336 list_for_each_entry(entry, &dev->msi_list, list) {
337 int i, nvec;
338 if (!entry->irq)
339 continue;
340 nvec = 1 << entry->msi_attrib.multiple;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100341#ifdef CONFIG_GENERIC_HARDIRQS
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900342 for (i = 0; i < nvec; i++)
343 BUG_ON(irq_has_action(entry->irq + i));
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100344#endif
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900345 }
346
347 arch_teardown_msi_irqs(dev);
348
349 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
350 if (entry->msi_attrib.is_msix) {
351 if (list_is_last(&entry->list, &dev->msi_list))
352 iounmap(entry->mask_base);
353 }
Neil Horman424eb392012-01-03 10:29:54 -0500354
355 /*
356 * Its possible that we get into this path
357 * When populate_msi_sysfs fails, which means the entries
358 * were not registered with sysfs. In that case don't
359 * unregister them.
360 */
361 if (entry->kobj.parent) {
362 kobject_del(&entry->kobj);
363 kobject_put(&entry->kobj);
364 }
365
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900366 list_del(&entry->list);
367 kfree(entry);
368 }
369}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900370
Matthew Wilcox379f5322009-03-17 08:54:07 -0400371static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400373 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
374 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return NULL;
376
Matthew Wilcox379f5322009-03-17 08:54:07 -0400377 INIT_LIST_HEAD(&desc->list);
378 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Matthew Wilcox379f5322009-03-17 08:54:07 -0400380 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
David Millerba698ad2007-10-25 01:16:30 -0700383static void pci_intx_for_msi(struct pci_dev *dev, int enable)
384{
385 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
386 pci_intx(dev, enable);
387}
388
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100389static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800390{
Shaohua Li41017f02006-02-08 17:11:38 +0800391 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700392 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800393
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800394 if (!dev->msi_enabled)
395 return;
396
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200397 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800398
David Millerba698ad2007-10-25 01:16:30 -0700399 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000400 msi_set_enable(dev, 0);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500401 arch_restore_msi_irqs(dev, dev->irq);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700402
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600403 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400404 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700405 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400406 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600407 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100408}
409
410static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800411{
Shaohua Li41017f02006-02-08 17:11:38 +0800412 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700413 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800414
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700415 if (!dev->msix_enabled)
416 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700417 BUG_ON(list_empty(&dev->msi_list));
Hidetoshi Seto9cc8d542009-08-06 11:32:04 +0900418 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600419 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700420
Shaohua Li41017f02006-02-08 17:11:38 +0800421 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700422 pci_intx_for_msi(dev, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700423 control |= PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600424 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800425
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000426 list_for_each_entry(entry, &dev->msi_list, list) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500427 arch_restore_msi_irqs(dev, entry->irq);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400428 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800429 }
Shaohua Li41017f02006-02-08 17:11:38 +0800430
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700431 control &= ~PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600432 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800433}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100434
435void pci_restore_msi_state(struct pci_dev *dev)
436{
437 __pci_restore_msi_state(dev);
438 __pci_restore_msix_state(dev);
439}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600440EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800441
Neil Hormanda8d1c82011-10-06 14:08:18 -0400442
443#define to_msi_attr(obj) container_of(obj, struct msi_attribute, attr)
444#define to_msi_desc(obj) container_of(obj, struct msi_desc, kobj)
445
446struct msi_attribute {
447 struct attribute attr;
448 ssize_t (*show)(struct msi_desc *entry, struct msi_attribute *attr,
449 char *buf);
450 ssize_t (*store)(struct msi_desc *entry, struct msi_attribute *attr,
451 const char *buf, size_t count);
452};
453
454static ssize_t show_msi_mode(struct msi_desc *entry, struct msi_attribute *atr,
455 char *buf)
456{
457 return sprintf(buf, "%s\n", entry->msi_attrib.is_msix ? "msix" : "msi");
458}
459
460static ssize_t msi_irq_attr_show(struct kobject *kobj,
461 struct attribute *attr, char *buf)
462{
463 struct msi_attribute *attribute = to_msi_attr(attr);
464 struct msi_desc *entry = to_msi_desc(kobj);
465
466 if (!attribute->show)
467 return -EIO;
468
469 return attribute->show(entry, attribute, buf);
470}
471
472static const struct sysfs_ops msi_irq_sysfs_ops = {
473 .show = msi_irq_attr_show,
474};
475
476static struct msi_attribute mode_attribute =
477 __ATTR(mode, S_IRUGO, show_msi_mode, NULL);
478
479
480struct attribute *msi_irq_default_attrs[] = {
481 &mode_attribute.attr,
482 NULL
483};
484
485void msi_kobj_release(struct kobject *kobj)
486{
487 struct msi_desc *entry = to_msi_desc(kobj);
488
489 pci_dev_put(entry->dev);
490}
491
492static struct kobj_type msi_irq_ktype = {
493 .release = msi_kobj_release,
494 .sysfs_ops = &msi_irq_sysfs_ops,
495 .default_attrs = msi_irq_default_attrs,
496};
497
498static int populate_msi_sysfs(struct pci_dev *pdev)
499{
500 struct msi_desc *entry;
501 struct kobject *kobj;
502 int ret;
503 int count = 0;
504
505 pdev->msi_kset = kset_create_and_add("msi_irqs", NULL, &pdev->dev.kobj);
506 if (!pdev->msi_kset)
507 return -ENOMEM;
508
509 list_for_each_entry(entry, &pdev->msi_list, list) {
510 kobj = &entry->kobj;
511 kobj->kset = pdev->msi_kset;
512 pci_dev_get(pdev);
513 ret = kobject_init_and_add(kobj, &msi_irq_ktype, NULL,
514 "%u", entry->irq);
515 if (ret)
516 goto out_unroll;
517
518 count++;
519 }
520
521 return 0;
522
523out_unroll:
524 list_for_each_entry(entry, &pdev->msi_list, list) {
525 if (!count)
526 break;
527 kobject_del(&entry->kobj);
528 kobject_put(&entry->kobj);
529 count--;
530 }
531 return ret;
532}
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/**
535 * msi_capability_init - configure device's MSI capability structure
536 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400537 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400539 * Setup the MSI capability structure of the device with the requested
540 * number of interrupts. A return value of zero indicates the successful
541 * setup of an entry with the new MSI irq. A negative return value indicates
542 * an error, and a positive return value indicates the number of interrupts
543 * which could have been allocated.
544 */
545static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000548 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 u16 control;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400550 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Gavin Shane375b562013-04-04 16:54:30 +0000552 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600553
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600554 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400556 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700557 if (!entry)
558 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700559
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900560 entry->msi_attrib.is_msix = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600561 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900562 entry->msi_attrib.entry_nr = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600563 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900564 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Gavin Shanf4651362013-04-04 16:54:32 +0000565 entry->msi_attrib.pos = dev->msi_cap;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900566
Gavin Shanf4651362013-04-04 16:54:32 +0000567 entry->mask_pos = msi_mask_reg(dev->msi_cap, entry->msi_attrib.is_64);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400568 /* All MSIs are unmasked by default, Mask them all */
569 if (entry->msi_attrib.maskbit)
570 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
571 mask = msi_capable_mask(control);
572 msi_mask_irq(entry, mask, mask);
573
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700574 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400577 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000578 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900579 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900580 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000581 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500582 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700583
Neil Hormanda8d1c82011-10-06 14:08:18 -0400584 ret = populate_msi_sysfs(dev);
585 if (ret) {
586 msi_mask_irq(entry, mask, ~mask);
587 free_msi_irqs(dev);
588 return ret;
589 }
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700592 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000593 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800594 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Michael Ellerman7fe37302007-04-18 19:39:21 +1000596 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return 0;
598}
599
Gavin Shan520fe9d2013-04-04 16:54:33 +0000600static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900601{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900602 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900603 u32 table_offset;
604 u8 bir;
605
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600606 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
607 &table_offset);
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900608 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
609 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
610 phys_addr = pci_resource_start(dev, bir) + table_offset;
611
612 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
613}
614
Gavin Shan520fe9d2013-04-04 16:54:33 +0000615static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
616 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900617{
618 struct msi_desc *entry;
619 int i;
620
621 for (i = 0; i < nvec; i++) {
622 entry = alloc_msi_entry(dev);
623 if (!entry) {
624 if (!i)
625 iounmap(base);
626 else
627 free_msi_irqs(dev);
628 /* No enough memory. Don't try again */
629 return -ENOMEM;
630 }
631
632 entry->msi_attrib.is_msix = 1;
633 entry->msi_attrib.is_64 = 1;
634 entry->msi_attrib.entry_nr = entries[i].entry;
635 entry->msi_attrib.default_irq = dev->irq;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000636 entry->msi_attrib.pos = dev->msix_cap;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900637 entry->mask_base = base;
638
639 list_add_tail(&entry->list, &dev->msi_list);
640 }
641
642 return 0;
643}
644
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900645static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000646 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900647{
648 struct msi_desc *entry;
649 int i = 0;
650
651 list_for_each_entry(entry, &dev->msi_list, list) {
652 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
653 PCI_MSIX_ENTRY_VECTOR_CTRL;
654
655 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200656 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900657 entry->masked = readl(entry->mask_base + offset);
658 msix_mask_irq(entry, 1);
659 i++;
660 }
661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/**
664 * msix_capability_init - configure device's MSI-X capability
665 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700666 * @entries: pointer to an array of struct msix_entry entries
667 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600669 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700670 * single MSI-X irq. A return of zero indicates the successful setup of
671 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 **/
673static int msix_capability_init(struct pci_dev *dev,
674 struct msix_entry *entries, int nvec)
675{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000676 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900677 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 void __iomem *base;
679
Gavin Shan520fe9d2013-04-04 16:54:33 +0000680 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700681
682 /* Ensure MSI-X is disabled while it is set up */
683 control &= ~PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000684 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600687 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900688 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return -ENOMEM;
690
Gavin Shan520fe9d2013-04-04 16:54:33 +0000691 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900692 if (ret)
693 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000694
695 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900696 if (ret)
697 goto error;
Michael Ellerman9c831332007-04-18 19:39:21 +1000698
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700699 /*
700 * Some devices require MSI-X to be enabled before we can touch the
701 * MSI-X registers. We need to mask all the vectors to prevent
702 * interrupts coming in before they're fully set up.
703 */
704 control |= PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000705 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700706
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900707 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700708
Neil Hormanda8d1c82011-10-06 14:08:18 -0400709 ret = populate_msi_sysfs(dev);
710 if (ret) {
711 ret = 0;
712 goto error;
713 }
714
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700715 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700716 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800717 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700719 control &= ~PCI_MSIX_FLAGS_MASKALL;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000720 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900723
724error:
725 if (ret < 0) {
726 /*
727 * If we had some success, report the number of irqs
728 * we succeeded in setting up.
729 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900730 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900731 int avail = 0;
732
733 list_for_each_entry(entry, &dev->msi_list, list) {
734 if (entry->irq != 0)
735 avail++;
736 }
737 if (avail != 0)
738 ret = avail;
739 }
740
741 free_msi_irqs(dev);
742
743 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000747 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400748 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000749 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100750 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400751 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200752 * Look at global flags, the device itself, and its parent busses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000753 * to determine if MSI/-X are supported for the device. If MSI/-X is
754 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400755 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900756static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400757{
758 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000759 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400760
Brice Goglin0306ebf2006-10-05 10:24:31 +0200761 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400762 if (!pci_msi_enable || !dev || dev->no_msi)
763 return -EINVAL;
764
Michael Ellerman314e77b2007-04-05 17:19:12 +1000765 /*
766 * You can't ask to have 0 or less MSIs configured.
767 * a) it's stupid ..
768 * b) the list manipulation code assumes nvec >= 1.
769 */
770 if (nvec < 1)
771 return -ERANGE;
772
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900773 /*
774 * Any bridge which does NOT route MSI transactions from its
775 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200776 * the secondary pci_bus.
777 * We expect only arch-specific PCI host bus controller driver
778 * or quirks for specific PCI bridges to be setting NO_MSI.
779 */
Brice Goglin24334a12006-08-31 01:55:07 -0400780 for (bus = dev->bus; bus; bus = bus->parent)
781 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
782 return -EINVAL;
783
Michael Ellermanc9953a72007-04-05 17:19:08 +1000784 ret = arch_msi_check_device(dev, nvec, type);
785 if (ret)
786 return ret;
787
Brice Goglin24334a12006-08-31 01:55:07 -0400788 return 0;
789}
790
791/**
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400792 * pci_enable_msi_block - configure device's MSI capability structure
793 * @dev: device to configure
794 * @nvec: number of interrupts to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400796 * Allocate IRQs for a device with the MSI capability.
797 * This function returns a negative errno if an error occurs. If it
798 * is unable to allocate the number of interrupts requested, it returns
799 * the number of interrupts it might be able to allocate. If it successfully
800 * allocates at least the number of interrupts requested, it returns 0 and
801 * updates the @dev's irq member to the lowest new interrupt number; the
802 * other interrupt numbers allocated to this device are consecutive.
803 */
804int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Gavin Shanf4651362013-04-04 16:54:32 +0000806 int status, maxvec;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400807 u16 msgctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Gavin Shanf4651362013-04-04 16:54:32 +0000809 if (!dev->msi_cap)
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400810 return -EINVAL;
Gavin Shanf4651362013-04-04 16:54:32 +0000811
812 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400813 maxvec = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
814 if (nvec > maxvec)
815 return maxvec;
816
817 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellermanc9953a72007-04-05 17:19:08 +1000818 if (status)
819 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700821 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400823 /* Check whether driver already requested MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800824 if (dev->msix_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600825 dev_info(&dev->dev, "can't enable MSI "
826 "(MSI-X already enabled)\n");
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800827 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400829
830 status = msi_capability_init(dev, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return status;
832}
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400833EXPORT_SYMBOL(pci_enable_msi_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Alexander Gordeev08261d82012-11-19 16:02:10 +0100835int pci_enable_msi_block_auto(struct pci_dev *dev, unsigned int *maxvec)
836{
Gavin Shanf4651362013-04-04 16:54:32 +0000837 int ret, nvec;
Alexander Gordeev08261d82012-11-19 16:02:10 +0100838 u16 msgctl;
839
Gavin Shanf4651362013-04-04 16:54:32 +0000840 if (!dev->msi_cap)
Alexander Gordeev08261d82012-11-19 16:02:10 +0100841 return -EINVAL;
842
Gavin Shanf4651362013-04-04 16:54:32 +0000843 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
Alexander Gordeev08261d82012-11-19 16:02:10 +0100844 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
845
846 if (maxvec)
847 *maxvec = ret;
848
849 do {
850 nvec = ret;
851 ret = pci_enable_msi_block(dev, nvec);
852 } while (ret > 0);
853
854 if (ret < 0)
855 return ret;
856 return nvec;
857}
858EXPORT_SYMBOL(pci_enable_msi_block_auto);
859
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400860void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400862 struct msi_desc *desc;
863 u32 mask;
864 u16 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100866 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700867 return;
868
Matthew Wilcox110828c2009-06-16 06:31:45 -0600869 BUG_ON(list_empty(&dev->msi_list));
870 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600871
Gavin Shane375b562013-04-04 16:54:30 +0000872 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700873 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800874 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700875
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900876 /* Return the device with MSI unmasked as initial states */
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600877 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400878 mask = msi_capable_mask(ctrl);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900879 /* Keep cached state to be restored */
880 __msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100881
882 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400883 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700884}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400885
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900886void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700887{
Yinghai Lud52877c2008-04-23 14:58:09 -0700888 if (!pci_msi_enable || !dev || !dev->msi_enabled)
889 return;
890
891 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900892 free_msi_irqs(dev);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400893 kset_unregister(dev->msi_kset);
894 dev->msi_kset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100896EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/**
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100899 * pci_msix_table_size - return the number of device's MSI-X table entries
900 * @dev: pointer to the pci_dev data structure of MSI-X device function
901 */
902int pci_msix_table_size(struct pci_dev *dev)
903{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100904 u16 control;
905
Gavin Shan520fe9d2013-04-04 16:54:33 +0000906 if (!dev->msix_cap)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100907 return 0;
908
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600909 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600910 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100911}
912
913/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * pci_enable_msix - configure device's MSI-X capability structure
915 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700916 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700917 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *
919 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700920 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 * MSI-X mode enabled on its hardware device function. A return of zero
922 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700923 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300925 * of irqs or MSI-X vectors available. Driver should use the returned value to
926 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900928int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100930 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700931 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Gavin Shancdf1fd42013-04-04 16:54:31 +0000933 if (!entries || !dev->msix_cap)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900934 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Michael Ellermanc9953a72007-04-05 17:19:08 +1000936 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
937 if (status)
938 return status;
939
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100940 nr_entries = pci_msix_table_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300942 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 /* Check for any invalid entries */
945 for (i = 0; i < nvec; i++) {
946 if (entries[i].entry >= nr_entries)
947 return -EINVAL; /* invalid entry */
948 for (j = i + 1; j < nvec; j++) {
949 if (entries[i].entry == entries[j].entry)
950 return -EINVAL; /* duplicate entry */
951 }
952 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700953 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700954
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700955 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900956 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600957 dev_info(&dev->dev, "can't enable MSI-X "
958 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return -EINVAL;
960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return status;
963}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100964EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900966void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100967{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900968 struct msi_desc *entry;
969
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100970 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700971 return;
972
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900973 /* Return the device with MSI-X masked as initial states */
974 list_for_each_entry(entry, &dev->msi_list, list) {
975 /* Keep cached states to be restored */
976 __msix_mask_irq(entry, 1);
977 }
978
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800979 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700980 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800981 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700982}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900983
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900984void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700985{
986 if (!pci_msi_enable || !dev || !dev->msix_enabled)
987 return;
988
989 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900990 free_msi_irqs(dev);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400991 kset_unregister(dev->msi_kset);
992 dev->msi_kset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100994EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700997 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 * @dev: pointer to the pci_dev data structure of MSI(X) device function
999 *
Steven Coleeaae4b32005-05-03 18:38:30 -06001000 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001001 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 * allocated for this device function, are reclaimed to unused state,
1003 * which may be used later on.
1004 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001005void msi_remove_pci_irq_vectors(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (!pci_msi_enable || !dev)
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001008 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001010 if (dev->msi_enabled || dev->msix_enabled)
1011 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001014void pci_no_msi(void)
1015{
1016 pci_msi_enable = 0;
1017}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001018
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001019/**
1020 * pci_msi_enabled - is MSI enabled?
1021 *
1022 * Returns true if MSI has not been disabled by the command-line option
1023 * pci=nomsi.
1024 **/
1025int pci_msi_enabled(void)
1026{
1027 return pci_msi_enable;
1028}
1029EXPORT_SYMBOL(pci_msi_enabled);
1030
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001031void pci_msi_init_pci_dev(struct pci_dev *dev)
1032{
1033 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001034
1035 /* Disable the msi hardware to avoid screaming interrupts
1036 * during boot. This is the power on reset default so
1037 * usually this should be a noop.
1038 */
Gavin Shane375b562013-04-04 16:54:30 +00001039 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1040 if (dev->msi_cap)
1041 msi_set_enable(dev, 0);
1042
1043 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1044 if (dev->msix_cap)
1045 msix_set_enable(dev, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001046}