blob: 0e6d04d7ba4f7c0a2f8494f3e99aceaed1eecacb [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
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010029/* Arch hooks */
30
Michael Ellerman11df1f02009-01-19 11:31:00 +110031#ifndef arch_msi_check_device
32int arch_msi_check_device(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010033{
34 return 0;
35}
Michael Ellerman11df1f02009-01-19 11:31:00 +110036#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010037
Michael Ellerman11df1f02009-01-19 11:31:00 +110038#ifndef arch_setup_msi_irqs
Thomas Gleixner1525bf02010-10-06 16:05:35 -040039# define arch_setup_msi_irqs default_setup_msi_irqs
40# define HAVE_DEFAULT_MSI_SETUP_IRQS
41#endif
42
43#ifdef HAVE_DEFAULT_MSI_SETUP_IRQS
44int default_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010045{
46 struct msi_desc *entry;
47 int ret;
48
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040049 /*
50 * If an architecture wants to support multiple MSI, it needs to
51 * override arch_setup_msi_irqs()
52 */
53 if (type == PCI_CAP_ID_MSI && nvec > 1)
54 return 1;
55
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010056 list_for_each_entry(entry, &dev->msi_list, list) {
57 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +110058 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010059 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +110060 if (ret > 0)
61 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010062 }
63
64 return 0;
65}
Michael Ellerman11df1f02009-01-19 11:31:00 +110066#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010067
Michael Ellerman11df1f02009-01-19 11:31:00 +110068#ifndef arch_teardown_msi_irqs
Thomas Gleixner1525bf02010-10-06 16:05:35 -040069# define arch_teardown_msi_irqs default_teardown_msi_irqs
70# define HAVE_DEFAULT_MSI_TEARDOWN_IRQS
71#endif
72
73#ifdef HAVE_DEFAULT_MSI_TEARDOWN_IRQS
74void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010075{
76 struct msi_desc *entry;
77
78 list_for_each_entry(entry, &dev->msi_list, list) {
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -040079 int i, nvec;
80 if (entry->irq == 0)
81 continue;
82 nvec = 1 << entry->msi_attrib.multiple;
83 for (i = 0; i < nvec; i++)
84 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010085 }
86}
Michael Ellerman11df1f02009-01-19 11:31:00 +110087#endif
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010088
Matthew Wilcox110828c2009-06-16 06:31:45 -060089static void msi_set_enable(struct pci_dev *dev, int pos, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080090{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080091 u16 control;
92
Matthew Wilcox110828c2009-06-16 06:31:45 -060093 BUG_ON(!pos);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -080094
Matthew Wilcox110828c2009-06-16 06:31:45 -060095 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
96 control &= ~PCI_MSI_FLAGS_ENABLE;
97 if (enable)
98 control |= PCI_MSI_FLAGS_ENABLE;
99 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900100}
101
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800102static void msix_set_enable(struct pci_dev *dev, int enable)
103{
104 int pos;
105 u16 control;
106
107 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
108 if (pos) {
109 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
110 control &= ~PCI_MSIX_FLAGS_ENABLE;
111 if (enable)
112 control |= PCI_MSIX_FLAGS_ENABLE;
113 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
114 }
115}
116
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500117static inline __attribute_const__ u32 msi_mask(unsigned x)
118{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700119 /* Don't shift by >= width of type */
120 if (x >= 5)
121 return 0xffffffff;
122 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500123}
124
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400125static inline __attribute_const__ u32 msi_capable_mask(u16 control)
Mitch Williams988cbb12007-03-30 11:54:08 -0700126{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400127 return msi_mask((control >> 1) & 7);
128}
Mitch Williams988cbb12007-03-30 11:54:08 -0700129
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400130static inline __attribute_const__ u32 msi_enabled_mask(u16 control)
131{
132 return msi_mask((control >> 4) & 7);
Mitch Williams988cbb12007-03-30 11:54:08 -0700133}
134
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600135/*
136 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
137 * mask all MSI interrupts by clearing the MSI enable bit does not work
138 * reliably as devices without an INTx disable bit will then generate a
139 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600140 */
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900141static u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400143 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400145 if (!desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900146 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400147
148 mask_bits &= ~mask;
149 mask_bits |= flag;
150 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900151
152 return mask_bits;
153}
154
155static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
156{
157 desc->masked = __msi_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400158}
159
160/*
161 * This internal function does not flush PCI writes to the device.
162 * All users must ensure that they read from the device before either
163 * assuming that the device state is up to date, or returning out of this
164 * file. This saves a few milliseconds when initialising devices with lots
165 * of MSI-X interrupts.
166 */
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900167static u32 __msix_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400168{
169 u32 mask_bits = desc->masked;
170 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900171 PCI_MSIX_ENTRY_VECTOR_CTRL;
Sheng Yang8d805282010-11-11 15:46:55 +0800172 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
173 if (flag)
174 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400175 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900176
177 return mask_bits;
178}
179
180static void msix_mask_irq(struct msi_desc *desc, u32 flag)
181{
182 desc->masked = __msix_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400183}
184
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200185static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400186{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200187 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400188
189 if (desc->msi_attrib.is_msix) {
190 msix_mask_irq(desc, flag);
191 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400192 } else {
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200193 unsigned offset = data->irq - desc->dev->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400194 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400196}
197
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200198void mask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400199{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200200 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400201}
202
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200203void unmask_msi_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400204{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200205 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200208void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700209{
Ben Hutchings30da5522010-07-23 14:56:28 +0100210 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700211
Ben Hutchings30da5522010-07-23 14:56:28 +0100212 if (entry->msi_attrib.is_msix) {
213 void __iomem *base = entry->mask_base +
214 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
215
216 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
217 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
218 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
219 } else {
220 struct pci_dev *dev = entry->dev;
221 int pos = entry->msi_attrib.pos;
222 u16 data;
223
224 pci_read_config_dword(dev, msi_lower_address_reg(pos),
225 &msg->address_lo);
226 if (entry->msi_attrib.is_64) {
227 pci_read_config_dword(dev, msi_upper_address_reg(pos),
228 &msg->address_hi);
229 pci_read_config_word(dev, msi_data_reg(pos, 1), &data);
230 } else {
231 msg->address_hi = 0;
232 pci_read_config_word(dev, msi_data_reg(pos, 0), &data);
233 }
234 msg->data = data;
235 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700236}
237
Yinghai Lu3145e942008-12-05 18:58:34 -0800238void read_msi_msg(unsigned int irq, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700239{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200240 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800241
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200242 __read_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800243}
244
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200245void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Ben Hutchings30da5522010-07-23 14:56:28 +0100246{
Ben Hutchings30da5522010-07-23 14:56:28 +0100247 /* Assert that the cache is valid, assuming that
248 * valid messages are not all-zeroes. */
249 BUG_ON(!(entry->msg.address_hi | entry->msg.address_lo |
250 entry->msg.data));
251
252 *msg = entry->msg;
253}
254
255void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
256{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200257 struct msi_desc *entry = irq_get_msi_desc(irq);
Ben Hutchings30da5522010-07-23 14:56:28 +0100258
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200259 __get_cached_msi_msg(entry, msg);
Ben Hutchings30da5522010-07-23 14:56:28 +0100260}
261
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200262void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800263{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100264 if (entry->dev->current_state != PCI_D0) {
265 /* Don't touch the hardware now */
266 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400267 void __iomem *base;
268 base = entry->mask_base +
269 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
270
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900271 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
272 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
273 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400274 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700275 struct pci_dev *dev = entry->dev;
276 int pos = entry->msi_attrib.pos;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400277 u16 msgctl;
278
279 pci_read_config_word(dev, msi_control_reg(pos), &msgctl);
280 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
281 msgctl |= entry->msi_attrib.multiple << 4;
282 pci_write_config_word(dev, msi_control_reg(pos), msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700283
284 pci_write_config_dword(dev, msi_lower_address_reg(pos),
285 msg->address_lo);
286 if (entry->msi_attrib.is_64) {
287 pci_write_config_dword(dev, msi_upper_address_reg(pos),
288 msg->address_hi);
289 pci_write_config_word(dev, msi_data_reg(pos, 1),
290 msg->data);
291 } else {
292 pci_write_config_word(dev, msi_data_reg(pos, 0),
293 msg->data);
294 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700295 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700296 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700297}
298
Yinghai Lu3145e942008-12-05 18:58:34 -0800299void write_msi_msg(unsigned int irq, struct msi_msg *msg)
300{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200301 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800302
Thomas Gleixner39431ac2010-09-28 19:09:51 +0200303 __write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800304}
305
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900306static void free_msi_irqs(struct pci_dev *dev)
307{
308 struct msi_desc *entry, *tmp;
309
310 list_for_each_entry(entry, &dev->msi_list, list) {
311 int i, nvec;
312 if (!entry->irq)
313 continue;
314 nvec = 1 << entry->msi_attrib.multiple;
315 for (i = 0; i < nvec; i++)
316 BUG_ON(irq_has_action(entry->irq + i));
317 }
318
319 arch_teardown_msi_irqs(dev);
320
321 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
322 if (entry->msi_attrib.is_msix) {
323 if (list_is_last(&entry->list, &dev->msi_list))
324 iounmap(entry->mask_base);
325 }
326 list_del(&entry->list);
327 kfree(entry);
328 }
329}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900330
Matthew Wilcox379f5322009-03-17 08:54:07 -0400331static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400333 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
334 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return NULL;
336
Matthew Wilcox379f5322009-03-17 08:54:07 -0400337 INIT_LIST_HEAD(&desc->list);
338 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Matthew Wilcox379f5322009-03-17 08:54:07 -0400340 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
David Millerba698ad2007-10-25 01:16:30 -0700343static void pci_intx_for_msi(struct pci_dev *dev, int enable)
344{
345 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
346 pci_intx(dev, enable);
347}
348
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100349static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800350{
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700351 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800352 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700353 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800354
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800355 if (!dev->msi_enabled)
356 return;
357
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200358 entry = irq_get_msi_desc(dev->irq);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700359 pos = entry->msi_attrib.pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800360
David Millerba698ad2007-10-25 01:16:30 -0700361 pci_intx_for_msi(dev, 0);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600362 msi_set_enable(dev, pos, 0);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700363 write_msi_msg(dev->irq, &entry->msg);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700364
365 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &control);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400366 msi_mask_irq(entry, msi_capable_mask(control), entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700367 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400368 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Shaohua Li41017f02006-02-08 17:11:38 +0800369 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100370}
371
372static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800373{
Shaohua Li41017f02006-02-08 17:11:38 +0800374 int pos;
Shaohua Li41017f02006-02-08 17:11:38 +0800375 struct msi_desc *entry;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700376 u16 control;
Shaohua Li41017f02006-02-08 17:11:38 +0800377
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700378 if (!dev->msix_enabled)
379 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700380 BUG_ON(list_empty(&dev->msi_list));
Hidetoshi Seto9cc8d542009-08-06 11:32:04 +0900381 entry = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700382 pos = entry->msi_attrib.pos;
383 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700384
Shaohua Li41017f02006-02-08 17:11:38 +0800385 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700386 pci_intx_for_msi(dev, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700387 control |= PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL;
388 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800389
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000390 list_for_each_entry(entry, &dev->msi_list, list) {
391 write_msi_msg(entry->irq, &entry->msg);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400392 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800393 }
Shaohua Li41017f02006-02-08 17:11:38 +0800394
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700395 control &= ~PCI_MSIX_FLAGS_MASKALL;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700396 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
Shaohua Li41017f02006-02-08 17:11:38 +0800397}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100398
399void pci_restore_msi_state(struct pci_dev *dev)
400{
401 __pci_restore_msi_state(dev);
402 __pci_restore_msix_state(dev);
403}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600404EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/**
407 * msi_capability_init - configure device's MSI capability structure
408 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400409 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400411 * Setup the MSI capability structure of the device with the requested
412 * number of interrupts. A return value of zero indicates the successful
413 * setup of an entry with the new MSI irq. A negative return value indicates
414 * an error, and a positive return value indicates the number of interrupts
415 * which could have been allocated.
416 */
417static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 struct msi_desc *entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000420 int pos, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 u16 control;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400422 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900424 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600425 msi_set_enable(dev, pos, 0); /* Disable MSI during set up */
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 pci_read_config_word(dev, msi_control_reg(pos), &control);
428 /* MSI Entry Initialization */
Matthew Wilcox379f5322009-03-17 08:54:07 -0400429 entry = alloc_msi_entry(dev);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700430 if (!entry)
431 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700432
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900433 entry->msi_attrib.is_msix = 0;
434 entry->msi_attrib.is_64 = is_64bit_address(control);
435 entry->msi_attrib.entry_nr = 0;
436 entry->msi_attrib.maskbit = is_mask_bit_support(control);
437 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
438 entry->msi_attrib.pos = pos;
Hidetoshi Seto0db29af2008-12-24 17:27:04 +0900439
Hidetoshi Seto67b5db62009-04-20 10:54:59 +0900440 entry->mask_pos = msi_mask_reg(pos, entry->msi_attrib.is_64);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400441 /* All MSIs are unmasked by default, Mask them all */
442 if (entry->msi_attrib.maskbit)
443 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
444 mask = msi_capable_mask(control);
445 msi_mask_irq(entry, mask, mask);
446
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700447 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* Configure MSI capability structure */
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400450 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000451 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900452 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900453 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000454 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500455 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700458 pci_intx_for_msi(dev, 0);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600459 msi_set_enable(dev, pos, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800460 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Michael Ellerman7fe37302007-04-18 19:39:21 +1000462 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 0;
464}
465
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900466static void __iomem *msix_map_region(struct pci_dev *dev, unsigned pos,
467 unsigned nr_entries)
468{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900469 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900470 u32 table_offset;
471 u8 bir;
472
473 pci_read_config_dword(dev, msix_table_offset_reg(pos), &table_offset);
474 bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
475 table_offset &= ~PCI_MSIX_FLAGS_BIRMASK;
476 phys_addr = pci_resource_start(dev, bir) + table_offset;
477
478 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
479}
480
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900481static int msix_setup_entries(struct pci_dev *dev, unsigned pos,
482 void __iomem *base, struct msix_entry *entries,
483 int nvec)
484{
485 struct msi_desc *entry;
486 int i;
487
488 for (i = 0; i < nvec; i++) {
489 entry = alloc_msi_entry(dev);
490 if (!entry) {
491 if (!i)
492 iounmap(base);
493 else
494 free_msi_irqs(dev);
495 /* No enough memory. Don't try again */
496 return -ENOMEM;
497 }
498
499 entry->msi_attrib.is_msix = 1;
500 entry->msi_attrib.is_64 = 1;
501 entry->msi_attrib.entry_nr = entries[i].entry;
502 entry->msi_attrib.default_irq = dev->irq;
503 entry->msi_attrib.pos = pos;
504 entry->mask_base = base;
505
506 list_add_tail(&entry->list, &dev->msi_list);
507 }
508
509 return 0;
510}
511
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900512static void msix_program_entries(struct pci_dev *dev,
513 struct msix_entry *entries)
514{
515 struct msi_desc *entry;
516 int i = 0;
517
518 list_for_each_entry(entry, &dev->msi_list, list) {
519 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
520 PCI_MSIX_ENTRY_VECTOR_CTRL;
521
522 entries[i].vector = entry->irq;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200523 irq_set_msi_desc(entry->irq, entry);
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900524 entry->masked = readl(entry->mask_base + offset);
525 msix_mask_irq(entry, 1);
526 i++;
527 }
528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/**
531 * msix_capability_init - configure device's MSI-X capability
532 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700533 * @entries: pointer to an array of struct msix_entry entries
534 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600536 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700537 * single MSI-X irq. A return of zero indicates the successful setup of
538 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 **/
540static int msix_capability_init(struct pci_dev *dev,
541 struct msix_entry *entries, int nvec)
542{
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900543 int pos, ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900544 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 void __iomem *base;
546
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900547 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700548 pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control);
549
550 /* Ensure MSI-X is disabled while it is set up */
551 control &= ~PCI_MSIX_FLAGS_ENABLE;
552 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 /* Request & Map MSI-X table region */
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900555 base = msix_map_region(dev, pos, multi_msix_capable(control));
556 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -ENOMEM;
558
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900559 ret = msix_setup_entries(dev, pos, base, entries, nvec);
560 if (ret)
561 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000562
563 ret = arch_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900564 if (ret)
565 goto error;
Michael Ellerman9c831332007-04-18 19:39:21 +1000566
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700567 /*
568 * Some devices require MSI-X to be enabled before we can touch the
569 * MSI-X registers. We need to mask all the vectors to prevent
570 * interrupts coming in before they're fully set up.
571 */
572 control |= PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE;
573 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
574
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900575 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700576
577 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700578 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800579 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700581 control &= ~PCI_MSIX_FLAGS_MASKALL;
582 pci_write_config_word(dev, pos + PCI_MSIX_FLAGS, control);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900585
586error:
587 if (ret < 0) {
588 /*
589 * If we had some success, report the number of irqs
590 * we succeeded in setting up.
591 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900592 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900593 int avail = 0;
594
595 list_for_each_entry(entry, &dev->msi_list, list) {
596 if (entry->irq != 0)
597 avail++;
598 }
599 if (avail != 0)
600 ret = avail;
601 }
602
603 free_msi_irqs(dev);
604
605 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608/**
Michael Ellerman17bbc122007-04-05 17:19:07 +1000609 * pci_msi_check_device - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400610 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000611 * @nvec: how many MSIs have been requested ?
Michael Ellermanb1e23032007-03-22 21:51:39 +1100612 * @type: are we checking for MSI or MSI-X ?
Brice Goglin24334a12006-08-31 01:55:07 -0400613 *
Brice Goglin0306ebf2006-10-05 10:24:31 +0200614 * Look at global flags, the device itself, and its parent busses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000615 * to determine if MSI/-X are supported for the device. If MSI/-X is
616 * supported return 0, else return an error code.
Brice Goglin24334a12006-08-31 01:55:07 -0400617 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900618static int pci_msi_check_device(struct pci_dev *dev, int nvec, int type)
Brice Goglin24334a12006-08-31 01:55:07 -0400619{
620 struct pci_bus *bus;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000621 int ret;
Brice Goglin24334a12006-08-31 01:55:07 -0400622
Brice Goglin0306ebf2006-10-05 10:24:31 +0200623 /* MSI must be globally enabled and supported by the device */
Brice Goglin24334a12006-08-31 01:55:07 -0400624 if (!pci_msi_enable || !dev || dev->no_msi)
625 return -EINVAL;
626
Michael Ellerman314e77b2007-04-05 17:19:12 +1000627 /*
628 * You can't ask to have 0 or less MSIs configured.
629 * a) it's stupid ..
630 * b) the list manipulation code assumes nvec >= 1.
631 */
632 if (nvec < 1)
633 return -ERANGE;
634
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900635 /*
636 * Any bridge which does NOT route MSI transactions from its
637 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200638 * the secondary pci_bus.
639 * We expect only arch-specific PCI host bus controller driver
640 * or quirks for specific PCI bridges to be setting NO_MSI.
641 */
Brice Goglin24334a12006-08-31 01:55:07 -0400642 for (bus = dev->bus; bus; bus = bus->parent)
643 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
644 return -EINVAL;
645
Michael Ellermanc9953a72007-04-05 17:19:08 +1000646 ret = arch_msi_check_device(dev, nvec, type);
647 if (ret)
648 return ret;
649
Michael Ellermanb1e23032007-03-22 21:51:39 +1100650 if (!pci_find_capability(dev, type))
651 return -EINVAL;
652
Brice Goglin24334a12006-08-31 01:55:07 -0400653 return 0;
654}
655
656/**
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400657 * pci_enable_msi_block - configure device's MSI capability structure
658 * @dev: device to configure
659 * @nvec: number of interrupts to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400661 * Allocate IRQs for a device with the MSI capability.
662 * This function returns a negative errno if an error occurs. If it
663 * is unable to allocate the number of interrupts requested, it returns
664 * the number of interrupts it might be able to allocate. If it successfully
665 * allocates at least the number of interrupts requested, it returns 0 and
666 * updates the @dev's irq member to the lowest new interrupt number; the
667 * other interrupt numbers allocated to this device are consecutive.
668 */
669int pci_enable_msi_block(struct pci_dev *dev, unsigned int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400671 int status, pos, maxvec;
672 u16 msgctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400674 pos = pci_find_capability(dev, PCI_CAP_ID_MSI);
675 if (!pos)
676 return -EINVAL;
677 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
678 maxvec = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
679 if (nvec > maxvec)
680 return maxvec;
681
682 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellermanc9953a72007-04-05 17:19:08 +1000683 if (status)
684 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700686 WARN_ON(!!dev->msi_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400688 /* Check whether driver already requested MSI-X irqs */
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800689 if (dev->msix_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600690 dev_info(&dev->dev, "can't enable MSI "
691 "(MSI-X already enabled)\n");
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800692 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400694
695 status = msi_capability_init(dev, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return status;
697}
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400698EXPORT_SYMBOL(pci_enable_msi_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400700void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400702 struct msi_desc *desc;
703 u32 mask;
704 u16 ctrl;
Matthew Wilcox110828c2009-06-16 06:31:45 -0600705 unsigned pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100707 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700708 return;
709
Matthew Wilcox110828c2009-06-16 06:31:45 -0600710 BUG_ON(list_empty(&dev->msi_list));
711 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
712 pos = desc->msi_attrib.pos;
713
714 msi_set_enable(dev, pos, 0);
David Millerba698ad2007-10-25 01:16:30 -0700715 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800716 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700717
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900718 /* Return the device with MSI unmasked as initial states */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600719 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &ctrl);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400720 mask = msi_capable_mask(ctrl);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900721 /* Keep cached state to be restored */
722 __msi_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100723
724 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400725 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700726}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400727
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900728void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700729{
Yinghai Lud52877c2008-04-23 14:58:09 -0700730 if (!pci_msi_enable || !dev || !dev->msi_enabled)
731 return;
732
733 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900734 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100736EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/**
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100739 * pci_msix_table_size - return the number of device's MSI-X table entries
740 * @dev: pointer to the pci_dev data structure of MSI-X device function
741 */
742int pci_msix_table_size(struct pci_dev *dev)
743{
744 int pos;
745 u16 control;
746
747 pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
748 if (!pos)
749 return 0;
750
751 pci_read_config_word(dev, msi_control_reg(pos), &control);
752 return multi_msix_capable(control);
753}
754
755/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 * pci_enable_msix - configure device's MSI-X capability structure
757 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700758 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700759 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *
761 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700762 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * MSI-X mode enabled on its hardware device function. A return of zero
764 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700765 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300767 * of irqs or MSI-X vectors available. Driver should use the returned value to
768 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900770int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100772 int status, nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700773 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Michael Ellermanc9953a72007-04-05 17:19:08 +1000775 if (!entries)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900776 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Michael Ellermanc9953a72007-04-05 17:19:08 +1000778 status = pci_msi_check_device(dev, nvec, PCI_CAP_ID_MSIX);
779 if (status)
780 return status;
781
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100782 nr_entries = pci_msix_table_size(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300784 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 /* Check for any invalid entries */
787 for (i = 0; i < nvec; i++) {
788 if (entries[i].entry >= nr_entries)
789 return -EINVAL; /* invalid entry */
790 for (j = i + 1; j < nvec; j++) {
791 if (entries[i].entry == entries[j].entry)
792 return -EINVAL; /* duplicate entry */
793 }
794 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700795 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700796
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700797 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900798 if (dev->msi_enabled) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600799 dev_info(&dev->dev, "can't enable MSI-X "
800 "(MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return -EINVAL;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 status = msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return status;
805}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100806EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900808void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100809{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900810 struct msi_desc *entry;
811
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100812 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700813 return;
814
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900815 /* Return the device with MSI-X masked as initial states */
816 list_for_each_entry(entry, &dev->msi_list, list) {
817 /* Keep cached states to be restored */
818 __msix_mask_irq(entry, 1);
819 }
820
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800821 msix_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700822 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800823 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700824}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900825
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900826void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700827{
828 if (!pci_msi_enable || !dev || !dev->msix_enabled)
829 return;
830
831 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900832 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100834EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836/**
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700837 * msi_remove_pci_irq_vectors - reclaim MSI(X) irqs to unused state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 * @dev: pointer to the pci_dev data structure of MSI(X) device function
839 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600840 * Being called during hotplug remove, from which the device function
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700841 * is hot-removed. All previous assigned MSI/MSI-X irqs, if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * allocated for this device function, are reclaimed to unused state,
843 * which may be used later on.
844 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900845void msi_remove_pci_irq_vectors(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (!pci_msi_enable || !dev)
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900848 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900850 if (dev->msi_enabled || dev->msix_enabled)
851 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Matthew Wilcox309e57d2006-03-05 22:33:34 -0700854void pci_no_msi(void)
855{
856 pci_msi_enable = 0;
857}
Michael Ellermanc9953a72007-04-05 17:19:08 +1000858
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700859/**
860 * pci_msi_enabled - is MSI enabled?
861 *
862 * Returns true if MSI has not been disabled by the command-line option
863 * pci=nomsi.
864 **/
865int pci_msi_enabled(void)
866{
867 return pci_msi_enable;
868}
869EXPORT_SYMBOL(pci_msi_enabled);
870
Michael Ellerman4aa9bc92007-04-05 17:19:10 +1000871void pci_msi_init_pci_dev(struct pci_dev *dev)
872{
873 INIT_LIST_HEAD(&dev->msi_list);
874}