blob: 4befe09053c1968810c104ed7a5234ec4ec8ccf9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: msi.c
3 * Purpose: PCI Message Signaled Interrupt (MSI)
4 *
5 * Copyright (C) 2003-2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
Eric W. Biederman1ce03372006-10-04 02:16:41 -07009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/irq.h>
12#include <linux/interrupt.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/pci.h>
16#include <linux/proc_fs.h>
Eric W. Biederman3b7d1922006-10-04 02:16:59 -070017#include <linux/msi.h>
Dan Williams4fdadeb2007-04-26 18:21:38 -070018#include <linux/smp.h>
Hidetoshi Seto500559a2009-08-10 10:14:15 +090019#include <linux/errno.h>
20#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Jiang Liu3878eae2014-11-11 21:02:18 +080022#include <linux/irqdomain.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;
Yijing Wang38737d82014-10-27 10:44:36 +080027int pci_msi_ignore_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Bjorn Helgaas527eee22013-04-17 17:44:48 -060029#define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
30
Jiang Liu8e047ad2014-11-15 22:24:07 +080031#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
32static struct irq_domain *pci_msi_default_domain;
33static DEFINE_MUTEX(pci_msi_domain_lock);
34
35struct irq_domain * __weak arch_get_pci_msi_domain(struct pci_dev *dev)
36{
37 return pci_msi_default_domain;
38}
39
40static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
41{
42 struct irq_domain *domain;
43
44 domain = arch_get_pci_msi_domain(dev);
45 if (domain)
46 return pci_msi_domain_alloc_irqs(domain, dev, nvec, type);
47
48 return arch_setup_msi_irqs(dev, nvec, type);
49}
50
51static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
52{
53 struct irq_domain *domain;
54
55 domain = arch_get_pci_msi_domain(dev);
56 if (domain)
57 pci_msi_domain_free_irqs(domain, dev);
58 else
59 arch_teardown_msi_irqs(dev);
60}
61#else
62#define pci_msi_setup_msi_irqs arch_setup_msi_irqs
63#define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
64#endif
Bjorn Helgaas527eee22013-04-17 17:44:48 -060065
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010066/* Arch hooks */
67
Yijing Wang262a2ba2014-11-11 15:22:45 -070068struct msi_controller * __weak pcibios_msi_controller(struct pci_dev *dev)
69{
70 return NULL;
71}
72
73static struct msi_controller *pci_msi_controller(struct pci_dev *dev)
74{
75 struct msi_controller *msi_ctrl = dev->bus->msi;
76
77 if (msi_ctrl)
78 return msi_ctrl;
79
80 return pcibios_msi_controller(dev);
81}
82
Thomas Petazzoni4287d822013-08-09 22:27:06 +020083int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
84{
Yijing Wang262a2ba2014-11-11 15:22:45 -070085 struct msi_controller *chip = pci_msi_controller(dev);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020086 int err;
87
88 if (!chip || !chip->setup_irq)
89 return -EINVAL;
90
91 err = chip->setup_irq(chip, dev, desc);
92 if (err < 0)
93 return err;
94
95 irq_set_chip_data(desc->irq, chip);
96
97 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020098}
99
100void __weak arch_teardown_msi_irq(unsigned int irq)
101{
Yijing Wangc2791b82014-11-11 17:45:45 -0700102 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +0200103
104 if (!chip || !chip->teardown_irq)
105 return;
106
107 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200108}
109
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200110int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100111{
112 struct msi_desc *entry;
113 int ret;
114
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400115 /*
116 * If an architecture wants to support multiple MSI, it needs to
117 * override arch_setup_msi_irqs()
118 */
119 if (type == PCI_CAP_ID_MSI && nvec > 1)
120 return 1;
121
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100122 list_for_each_entry(entry, &dev->msi_list, list) {
123 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100124 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100125 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100126 if (ret > 0)
127 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100128 }
129
130 return 0;
131}
132
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200133/*
134 * We have a default implementation available as a separate non-weak
135 * function, as it is used by the Xen x86 PCI code
136 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400137void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100138{
Jiang Liu63a7b172014-11-06 22:20:32 +0800139 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100140 struct msi_desc *entry;
141
Jiang Liu63a7b172014-11-06 22:20:32 +0800142 list_for_each_entry(entry, &dev->msi_list, list)
143 if (entry->irq)
144 for (i = 0; i < entry->nvec_used; i++)
145 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100146}
147
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200148void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
149{
150 return default_teardown_msi_irqs(dev);
151}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500152
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800153static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500154{
155 struct msi_desc *entry;
156
157 entry = NULL;
158 if (dev->msix_enabled) {
159 list_for_each_entry(entry, &dev->msi_list, list) {
160 if (irq == entry->irq)
161 break;
162 }
163 } else if (dev->msi_enabled) {
164 entry = irq_get_msi_desc(irq);
165 }
166
167 if (entry)
Jiang Liu83a18912014-11-09 23:10:34 +0800168 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500169}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200170
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800171void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200172{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800173 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200174}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500175
Gavin Shane375b562013-04-04 16:54:30 +0000176static void msi_set_enable(struct pci_dev *dev, int enable)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800177{
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800178 u16 control;
179
Gavin Shane375b562013-04-04 16:54:30 +0000180 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600181 control &= ~PCI_MSI_FLAGS_ENABLE;
182 if (enable)
183 control |= PCI_MSI_FLAGS_ENABLE;
Gavin Shane375b562013-04-04 16:54:30 +0000184 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Hidetoshi Seto5ca5c022008-05-19 13:48:17 +0900185}
186
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800187static void msix_clear_and_set_ctrl(struct pci_dev *dev, u16 clear, u16 set)
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800188{
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800189 u16 ctrl;
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800190
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800191 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
192 ctrl &= ~clear;
193 ctrl |= set;
194 pci_write_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, ctrl);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800195}
196
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500197static inline __attribute_const__ u32 msi_mask(unsigned x)
198{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700199 /* Don't shift by >= width of type */
200 if (x >= 5)
201 return 0xffffffff;
202 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500203}
204
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600205/*
206 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
207 * mask all MSI interrupts by clearing the MSI enable bit does not work
208 * reliably as devices without an INTx disable bit will then generate a
209 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600210 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100211u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400213 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Yijing Wang38737d82014-10-27 10:44:36 +0800215 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900216 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400217
218 mask_bits &= ~mask;
219 mask_bits |= flag;
220 pci_write_config_dword(desc->dev, desc->mask_pos, mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900221
222 return mask_bits;
223}
224
225static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
226{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100227 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400228}
229
230/*
231 * This internal function does not flush PCI writes to the device.
232 * All users must ensure that they read from the device before either
233 * assuming that the device state is up to date, or returning out of this
234 * file. This saves a few milliseconds when initialising devices with lots
235 * of MSI-X interrupts.
236 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100237u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400238{
239 u32 mask_bits = desc->masked;
240 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900241 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800242
243 if (pci_msi_ignore_mask)
244 return 0;
245
Sheng Yang8d805282010-11-11 15:46:55 +0800246 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
247 if (flag)
248 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400249 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900250
251 return mask_bits;
252}
253
254static void msix_mask_irq(struct msi_desc *desc, u32 flag)
255{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100256 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400257}
258
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200259static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400260{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200261 struct msi_desc *desc = irq_data_get_msi(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400262
263 if (desc->msi_attrib.is_msix) {
264 msix_mask_irq(desc, flag);
265 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400266 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800267 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400268 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400270}
271
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100272/**
273 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
274 * @data: pointer to irqdata associated to that interrupt
275 */
276void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400277{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200278 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400279}
280
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100281/**
282 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
283 * @data: pointer to irqdata associated to that interrupt
284 */
285void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400286{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200287 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800290void default_restore_msi_irqs(struct pci_dev *dev)
291{
292 struct msi_desc *entry;
293
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800294 list_for_each_entry(entry, &dev->msi_list, list)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800295 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800296}
297
Jiang Liu891d4a42014-11-09 23:10:33 +0800298void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700299{
Ben Hutchings30da5522010-07-23 14:56:28 +0100300 BUG_ON(entry->dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700301
Ben Hutchings30da5522010-07-23 14:56:28 +0100302 if (entry->msi_attrib.is_msix) {
303 void __iomem *base = entry->mask_base +
304 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
305
306 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
307 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
308 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
309 } else {
310 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600311 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100312 u16 data;
313
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600314 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
315 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100316 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600317 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
318 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600319 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100320 } else {
321 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600322 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100323 }
324 msg->data = data;
325 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700326}
327
Jiang Liu83a18912014-11-09 23:10:34 +0800328void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800329{
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100330 if (entry->dev->current_state != PCI_D0) {
331 /* Don't touch the hardware now */
332 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400333 void __iomem *base;
334 base = entry->mask_base +
335 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
336
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900337 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
338 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
339 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400340 } else {
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700341 struct pci_dev *dev = entry->dev;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600342 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400343 u16 msgctl;
344
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600345 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400346 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
347 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600348 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700349
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600350 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
351 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700352 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600353 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
354 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600355 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
356 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700357 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600358 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
359 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700360 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700361 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700362 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700363}
364
Jiang Liu83a18912014-11-09 23:10:34 +0800365void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800366{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200367 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800368
Jiang Liu83a18912014-11-09 23:10:34 +0800369 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800370}
Jiang Liu83a18912014-11-09 23:10:34 +0800371EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800372
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900373static void free_msi_irqs(struct pci_dev *dev)
374{
375 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800376 struct attribute **msi_attrs;
377 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800378 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900379
Jiang Liu63a7b172014-11-06 22:20:32 +0800380 list_for_each_entry(entry, &dev->msi_list, list)
381 if (entry->irq)
382 for (i = 0; i < entry->nvec_used; i++)
383 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900384
Jiang Liu8e047ad2014-11-15 22:24:07 +0800385 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900386
387 list_for_each_entry_safe(entry, tmp, &dev->msi_list, list) {
388 if (entry->msi_attrib.is_msix) {
389 if (list_is_last(&entry->list, &dev->msi_list))
390 iounmap(entry->mask_base);
391 }
Neil Horman424eb392012-01-03 10:29:54 -0500392
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900393 list_del(&entry->list);
394 kfree(entry);
395 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800396
397 if (dev->msi_irq_groups) {
398 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
399 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700400 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800401 dev_attr = container_of(msi_attrs[count],
402 struct device_attribute, attr);
403 kfree(dev_attr->attr.name);
404 kfree(dev_attr);
405 ++count;
406 }
407 kfree(msi_attrs);
408 kfree(dev->msi_irq_groups[0]);
409 kfree(dev->msi_irq_groups);
410 dev->msi_irq_groups = NULL;
411 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900412}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900413
Matthew Wilcox379f5322009-03-17 08:54:07 -0400414static struct msi_desc *alloc_msi_entry(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Matthew Wilcox379f5322009-03-17 08:54:07 -0400416 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
417 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return NULL;
419
Matthew Wilcox379f5322009-03-17 08:54:07 -0400420 INIT_LIST_HEAD(&desc->list);
421 desc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Matthew Wilcox379f5322009-03-17 08:54:07 -0400423 return desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
David Millerba698ad2007-10-25 01:16:30 -0700426static void pci_intx_for_msi(struct pci_dev *dev, int enable)
427{
428 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
429 pci_intx(dev, enable);
430}
431
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100432static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800433{
Shaohua Li41017f02006-02-08 17:11:38 +0800434 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700435 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800436
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800437 if (!dev->msi_enabled)
438 return;
439
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200440 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800441
David Millerba698ad2007-10-25 01:16:30 -0700442 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000443 msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800444 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700445
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600446 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800447 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
448 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700449 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400450 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600451 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100452}
453
454static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800455{
Shaohua Li41017f02006-02-08 17:11:38 +0800456 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800457
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700458 if (!dev->msix_enabled)
459 return;
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700460 BUG_ON(list_empty(&dev->msi_list));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700461
Shaohua Li41017f02006-02-08 17:11:38 +0800462 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700463 pci_intx_for_msi(dev, 0);
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800464 msix_clear_and_set_ctrl(dev, 0,
465 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800466
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800467 arch_restore_msi_irqs(dev);
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800468 list_for_each_entry(entry, &dev->msi_list, list)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400469 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800470
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800471 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800472}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100473
474void pci_restore_msi_state(struct pci_dev *dev)
475{
476 __pci_restore_msi_state(dev);
477 __pci_restore_msix_state(dev);
478}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600479EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800480
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800481static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400482 char *buf)
483{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800484 struct msi_desc *entry;
485 unsigned long irq;
486 int retval;
487
488 retval = kstrtoul(attr->attr.name, 10, &irq);
489 if (retval)
490 return retval;
491
Yijing Wange11ece52014-07-08 10:09:19 +0800492 entry = irq_get_msi_desc(irq);
493 if (entry)
494 return sprintf(buf, "%s\n",
495 entry->msi_attrib.is_msix ? "msix" : "msi");
496
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800497 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400498}
499
Neil Hormanda8d1c82011-10-06 14:08:18 -0400500static int populate_msi_sysfs(struct pci_dev *pdev)
501{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800502 struct attribute **msi_attrs;
503 struct attribute *msi_attr;
504 struct device_attribute *msi_dev_attr;
505 struct attribute_group *msi_irq_group;
506 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400507 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800508 int ret = -ENOMEM;
509 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400510 int count = 0;
511
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800512 /* Determine how many msi entries we have */
Jiang Liu3f3ceca2014-11-06 22:20:31 +0800513 list_for_each_entry(entry, &pdev->msi_list, list)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800514 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800515 if (!num_msi)
516 return 0;
517
518 /* Dynamically create the MSI attributes for the PCI device */
519 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
520 if (!msi_attrs)
521 return -ENOMEM;
522 list_for_each_entry(entry, &pdev->msi_list, list) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700523 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600524 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700525 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600526 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700527
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800528 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600529 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
530 entry->irq);
531 if (!msi_dev_attr->attr.name)
532 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800533 msi_dev_attr->attr.mode = S_IRUGO;
534 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800535 ++count;
536 }
537
538 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
539 if (!msi_irq_group)
540 goto error_attrs;
541 msi_irq_group->name = "msi_irqs";
542 msi_irq_group->attrs = msi_attrs;
543
544 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
545 if (!msi_irq_groups)
546 goto error_irq_group;
547 msi_irq_groups[0] = msi_irq_group;
548
549 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
550 if (ret)
551 goto error_irq_groups;
552 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400553
554 return 0;
555
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800556error_irq_groups:
557 kfree(msi_irq_groups);
558error_irq_group:
559 kfree(msi_irq_group);
560error_attrs:
561 count = 0;
562 msi_attr = msi_attrs[count];
563 while (msi_attr) {
564 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
565 kfree(msi_attr->name);
566 kfree(msi_dev_attr);
567 ++count;
568 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400569 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700570 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400571 return ret;
572}
573
Jiang Liu63a7b172014-11-06 22:20:32 +0800574static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800575{
576 u16 control;
577 struct msi_desc *entry;
578
579 /* MSI Entry Initialization */
580 entry = alloc_msi_entry(dev);
581 if (!entry)
582 return NULL;
583
584 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
585
586 entry->msi_attrib.is_msix = 0;
587 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
588 entry->msi_attrib.entry_nr = 0;
589 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
590 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800591 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800592 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
593 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800594
595 if (control & PCI_MSI_FLAGS_64BIT)
596 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
597 else
598 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
599
600 /* Save the initial mask status */
601 if (entry->msi_attrib.maskbit)
602 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
603
604 return entry;
605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/**
608 * msi_capability_init - configure device's MSI capability structure
609 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400610 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400612 * Setup the MSI capability structure of the device with the requested
613 * number of interrupts. A return value of zero indicates the successful
614 * setup of an entry with the new MSI irq. A negative return value indicates
615 * an error, and a positive return value indicates the number of interrupts
616 * which could have been allocated.
617 */
618static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000621 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400622 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Gavin Shane375b562013-04-04 16:54:30 +0000624 msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600625
Jiang Liu63a7b172014-11-06 22:20:32 +0800626 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700627 if (!entry)
628 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700629
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400630 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800631 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400632 msi_mask_irq(entry, mask, mask);
633
Eric W. Biederman0dd11f92007-06-01 00:46:32 -0700634 list_add_tail(&entry->list, &dev->msi_list);
Michael Ellerman9c831332007-04-18 19:39:21 +1000635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800637 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000638 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900639 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900640 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000641 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500642 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700643
Neil Hormanda8d1c82011-10-06 14:08:18 -0400644 ret = populate_msi_sysfs(dev);
645 if (ret) {
646 msi_mask_irq(entry, mask, ~mask);
647 free_msi_irqs(dev);
648 return ret;
649 }
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700652 pci_intx_for_msi(dev, 0);
Gavin Shane375b562013-04-04 16:54:30 +0000653 msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800654 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Michael Ellerman7fe37302007-04-18 19:39:21 +1000656 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return 0;
658}
659
Gavin Shan520fe9d2013-04-04 16:54:33 +0000660static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900661{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900662 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900663 u32 table_offset;
664 u8 bir;
665
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600666 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
667 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600668 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
669 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900670 phys_addr = pci_resource_start(dev, bir) + table_offset;
671
672 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
673}
674
Gavin Shan520fe9d2013-04-04 16:54:33 +0000675static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
676 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900677{
678 struct msi_desc *entry;
679 int i;
680
681 for (i = 0; i < nvec; i++) {
682 entry = alloc_msi_entry(dev);
683 if (!entry) {
684 if (!i)
685 iounmap(base);
686 else
687 free_msi_irqs(dev);
688 /* No enough memory. Don't try again */
689 return -ENOMEM;
690 }
691
692 entry->msi_attrib.is_msix = 1;
693 entry->msi_attrib.is_64 = 1;
694 entry->msi_attrib.entry_nr = entries[i].entry;
695 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900696 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800697 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900698
699 list_add_tail(&entry->list, &dev->msi_list);
700 }
701
702 return 0;
703}
704
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900705static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000706 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900707{
708 struct msi_desc *entry;
709 int i = 0;
710
711 list_for_each_entry(entry, &dev->msi_list, list) {
712 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
713 PCI_MSIX_ENTRY_VECTOR_CTRL;
714
715 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900716 entry->masked = readl(entry->mask_base + offset);
717 msix_mask_irq(entry, 1);
718 i++;
719 }
720}
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/**
723 * msix_capability_init - configure device's MSI-X capability
724 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700725 * @entries: pointer to an array of struct msix_entry entries
726 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600728 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700729 * single MSI-X irq. A return of zero indicates the successful setup of
730 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 **/
732static int msix_capability_init(struct pci_dev *dev,
733 struct msix_entry *entries, int nvec)
734{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000735 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900736 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 void __iomem *base;
738
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700739 /* Ensure MSI-X is disabled while it is set up */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800740 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700741
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800742 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600744 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900745 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENOMEM;
747
Gavin Shan520fe9d2013-04-04 16:54:33 +0000748 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900749 if (ret)
750 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000751
Jiang Liu8e047ad2014-11-15 22:24:07 +0800752 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900753 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100754 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000755
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700756 /*
757 * Some devices require MSI-X to be enabled before we can touch the
758 * MSI-X registers. We need to mask all the vectors to prevent
759 * interrupts coming in before they're fully set up.
760 */
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800761 msix_clear_and_set_ctrl(dev, 0,
762 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700763
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900764 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700765
Neil Hormanda8d1c82011-10-06 14:08:18 -0400766 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100767 if (ret)
768 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400769
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700770 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700771 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800772 dev->msix_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800774 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900777
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100778out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900779 if (ret < 0) {
780 /*
781 * If we had some success, report the number of irqs
782 * we succeeded in setting up.
783 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900784 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900785 int avail = 0;
786
787 list_for_each_entry(entry, &dev->msi_list, list) {
788 if (entry->irq != 0)
789 avail++;
790 }
791 if (avail != 0)
792 ret = avail;
793 }
794
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100795out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900796 free_msi_irqs(dev);
797
798 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600802 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400803 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000804 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400805 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700806 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000807 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600808 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400809 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600810static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400811{
812 struct pci_bus *bus;
813
Brice Goglin0306ebf2006-10-05 10:24:31 +0200814 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600815 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600816 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600817
818 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600819 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400820
Michael Ellerman314e77b2007-04-05 17:19:12 +1000821 /*
822 * You can't ask to have 0 or less MSIs configured.
823 * a) it's stupid ..
824 * b) the list manipulation code assumes nvec >= 1.
825 */
826 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600827 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000828
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900829 /*
830 * Any bridge which does NOT route MSI transactions from its
831 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200832 * the secondary pci_bus.
833 * We expect only arch-specific PCI host bus controller driver
834 * or quirks for specific PCI bridges to be setting NO_MSI.
835 */
Brice Goglin24334a12006-08-31 01:55:07 -0400836 for (bus = dev->bus; bus; bus = bus->parent)
837 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600838 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400839
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600840 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400841}
842
843/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100844 * pci_msi_vec_count - Return the number of MSI vectors a device can send
845 * @dev: device to report about
846 *
847 * This function returns the number of MSI vectors a device requested via
848 * Multiple Message Capable register. It returns a negative errno if the
849 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
850 * and returns a power of two, up to a maximum of 2^5 (32), according to the
851 * MSI specification.
852 **/
853int pci_msi_vec_count(struct pci_dev *dev)
854{
855 int ret;
856 u16 msgctl;
857
858 if (!dev->msi_cap)
859 return -EINVAL;
860
861 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
862 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
863
864 return ret;
865}
866EXPORT_SYMBOL(pci_msi_vec_count);
867
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400868void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400870 struct msi_desc *desc;
871 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100873 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700874 return;
875
Matthew Wilcox110828c2009-06-16 06:31:45 -0600876 BUG_ON(list_empty(&dev->msi_list));
877 desc = list_first_entry(&dev->msi_list, struct msi_desc, list);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600878
Gavin Shane375b562013-04-04 16:54:30 +0000879 msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700880 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800881 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700882
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900883 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800884 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900885 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100886 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100887
888 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400889 dev->irq = desc->msi_attrib.default_irq;
Yinghai Lud52877c2008-04-23 14:58:09 -0700890}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400891
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900892void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700893{
Yinghai Lud52877c2008-04-23 14:58:09 -0700894 if (!pci_msi_enable || !dev || !dev->msi_enabled)
895 return;
896
897 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900898 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100900EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100903 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100904 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100905 * This function returns the number of device's MSI-X table entries and
906 * therefore the number of MSI-X vectors device is capable of sending.
907 * It returns a negative errno if the device is not capable of sending MSI-X
908 * interrupts.
909 **/
910int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100911{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100912 u16 control;
913
Gavin Shan520fe9d2013-04-04 16:54:33 +0000914 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100915 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100916
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600917 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600918 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100919}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100920EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100921
922/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * pci_enable_msix - configure device's MSI-X capability structure
924 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700925 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700926 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 *
928 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700929 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 * MSI-X mode enabled on its hardware device function. A return of zero
931 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700932 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300934 * of irqs or MSI-X vectors available. Driver should use the returned value to
935 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900937int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600939 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700940 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600942 if (!pci_msi_supported(dev, nvec))
943 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000944
Alexander Gordeev27e20602014-09-23 14:25:11 -0600945 if (!entries)
946 return -EINVAL;
947
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100948 nr_entries = pci_msix_vec_count(dev);
949 if (nr_entries < 0)
950 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300952 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 /* Check for any invalid entries */
955 for (i = 0; i < nvec; i++) {
956 if (entries[i].entry >= nr_entries)
957 return -EINVAL; /* invalid entry */
958 for (j = i + 1; j < nvec; j++) {
959 if (entries[i].entry == entries[j].entry)
960 return -EINVAL; /* duplicate entry */
961 }
962 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700963 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700964
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700965 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900966 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400967 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return -EINVAL;
969 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600970 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100972EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900974void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100975{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900976 struct msi_desc *entry;
977
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100978 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700979 return;
980
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900981 /* Return the device with MSI-X masked as initial states */
982 list_for_each_entry(entry, &dev->msi_list, list) {
983 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100984 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900985 }
986
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800987 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700988 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800989 dev->msix_enabled = 0;
Yinghai Lud52877c2008-04-23 14:58:09 -0700990}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900991
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900992void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700993{
994 if (!pci_msi_enable || !dev || !dev->msix_enabled)
995 return;
996
997 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900998 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001000EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001002void pci_no_msi(void)
1003{
1004 pci_msi_enable = 0;
1005}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001006
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001007/**
1008 * pci_msi_enabled - is MSI enabled?
1009 *
1010 * Returns true if MSI has not been disabled by the command-line option
1011 * pci=nomsi.
1012 **/
1013int pci_msi_enabled(void)
1014{
1015 return pci_msi_enable;
1016}
1017EXPORT_SYMBOL(pci_msi_enabled);
1018
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001019void pci_msi_init_pci_dev(struct pci_dev *dev)
1020{
1021 INIT_LIST_HEAD(&dev->msi_list);
Eric W. Biedermand5dea7d2011-10-17 11:46:06 -07001022
1023 /* Disable the msi hardware to avoid screaming interrupts
1024 * during boot. This is the power on reset default so
1025 * usually this should be a noop.
1026 */
Gavin Shane375b562013-04-04 16:54:30 +00001027 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1028 if (dev->msi_cap)
1029 msi_set_enable(dev, 0);
1030
1031 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1032 if (dev->msix_cap)
Yijing Wang66f0d0c2014-06-19 16:29:53 +08001033 msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001034}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001035
1036/**
1037 * pci_enable_msi_range - configure device's MSI capability structure
1038 * @dev: device to configure
1039 * @minvec: minimal number of interrupts to configure
1040 * @maxvec: maximum number of interrupts to configure
1041 *
1042 * This function tries to allocate a maximum possible number of interrupts in a
1043 * range between @minvec and @maxvec. It returns a negative errno if an error
1044 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1045 * and updates the @dev's irq member to the lowest new interrupt number;
1046 * the other interrupt numbers allocated to this device are consecutive.
1047 **/
1048int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1049{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001050 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001051 int rc;
1052
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001053 if (!pci_msi_supported(dev, minvec))
1054 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001055
1056 WARN_ON(!!dev->msi_enabled);
1057
1058 /* Check whether driver already requested MSI-X irqs */
1059 if (dev->msix_enabled) {
1060 dev_info(&dev->dev,
1061 "can't enable MSI (MSI-X already enabled)\n");
1062 return -EINVAL;
1063 }
1064
Alexander Gordeev302a2522013-12-30 08:28:16 +01001065 if (maxvec < minvec)
1066 return -ERANGE;
1067
Alexander Gordeev034cd972014-04-14 15:28:35 +02001068 nvec = pci_msi_vec_count(dev);
1069 if (nvec < 0)
1070 return nvec;
1071 else if (nvec < minvec)
1072 return -EINVAL;
1073 else if (nvec > maxvec)
1074 nvec = maxvec;
1075
Alexander Gordeev302a2522013-12-30 08:28:16 +01001076 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001077 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001078 if (rc < 0) {
1079 return rc;
1080 } else if (rc > 0) {
1081 if (rc < minvec)
1082 return -ENOSPC;
1083 nvec = rc;
1084 }
1085 } while (rc);
1086
1087 return nvec;
1088}
1089EXPORT_SYMBOL(pci_enable_msi_range);
1090
1091/**
1092 * pci_enable_msix_range - configure device's MSI-X capability structure
1093 * @dev: pointer to the pci_dev data structure of MSI-X device function
1094 * @entries: pointer to an array of MSI-X entries
1095 * @minvec: minimum number of MSI-X irqs requested
1096 * @maxvec: maximum number of MSI-X irqs requested
1097 *
1098 * Setup the MSI-X capability structure of device function with a maximum
1099 * possible number of interrupts in the range between @minvec and @maxvec
1100 * upon its software driver call to request for MSI-X mode enabled on its
1101 * hardware device function. It returns a negative errno if an error occurs.
1102 * If it succeeds, it returns the actual number of interrupts allocated and
1103 * indicates the successful configuration of MSI-X capability structure
1104 * with new allocated MSI-X interrupts.
1105 **/
1106int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1107 int minvec, int maxvec)
1108{
1109 int nvec = maxvec;
1110 int rc;
1111
1112 if (maxvec < minvec)
1113 return -ERANGE;
1114
1115 do {
1116 rc = pci_enable_msix(dev, entries, nvec);
1117 if (rc < 0) {
1118 return rc;
1119 } else if (rc > 0) {
1120 if (rc < minvec)
1121 return -ENOSPC;
1122 nvec = rc;
1123 }
1124 } while (rc);
1125
1126 return nvec;
1127}
1128EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001129
1130#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1131/**
1132 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1133 * @irq_data: Pointer to interrupt data of the MSI interrupt
1134 * @msg: Pointer to the message
1135 */
1136void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1137{
1138 struct msi_desc *desc = irq_data->msi_desc;
1139
1140 /*
1141 * For MSI-X desc->irq is always equal to irq_data->irq. For
1142 * MSI only the first interrupt of MULTI MSI passes the test.
1143 */
1144 if (desc->irq == irq_data->irq)
1145 __pci_write_msi_msg(desc, msg);
1146}
1147
1148/**
1149 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1150 * @dev: Pointer to the PCI device
1151 * @desc: Pointer to the msi descriptor
1152 *
1153 * The ID number is only used within the irqdomain.
1154 */
1155irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1156 struct msi_desc *desc)
1157{
1158 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1159 PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
1160 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1161}
1162
1163static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1164{
1165 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1166}
1167
1168/**
1169 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1170 * @domain: The interrupt domain to check
1171 * @info: The domain info for verification
1172 * @dev: The device to check
1173 *
1174 * Returns:
1175 * 0 if the functionality is supported
1176 * 1 if Multi MSI is requested, but the domain does not support it
1177 * -ENOTSUPP otherwise
1178 */
1179int pci_msi_domain_check_cap(struct irq_domain *domain,
1180 struct msi_domain_info *info, struct device *dev)
1181{
1182 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1183
1184 /* Special handling to support pci_enable_msi_range() */
1185 if (pci_msi_desc_is_multi_msi(desc) &&
1186 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1187 return 1;
1188 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1189 return -ENOTSUPP;
1190
1191 return 0;
1192}
1193
1194static int pci_msi_domain_handle_error(struct irq_domain *domain,
1195 struct msi_desc *desc, int error)
1196{
1197 /* Special handling to support pci_enable_msi_range() */
1198 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1199 return 1;
1200
1201 return error;
1202}
1203
1204#ifdef GENERIC_MSI_DOMAIN_OPS
1205static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1206 struct msi_desc *desc)
1207{
1208 arg->desc = desc;
1209 arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1210 desc);
1211}
1212#else
1213#define pci_msi_domain_set_desc NULL
1214#endif
1215
1216static struct msi_domain_ops pci_msi_domain_ops_default = {
1217 .set_desc = pci_msi_domain_set_desc,
1218 .msi_check = pci_msi_domain_check_cap,
1219 .handle_error = pci_msi_domain_handle_error,
1220};
1221
1222static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1223{
1224 struct msi_domain_ops *ops = info->ops;
1225
1226 if (ops == NULL) {
1227 info->ops = &pci_msi_domain_ops_default;
1228 } else {
1229 if (ops->set_desc == NULL)
1230 ops->set_desc = pci_msi_domain_set_desc;
1231 if (ops->msi_check == NULL)
1232 ops->msi_check = pci_msi_domain_check_cap;
1233 if (ops->handle_error == NULL)
1234 ops->handle_error = pci_msi_domain_handle_error;
1235 }
1236}
1237
1238static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1239{
1240 struct irq_chip *chip = info->chip;
1241
1242 BUG_ON(!chip);
1243 if (!chip->irq_write_msi_msg)
1244 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1245}
1246
1247/**
1248 * pci_msi_create_irq_domain - Creat a MSI interrupt domain
1249 * @node: Optional device-tree node of the interrupt controller
1250 * @info: MSI domain info
1251 * @parent: Parent irq domain
1252 *
1253 * Updates the domain and chip ops and creates a MSI interrupt domain.
1254 *
1255 * Returns:
1256 * A domain pointer or NULL in case of failure.
1257 */
1258struct irq_domain *pci_msi_create_irq_domain(struct device_node *node,
1259 struct msi_domain_info *info,
1260 struct irq_domain *parent)
1261{
1262 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1263 pci_msi_domain_update_dom_ops(info);
1264 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1265 pci_msi_domain_update_chip_ops(info);
1266
1267 return msi_create_irq_domain(node, info, parent);
1268}
1269
1270/**
1271 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1272 * @domain: The interrupt domain to allocate from
1273 * @dev: The device for which to allocate
1274 * @nvec: The number of interrupts to allocate
1275 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1276 *
1277 * Returns:
1278 * A virtual interrupt number or an error code in case of failure
1279 */
1280int pci_msi_domain_alloc_irqs(struct irq_domain *domain, struct pci_dev *dev,
1281 int nvec, int type)
1282{
1283 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
1284}
1285
1286/**
1287 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1288 * @domain: The interrupt domain
1289 * @dev: The device for which to free interrupts
1290 */
1291void pci_msi_domain_free_irqs(struct irq_domain *domain, struct pci_dev *dev)
1292{
1293 msi_domain_free_irqs(domain, &dev->dev);
1294}
Jiang Liu8e047ad2014-11-15 22:24:07 +08001295
1296/**
1297 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
1298 * @node: Optional device-tree node of the interrupt controller
1299 * @info: MSI domain info
1300 * @parent: Parent irq domain
1301 *
1302 * Returns: A domain pointer or NULL in case of failure. If successful
1303 * the default PCI/MSI irqdomain pointer is updated.
1304 */
1305struct irq_domain *pci_msi_create_default_irq_domain(struct device_node *node,
1306 struct msi_domain_info *info, struct irq_domain *parent)
1307{
1308 struct irq_domain *domain;
1309
1310 mutex_lock(&pci_msi_domain_lock);
1311 if (pci_msi_default_domain) {
1312 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1313 domain = NULL;
1314 } else {
1315 domain = pci_msi_create_irq_domain(node, info, parent);
1316 pci_msi_default_domain = domain;
1317 }
1318 mutex_unlock(&pci_msi_domain_lock);
1319
1320 return domain;
1321}
Jiang Liu3878eae2014-11-11 21:02:18 +08001322#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */