blob: 402063ff889e651611299d7178385b00abc8c7c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: msi.c
3 * Purpose: PCI Message Signaled Interrupt (MSI)
4 *
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
Eric W. Biederman1ce03372006-10-04 02:16:41 -07009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/irq.h>
12#include <linux/interrupt.h>
13#include <linux/init.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pci.h>
17#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070018#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070019#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090020#include <linux/errno.h>
21#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int pci_msi_enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Bjorn Helgaas527eee22013-04-17 17:44:48 -060028#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
29
30
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010031/* Arch hooks */
32
Michael Ellerman11df1f02009-01-19 11:31:00 +110033#ifndef arch_msi_check_device
34int arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010035{
36 return 0;
37}
Michael Ellerman11df1f02009-01-19 11:31:00 +110038#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010039
Michael Ellerman11df1f02009-01-19 11:31:00 +110040#ifndef arch_setup_msi_irqs
Thomas Gleixner1525bf02010-10-06 16:05:35 -040041# define arch_setup_msi_irqs default_setup_msi_irqs
42# define HAVE_DEFAULT_MSI_SETUP_IRQS
43#endif
44
45#ifdef HAVE_DEFAULT_MSI_SETUP_IRQS
46int default_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010047{
48 struct msi_desc *entry;
49 int ret;
50
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040051 /*
52 * If an architecture wants to support multiple MSI, it needs to
53 * override arch_setup_msi_irqs()
54 */
55 if (type == PCI_CAP_ID_MSI && nvec > 1)
56 return 1;
57
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010058 list_for_each_entry(entry, &dev->msi_list, list) {
59 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110060 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010061 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110062 if (ret > 0)
63 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010064 }
65
66 return 0;
67}
Michael Ellerman11df1f02009-01-19 11:31:00 +110068#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010069
Michael Ellerman11df1f02009-01-19 11:31:00 +110070#ifndef arch_teardown_msi_irqs
Thomas Gleixner1525bf02010-10-06 16:05:35 -040071# define arch_teardown_msi_irqs default_teardown_msi_irqs
72# define HAVE_DEFAULT_MSI_TEARDOWN_IRQS
73#endif
74
75#ifdef HAVE_DEFAULT_MSI_TEARDOWN_IRQS
76void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010077{
78 struct msi_desc *entry;
79
80 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040081 int i, nvec;
82 if (entry->irq == 0)
83 continue;
84 nvec = 1 << entry->msi_attrib.multiple;
85 for (i = 0; i < nvec; i++)
86 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010087 }
88}
Michael Ellerman11df1f02009-01-19 11:31:00 +110089#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010090
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -050091#ifndef arch_restore_msi_irqs
92# define arch_restore_msi_irqs default_restore_msi_irqs
93# define HAVE_DEFAULT_MSI_RESTORE_IRQS
94#endif
95
96#ifdef HAVE_DEFAULT_MSI_RESTORE_IRQS
97void default_restore_msi_irqs(struct pci_dev *dev, int irq)
98{
99 struct msi_desc *entry;
100
101 entry = NULL;
102 if (dev->msix_enabled) {
103 list_for_each_entry(entry, &dev->msi_list, list) {
104 if (irq == entry->irq)
105 break;
106 }
107 } else if (dev->msi_enabled) {
108 entry = irq_get_msi_desc(irq);
109 }
110
111 if (entry)
112 write_msi_msg(irq, &entry->msg);
113}
114#endif
115
Gavin Shane375b562013-04-04 16:54:30 +0000116static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800117{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800118 u16 control;
119
Gavin Shane375b562013-04-04 16:54:30 +0000120 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600121 control &= ~PCI_MSI_FLAGS_ENABLE;
122 if (enable)
123 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000124 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900125}
126
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800127static void msix_set_enable(struct pci_dev *dev, int enable)
128{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800129 u16 control;
130
Gavin Shane375b562013-04-04 16:54:30 +0000131 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
132 control &= ~PCI_MSIX_FLAGS_ENABLE;
133 if (enable)
134 control |= PCI_MSIX_FLAGS_ENABLE;
135 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800136}
137
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500138static inline __attribute_const__ u32 msi_mask(unsigned x)
139{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700140 /* Don't shift by >= width of type */
141 if (x >= 5)
142 return 0xffffffff;
143 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500144}
145
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400146static inline __attribute_const__ u32 msi_capable_mask(u16 control)
Mitch Williams988cbb12007-03-30 11:54:08 -0700147{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400148 return msi_mask((control >> 1) & 7);
149}
Mitch Williams988cbb12007-03-30 11:54:08 -0700150
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400151static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
152{
153 return msi_mask((control >> 4) & 7);
Mitch Williams988cbb12007-03-30 11:54:08 -0700154}
155
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600156/*
157 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
158 * mask all MSI interrupts by clearing the MSI enable bit does not work
159 * reliably as devices without an INTx disable bit will then generate a
160 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600161 */
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900162static u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400164 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400166 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900167 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400168
169 mask_bits &= ~mask;
170 mask_bits |= flag;
171 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900172
173 return mask_bits;
174}
175
176static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
177{
178 desc->masked = __msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400179}
180
181/*
182 * This internal function does not flush PCI writes to the device.
183 * All users must ensure that they read from the device before either
184 * assuming that the device state is up to date, or returning out of this
185 * file. This saves a few milliseconds when initialising devices with lots
186 * of MSI-X interrupts.
187 */
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900188static u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400189{
190 u32 mask_bits = desc->masked;
191 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900192 PCI_MSIX_ENTRY_VECTOR_CTRL;
Sheng Yang8d805282010-11-11 15:46:55 +0800193 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
194 if (flag)
195 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400196 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900197
198 return mask_bits;
199}
200
201static void msix_mask_irq(struct msi_desc *desc, u32 flag)
202{
203 desc->masked = __msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400204}
205
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100206#ifdef CONFIG_GENERIC_HARDIRQS
207
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200208static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400209{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200210 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400211
212 if (desc->msi_attrib.is_msix) {
213 msix_mask_irq(desc, flag);
214 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400215 } else {
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200216 unsigned offset = data->irq - desc->dev->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400217 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400219}
220
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200221void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400222{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200223 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400224}
225
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200226void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400227{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200228 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100231#endif /* CONFIG_GENERIC_HARDIRQS */
232
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200233void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700234{
Ben Hutchings30da5522010-07-23 14:56:28 +0100235 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700236
Ben Hutchings30da5522010-07-23 14:56:28 +0100237 if (entry->msi_attrib.is_msix) {
238 void __iomem *base = entry->mask_base +
239 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
240
241 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
242 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
243 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
244 } else {
245 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600246 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100247 u16 data;
248
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600249 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
250 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100251 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600252 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
253 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600254 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100255 } else {
256 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600257 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100258 }
259 msg->data = data;
260 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700261}
262
Yinghai Lu3145e942008-12-05 18:58:34 -0800263void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700264{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200265 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800266
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200267 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800268}
269
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200270void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100271{
Ben Hutchings30da5522010-07-23 14:56:28 +0100272 /* Assert that the cache is valid, assuming that
273 * valid messages are not all-zeroes. */
274 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
275 entry->msg.data));
276
277 *msg = entry->msg;
278}
279
280void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
281{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200282 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100283
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200284 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100285}
286
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200287void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800288{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100289 if (entry->dev->current_state != PCI_D0) {
290 /* Don't touch the hardware now */
291 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400292 void __iomem *base;
293 base = entry->mask_base +
294 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
295
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900296 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
297 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
298 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400299 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700300 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600301 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400302 u16 msgctl;
303
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600304 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400305 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
306 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600307 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700308
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600309 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
310 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700311 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600312 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
313 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600314 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
315 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700316 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600317 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
318 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700319 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700320 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700321 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700322}
323
Yinghai Lu3145e942008-12-05 18:58:34 -0800324void write_msi_msg(unsigned int irq, struct msi_msg *msg)
325{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200326 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800327
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200328 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800329}
330
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900331static void free_msi_irqs(struct pci_dev *dev)
332{
333 struct msi_desc *entry, *tmp;
334
335 list_for_each_entry(entry, &dev->msi_list, list) {
336 int i, nvec;
337 if (!entry->irq)
338 continue;
339 nvec = 1 << entry->msi_attrib.multiple;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100340#ifdef CONFIG_GENERIC_HARDIRQS
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900341 for (i = 0; i < nvec; i++)
342 BUG_ON(irq_has_action(entry->irq + i));
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100343#endif
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900344 }
345
346 arch_teardown_msi_irqs(dev);
347
348 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
349 if (entry->msi_attrib.is_msix) {
350 if (list_is_last(&entry->list, &dev->msi_list))
351 iounmap(entry->mask_base);
352 }
Neil Horman424eb392012-01-03 10:29:54 -0500353
354 /*
355 * Its possible that we get into this path
356 * When populate_msi_sysfs fails, which means the entries
357 * were not registered with sysfs. In that case don't
358 * unregister them.
359 */
360 if (entry->kobj.parent) {
361 kobject_del(&entry->kobj);
362 kobject_put(&entry->kobj);
363 }
364
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900365 list_del(&entry->list);
366 kfree(entry);
367 }
368}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900369
Matthew Wilcox379f5322009-03-17 08:54:07 -0400370static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400372 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
373 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return NULL;
375
Matthew Wilcox379f5322009-03-17 08:54:07 -0400376 INIT_LIST_HEAD(&desc->list);
377 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Matthew Wilcox379f5322009-03-17 08:54:07 -0400379 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
David Millerba698ad2007-10-25 01:16:30 -0700382static void pci_intx_for_msi(struct pci_dev *dev, int enable)
383{
384 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
385 pci_intx(dev, enable);
386}
387
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100388static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800389{
Shaohua Li41017f02006-02-08 17:11:38 +0800390 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700391 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800392
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800393 if (!dev->msi_enabled)
394 return;
395
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200396 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800397
David Millerba698ad2007-10-25 01:16:30 -0700398 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000399 msi_set_enable(dev, 0);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500400 arch_restore_msi_irqs(dev, dev->irq);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700401
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600402 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400403 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700404 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400405 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600406 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100407}
408
409static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800410{
Shaohua Li41017f02006-02-08 17:11:38 +0800411 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700412 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800413
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700414 if (!dev->msix_enabled)
415 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700416 BUG_ON(list_empty(&dev->msi_list));
Hidetoshi Seto9cc8d542009-08-06 11:32:04 +0900417 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600418 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700419
Shaohua Li41017f02006-02-08 17:11:38 +0800420 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700421 pci_intx_for_msi(dev, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700422 control |= PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600423 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800424
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000425 list_for_each_entry(entry, &dev->msi_list, list) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500426 arch_restore_msi_irqs(dev, entry->irq);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400427 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800428 }
Shaohua Li41017f02006-02-08 17:11:38 +0800429
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700430 control &= ~PCI_MSIX_FLAGS_MASKALL;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600431 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800432}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100433
434void pci_restore_msi_state(struct pci_dev *dev)
435{
436 __pci_restore_msi_state(dev);
437 __pci_restore_msix_state(dev);
438}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600439EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800440
Neil Hormanda8d1c82011-10-06 14:08:18 -0400441
442#define to_msi_attr(obj) container_of(obj, struct msi_attribute, attr)
443#define to_msi_desc(obj) container_of(obj, struct msi_desc, kobj)
444
445struct msi_attribute {
446 struct attribute attr;
447 ssize_t (*show)(struct msi_desc *entry, struct msi_attribute *attr,
448 char *buf);
449 ssize_t (*store)(struct msi_desc *entry, struct msi_attribute *attr,
450 const char *buf, size_t count);
451};
452
453static ssize_t show_msi_mode(struct msi_desc *entry, struct msi_attribute *atr,
454 char *buf)
455{
456 return sprintf(buf, "%s\n", entry->msi_attrib.is_msix ? "msix" : "msi");
457}
458
459static ssize_t msi_irq_attr_show(struct kobject *kobj,
460 struct attribute *attr, char *buf)
461{
462 struct msi_attribute *attribute = to_msi_attr(attr);
463 struct msi_desc *entry = to_msi_desc(kobj);
464
465 if (!attribute->show)
466 return -EIO;
467
468 return attribute->show(entry, attribute, buf);
469}
470
471static const struct sysfs_ops msi_irq_sysfs_ops = {
472 .show = msi_irq_attr_show,
473};
474
475static struct msi_attribute mode_attribute =
476 __ATTR(mode, S_IRUGO, show_msi_mode, NULL);
477
478
Bjorn Helgaas9738abe2013-04-12 11:20:03 -0600479static struct attribute *msi_irq_default_attrs[] = {
Neil Hormanda8d1c82011-10-06 14:08:18 -0400480 &mode_attribute.attr,
481 NULL
482};
483
Bjorn Helgaas9738abe2013-04-12 11:20:03 -0600484static void msi_kobj_release(struct kobject *kobj)
Neil Hormanda8d1c82011-10-06 14:08:18 -0400485{
486 struct msi_desc *entry = to_msi_desc(kobj);
487
488 pci_dev_put(entry->dev);
489}
490
491static struct kobj_type msi_irq_ktype = {
492 .release = msi_kobj_release,
493 .sysfs_ops = &msi_irq_sysfs_ops,
494 .default_attrs = msi_irq_default_attrs,
495};
496
497static int populate_msi_sysfs(struct pci_dev *pdev)
498{
499 struct msi_desc *entry;
500 struct kobject *kobj;
501 int ret;
502 int count = 0;
503
504 pdev->msi_kset = kset_create_and_add("msi_irqs", NULL, &pdev->dev.kobj);
505 if (!pdev->msi_kset)
506 return -ENOMEM;
507
508 list_for_each_entry(entry, &pdev->msi_list, list) {
509 kobj = &entry->kobj;
510 kobj->kset = pdev->msi_kset;
511 pci_dev_get(pdev);
512 ret = kobject_init_and_add(kobj, &msi_irq_ktype, NULL,
513 "%u", entry->irq);
514 if (ret)
515 goto out_unroll;
516
517 count++;
518 }
519
520 return 0;
521
522out_unroll:
523 list_for_each_entry(entry, &pdev->msi_list, list) {
524 if (!count)
525 break;
526 kobject_del(&entry->kobj);
527 kobject_put(&entry->kobj);
528 count--;
529 }
530 return ret;
531}
532
Benjamin Herrenschmidt4c8ecdc2014-10-03 15:13:24 +1000533static int msi_verify_entries(struct pci_dev *dev)
534{
535 struct msi_desc *entry;
536
537 list_for_each_entry(entry, &dev->msi_list, list) {
538 if (!dev->no_64bit_msi || !entry->msg.address_hi)
539 continue;
540 dev_err(&dev->dev, "Device has broken 64-bit MSI but arch"
541 " tried to assign one above 4G\n");
542 return -EIO;
543 }
544 return 0;
545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/**
548 * msi_capability_init - configure device's MSI capability structure
549 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400550 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400552 * Setup the MSI capability structure of the device with the requested
553 * number of interrupts. A return value of zero indicates the successful
554 * setup of an entry with the new MSI irq. A negative return value indicates
555 * an error, and a positive return value indicates the number of interrupts
556 * which could have been allocated.
557 */
558static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000561 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 u16 control;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400563 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Gavin Shane375b562013-04-04 16:54:30 +0000565 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600566
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600567 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400569 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700570 if (!entry)
571 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700572
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900573 entry->msi_attrib.is_msix = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600574 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900575 entry->msi_attrib.entry_nr = 0;
Bjorn Helgaas4987ce82013-04-17 17:42:30 -0600576 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900577 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Gavin Shanf4651362013-04-04 16:54:32 +0000578 entry->msi_attrib.pos = dev->msi_cap;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900579
Dan Carpentere5f66ea2013-04-30 10:44:54 +0300580 if (control & PCI_MSI_FLAGS_64BIT)
581 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
582 else
583 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400584 /* All MSIs are unmasked by default, Mask them all */
585 if (entry->msi_attrib.maskbit)
586 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
587 mask = msi_capable_mask(control);
588 msi_mask_irq(entry, mask, mask);
589
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700590 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400593 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000594 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900595 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900596 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000597 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500598 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700599
Benjamin Herrenschmidt4c8ecdc2014-10-03 15:13:24 +1000600 ret = msi_verify_entries(dev);
601 if (ret) {
602 msi_mask_irq(entry, mask, ~mask);
603 free_msi_irqs(dev);
604 return ret;
605 }
606
Neil Hormanda8d1c82011-10-06 14:08:18 -0400607 ret = populate_msi_sysfs(dev);
608 if (ret) {
609 msi_mask_irq(entry, mask, ~mask);
610 free_msi_irqs(dev);
611 return ret;
612 }
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700615 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000616 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800617 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Michael Ellerman7fe37302007-04-18 19:39:21 +1000619 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return 0;
621}
622
Gavin Shan520fe9d2013-04-04 16:54:33 +0000623static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900624{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900625 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900626 u32 table_offset;
627 u8 bir;
628
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600629 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
630 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600631 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
632 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900633 phys_addr = pci_resource_start(dev, bir) + table_offset;
634
635 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
636}
637
Gavin Shan520fe9d2013-04-04 16:54:33 +0000638static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
639 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900640{
641 struct msi_desc *entry;
642 int i;
643
644 for (i = 0; i < nvec; i++) {
645 entry = alloc_msi_entry(dev);
646 if (!entry) {
647 if (!i)
648 iounmap(base);
649 else
650 free_msi_irqs(dev);
651 /* No enough memory. Don't try again */
652 return -ENOMEM;
653 }
654
655 entry->msi_attrib.is_msix = 1;
656 entry->msi_attrib.is_64 = 1;
657 entry->msi_attrib.entry_nr = entries[i].entry;
658 entry->msi_attrib.default_irq = dev->irq;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000659 entry->msi_attrib.pos = dev->msix_cap;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900660 entry->mask_base = base;
661
662 list_add_tail(&entry->list, &dev->msi_list);
663 }
664
665 return 0;
666}
667
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900668static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000669 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900670{
671 struct msi_desc *entry;
672 int i = 0;
673
674 list_for_each_entry(entry, &dev->msi_list, list) {
675 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
676 PCI_MSIX_ENTRY_VECTOR_CTRL;
677
678 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200679 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900680 entry->masked = readl(entry->mask_base + offset);
681 msix_mask_irq(entry, 1);
682 i++;
683 }
684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/**
687 * msix_capability_init - configure device's MSI-X capability
688 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700689 * @entries: pointer to an array of struct msix_entry entries
690 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600692 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700693 * single MSI-X irq. A return of zero indicates the successful setup of
694 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 **/
696static int msix_capability_init(struct pci_dev *dev,
697 struct msix_entry *entries, int nvec)
698{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000699 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900700 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 void __iomem *base;
702
Gavin Shan520fe9d2013-04-04 16:54:33 +0000703 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700704
705 /* Ensure MSI-X is disabled while it is set up */
706 control &= ~PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000707 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600710 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900711 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return -ENOMEM;
713
Gavin Shan520fe9d2013-04-04 16:54:33 +0000714 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900715 if (ret)
716 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000717
718 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900719 if (ret)
720 goto error;
Michael Ellerman9c831332007-04-18 19:39:21 +1000721
Benjamin Herrenschmidt4c8ecdc2014-10-03 15:13:24 +1000722 /* Check if all MSI entries honor device restrictions */
723 ret = msi_verify_entries(dev);
724 if (ret)
725 goto error;
726
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700727 /*
728 * Some devices require MSI-X to be enabled before we can touch the
729 * MSI-X registers. We need to mask all the vectors to prevent
730 * interrupts coming in before they're fully set up.
731 */
732 control |= PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000733 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700734
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900735 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700736
Neil Hormanda8d1c82011-10-06 14:08:18 -0400737 ret = populate_msi_sysfs(dev);
738 if (ret) {
739 ret = 0;
740 goto error;
741 }
742
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700743 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700744 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800745 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700747 control &= ~PCI_MSIX_FLAGS_MASKALL;
Gavin Shan520fe9d2013-04-04 16:54:33 +0000748 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, control);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900751
752error:
753 if (ret < 0) {
754 /*
755 * If we had some success, report the number of irqs
756 * we succeeded in setting up.
757 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900758 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900759 int avail = 0;
760
761 list_for_each_entry(entry, &dev->msi_list, list) {
762 if (entry->irq != 0)
763 avail++;
764 }
765 if (avail != 0)
766 ret = avail;
767 }
768
769 free_msi_irqs(dev);
770
771 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000775 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400776 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000777 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100778 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400779 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200780 * Look at global flags, the device itself, and its parent busses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000781 * to determine if MSI/-X are supported for the device. If MSI/-X is
782 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400783 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900784static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400785{
786 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000787 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400788
Brice Goglin0306ebf2006-10-05 10:24:31 +0200789 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400790 if (!pci_msi_enable || !dev || dev->no_msi)
791 return -EINVAL;
792
Michael Ellerman314e77b2007-04-05 17:19:12 +1000793 /*
794 * You can't ask to have 0 or less MSIs configured.
795 * a) it's stupid ..
796 * b) the list manipulation code assumes nvec >= 1.
797 */
798 if (nvec < 1)
799 return -ERANGE;
800
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900801 /*
802 * Any bridge which does NOT route MSI transactions from its
803 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200804 * the secondary pci_bus.
805 * We expect only arch-specific PCI host bus controller driver
806 * or quirks for specific PCI bridges to be setting NO_MSI.
807 */
Brice Goglin24334a12006-08-31 01:55:07 -0400808 for (bus = dev->bus; bus; bus = bus->parent)
809 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
810 return -EINVAL;
811
Michael Ellermanc9953a72007-04-05 17:19:08 +1000812 ret = arch_msi_check_device(dev, nvec, type);
813 if (ret)
814 return ret;
815
Brice Goglin24334a12006-08-31 01:55:07 -0400816 return 0;
817}
818
819/**
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400820 * pci_enable_msi_block - configure device's MSI capability structure
821 * @dev: device to configure
822 * @nvec: number of interrupts to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400824 * Allocate IRQs for a device with the MSI capability.
825 * This function returns a negative errno if an error occurs. If it
826 * is unable to allocate the number of interrupts requested, it returns
827 * the number of interrupts it might be able to allocate. If it successfully
828 * allocates at least the number of interrupts requested, it returns 0 and
829 * updates the @dev's irq member to the lowest new interrupt number; the
830 * other interrupt numbers allocated to this device are consecutive.
831 */
832int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Gavin Shanf4651362013-04-04 16:54:32 +0000834 int status, maxvec;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400835 u16 msgctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Gavin Shanf4651362013-04-04 16:54:32 +0000837 if (!dev->msi_cap)
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400838 return -EINVAL;
Gavin Shanf4651362013-04-04 16:54:32 +0000839
840 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400841 maxvec = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
842 if (nvec > maxvec)
843 return maxvec;
844
845 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellermanc9953a72007-04-05 17:19:08 +1000846 if (status)
847 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700849 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400851 /* Check whether driver already requested MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800852 if (dev->msix_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600853 dev_info(&dev->dev, "can't enable MSI "
854 "(MSI-X already enabled)\n");
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800855 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400857
858 status = msi_capability_init(dev, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return status;
860}
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400861EXPORT_SYMBOL(pci_enable_msi_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Alexander Gordeev08261d82012-11-19 16:02:10 +0100863int pci_enable_msi_block_auto(struct pci_dev *dev, unsigned int *maxvec)
864{
Gavin Shanf4651362013-04-04 16:54:32 +0000865 int ret, nvec;
Alexander Gordeev08261d82012-11-19 16:02:10 +0100866 u16 msgctl;
867
Gavin Shanf4651362013-04-04 16:54:32 +0000868 if (!dev->msi_cap)
Alexander Gordeev08261d82012-11-19 16:02:10 +0100869 return -EINVAL;
870
Gavin Shanf4651362013-04-04 16:54:32 +0000871 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
Alexander Gordeev08261d82012-11-19 16:02:10 +0100872 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
873
874 if (maxvec)
875 *maxvec = ret;
876
877 do {
878 nvec = ret;
879 ret = pci_enable_msi_block(dev, nvec);
880 } while (ret > 0);
881
882 if (ret < 0)
883 return ret;
884 return nvec;
885}
886EXPORT_SYMBOL(pci_enable_msi_block_auto);
887
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400888void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400890 struct msi_desc *desc;
891 u32 mask;
892 u16 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100894 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700895 return;
896
Matthew Wilcox110828c2009-06-16 06:31:45 -0600897 BUG_ON(list_empty(&dev->msi_list));
898 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600899
Gavin Shane375b562013-04-04 16:54:30 +0000900 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700901 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800902 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700903
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900904 /* Return the device with MSI unmasked as initial states */
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600905 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &ctrl);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400906 mask = msi_capable_mask(ctrl);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900907 /* Keep cached state to be restored */
908 __msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100909
910 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400911 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700912}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400913
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900914void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700915{
Yinghai Lud52877c2008-04-23 14:58:09 -0700916 if (!pci_msi_enable || !dev || !dev->msi_enabled)
917 return;
918
919 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900920 free_msi_irqs(dev);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400921 kset_unregister(dev->msi_kset);
922 dev->msi_kset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100924EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/**
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100927 * pci_msix_table_size - return the number of device's MSI-X table entries
928 * @dev: pointer to the pci_dev data structure of MSI-X device function
929 */
930int pci_msix_table_size(struct pci_dev *dev)
931{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100932 u16 control;
933
Gavin Shan520fe9d2013-04-04 16:54:33 +0000934 if (!dev->msix_cap)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100935 return 0;
936
Bjorn Helgaasf84ecd22013-04-17 17:38:32 -0600937 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600938 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100939}
940
941/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 * pci_enable_msix - configure device's MSI-X capability structure
943 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700944 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700945 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 *
947 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700948 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 * MSI-X mode enabled on its hardware device function. A return of zero
950 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700951 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300953 * of irqs or MSI-X vectors available. Driver should use the returned value to
954 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900956int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100958 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700959 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Gavin Shancdf1fd42013-04-04 16:54:31 +0000961 if (!entries || !dev->msix_cap)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900962 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Michael Ellermanc9953a72007-04-05 17:19:08 +1000964 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
965 if (status)
966 return status;
967
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100968 nr_entries = pci_msix_table_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300970 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* Check for any invalid entries */
973 for (i = 0; i < nvec; i++) {
974 if (entries[i].entry >= nr_entries)
975 return -EINVAL; /* invalid entry */
976 for (j = i + 1; j < nvec; j++) {
977 if (entries[i].entry == entries[j].entry)
978 return -EINVAL; /* duplicate entry */
979 }
980 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700981 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700982
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700983 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900984 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600985 dev_info(&dev->dev, "can't enable MSI-X "
986 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return -EINVAL;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return status;
991}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100992EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900994void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100995{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900996 struct msi_desc *entry;
997
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100998 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700999 return;
1000
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +09001001 /* Return the device with MSI-X masked as initial states */
1002 list_for_each_entry(entry, &dev->msi_list, list) {
1003 /* Keep cached states to be restored */
1004 __msix_mask_irq(entry, 1);
1005 }
1006
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001007 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -07001008 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -08001009 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -07001010}
Hidetoshi Setoc9018512009-08-06 11:31:27 +09001011
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001012void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -07001013{
1014 if (!pci_msi_enable || !dev || !dev->msix_enabled)
1015 return;
1016
1017 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001018 free_msi_irqs(dev);
Neil Hormanda8d1c82011-10-06 14:08:18 -04001019 kset_unregister(dev->msi_kset);
1020 dev->msi_kset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001022EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001025 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * @dev: pointer to the pci_dev data structure of MSI(X) device function
1027 *
Steven Coleeaae4b32005-05-03 18:38:30 -06001028 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -07001029 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 * allocated for this device function, are reclaimed to unused state,
1031 * which may be used later on.
1032 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001033void msi_remove_pci_irq_vectors(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (!pci_msi_enable || !dev)
Hidetoshi Seto500559a2009-08-10 10:14:15 +09001036 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001038 if (dev->msi_enabled || dev->msix_enabled)
1039 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001042void pci_no_msi(void)
1043{
1044 pci_msi_enable = 0;
1045}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001046
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001047/**
1048 * pci_msi_enabled - is MSI enabled?
1049 *
1050 * Returns true if MSI has not been disabled by the command-line option
1051 * pci=nomsi.
1052 **/
1053int pci_msi_enabled(void)
1054{
1055 return pci_msi_enable;
1056}
1057EXPORT_SYMBOL(pci_msi_enabled);
1058
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001059void pci_msi_init_pci_dev(struct pci_dev *dev)
1060{
1061 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001062
1063 /* Disable the msi hardware to avoid screaming interrupts
1064 * during boot. This is the power on reset default so
1065 * usually this should be a noop.
1066 */
Gavin Shane375b562013-04-04 16:54:30 +00001067 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1068 if (dev->msi_cap)
1069 msi_set_enable(dev, 0);
1070
1071 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1072 if (dev->msix_cap)
1073 msix_set_enable(dev, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001074}