blob: 74319f49765670fd64098897b09227ce3bf1d8da [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
Marc Zyngier020c3122014-11-15 10:49:12 +000040static struct irq_domain *pci_msi_get_domain(struct pci_dev *dev)
41{
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010042 struct irq_domain *domain;
Marc Zyngier020c3122014-11-15 10:49:12 +000043
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010044 domain = dev_get_msi_domain(&dev->dev);
45 if (domain)
46 return domain;
Marc Zyngier020c3122014-11-15 10:49:12 +000047
Marc Zyngierd8a1cb72015-07-28 14:46:14 +010048 return arch_get_pci_msi_domain(dev);
Marc Zyngier020c3122014-11-15 10:49:12 +000049}
50
Jiang Liu8e047ad2014-11-15 22:24:07 +080051static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
52{
53 struct irq_domain *domain;
54
Marc Zyngier020c3122014-11-15 10:49:12 +000055 domain = pci_msi_get_domain(dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080056 if (domain)
57 return pci_msi_domain_alloc_irqs(domain, dev, nvec, type);
58
59 return arch_setup_msi_irqs(dev, nvec, type);
60}
61
62static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
63{
64 struct irq_domain *domain;
65
Marc Zyngier020c3122014-11-15 10:49:12 +000066 domain = pci_msi_get_domain(dev);
Jiang Liu8e047ad2014-11-15 22:24:07 +080067 if (domain)
68 pci_msi_domain_free_irqs(domain, dev);
69 else
70 arch_teardown_msi_irqs(dev);
71}
72#else
73#define pci_msi_setup_msi_irqs arch_setup_msi_irqs
74#define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
75#endif
Bjorn Helgaas527eee22013-04-17 17:44:48 -060076
Adrian Bunk6a9e7f22007-12-11 23:19:41 +010077/* Arch hooks */
78
Thomas Petazzoni4287d822013-08-09 22:27:06 +020079int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
80{
Lorenzo Pieralisi2291ec02015-08-03 22:04:06 -050081 struct msi_controller *chip = dev->bus->msi;
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020082 int err;
83
84 if (!chip || !chip->setup_irq)
85 return -EINVAL;
86
87 err = chip->setup_irq(chip, dev, desc);
88 if (err < 0)
89 return err;
90
91 irq_set_chip_data(desc->irq, chip);
92
93 return 0;
Thomas Petazzoni4287d822013-08-09 22:27:06 +020094}
95
96void __weak arch_teardown_msi_irq(unsigned int irq)
97{
Yijing Wangc2791b82014-11-11 17:45:45 -070098 struct msi_controller *chip = irq_get_chip_data(irq);
Thierry Reding0cbdcfc2013-08-09 22:27:08 +020099
100 if (!chip || !chip->teardown_irq)
101 return;
102
103 chip->teardown_irq(chip, irq);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200104}
105
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200106int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100107{
Lucas Stach339e5b42015-09-18 13:58:34 -0500108 struct msi_controller *chip = dev->bus->msi;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100109 struct msi_desc *entry;
110 int ret;
111
Lucas Stach339e5b42015-09-18 13:58:34 -0500112 if (chip && chip->setup_irqs)
113 return chip->setup_irqs(chip, dev, nvec, type);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400114 /*
115 * If an architecture wants to support multiple MSI, it needs to
116 * override arch_setup_msi_irqs()
117 */
118 if (type == PCI_CAP_ID_MSI && nvec > 1)
119 return 1;
120
Jiang Liu5004e98a2015-07-09 16:00:41 +0800121 for_each_pci_msi_entry(entry, dev) {
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100122 ret = arch_setup_msi_irq(dev, entry);
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100123 if (ret < 0)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100124 return ret;
Michael Ellermanb5fbf532009-02-11 22:27:02 +1100125 if (ret > 0)
126 return -ENOSPC;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100127 }
128
129 return 0;
130}
131
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200132/*
133 * We have a default implementation available as a separate non-weak
134 * function, as it is used by the Xen x86 PCI code
135 */
Thomas Gleixner1525bf02010-10-06 16:05:35 -0400136void default_teardown_msi_irqs(struct pci_dev *dev)
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100137{
Jiang Liu63a7b172014-11-06 22:20:32 +0800138 int i;
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100139 struct msi_desc *entry;
140
Jiang Liu5004e98a2015-07-09 16:00:41 +0800141 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800142 if (entry->irq)
143 for (i = 0; i < entry->nvec_used; i++)
144 arch_teardown_msi_irq(entry->irq + i);
Adrian Bunk6a9e7f22007-12-11 23:19:41 +0100145}
146
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200147void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
148{
149 return default_teardown_msi_irqs(dev);
150}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500151
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800152static void default_restore_msi_irq(struct pci_dev *dev, int irq)
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500153{
154 struct msi_desc *entry;
155
156 entry = NULL;
157 if (dev->msix_enabled) {
Jiang Liu5004e98a2015-07-09 16:00:41 +0800158 for_each_pci_msi_entry(entry, dev) {
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500159 if (irq == entry->irq)
160 break;
161 }
162 } else if (dev->msi_enabled) {
163 entry = irq_get_msi_desc(irq);
164 }
165
166 if (entry)
Jiang Liu83a18912014-11-09 23:10:34 +0800167 __pci_write_msi_msg(entry, &entry->msg);
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500168}
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200169
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800170void __weak arch_restore_msi_irqs(struct pci_dev *dev)
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200171{
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800172 return default_restore_msi_irqs(dev);
Thomas Petazzoni4287d822013-08-09 22:27:06 +0200173}
Konrad Rzeszutek Wilk76ccc292011-12-16 17:38:18 -0500174
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500175static inline __attribute_const__ u32 msi_mask(unsigned x)
176{
Matthew Wilcox0b49ec32009-02-08 20:27:47 -0700177 /* Don't shift by >= width of type */
178 if (x >= 5)
179 return 0xffffffff;
180 return (1 << (1 << x)) - 1;
Matthew Wilcoxbffac3c2009-01-21 19:19:19 -0500181}
182
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600183/*
184 * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
185 * mask all MSI interrupts by clearing the MSI enable bit does not work
186 * reliably as devices without an INTx disable bit will then generate a
187 * level IRQ which will never be cleared.
Matthew Wilcoxce6fce42008-07-25 15:42:58 -0600188 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100189u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400191 u32 mask_bits = desc->masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Yijing Wang38737d82014-10-27 10:44:36 +0800193 if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900194 return 0;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400195
196 mask_bits &= ~mask;
197 mask_bits |= flag;
Jiang Liue39758e2015-07-09 16:00:43 +0800198 pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
199 mask_bits);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900200
201 return mask_bits;
202}
203
204static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
205{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100206 desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400207}
208
209/*
210 * This internal function does not flush PCI writes to the device.
211 * All users must ensure that they read from the device before either
212 * assuming that the device state is up to date, or returning out of this
213 * file. This saves a few milliseconds when initialising devices with lots
214 * of MSI-X interrupts.
215 */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100216u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400217{
218 u32 mask_bits = desc->masked;
219 unsigned offset = desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE +
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900220 PCI_MSIX_ENTRY_VECTOR_CTRL;
Yijing Wang38737d82014-10-27 10:44:36 +0800221
222 if (pci_msi_ignore_mask)
223 return 0;
224
Sheng Yang8d805282010-11-11 15:46:55 +0800225 mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
226 if (flag)
227 mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400228 writel(mask_bits, desc->mask_base + offset);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900229
230 return mask_bits;
231}
232
233static void msix_mask_irq(struct msi_desc *desc, u32 flag)
234{
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100235 desc->masked = __pci_msix_desc_mask_irq(desc, flag);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400236}
237
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200238static void msi_set_mask_bit(struct irq_data *data, u32 flag)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400239{
Jiang Liuc391f262015-06-01 16:05:41 +0800240 struct msi_desc *desc = irq_data_get_msi_desc(data);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400241
242 if (desc->msi_attrib.is_msix) {
243 msix_mask_irq(desc, flag);
244 readl(desc->mask_base); /* Flush write to device */
Matthew Wilcox24d27552009-03-17 08:54:06 -0400245 } else {
Yijing Wanga281b782014-07-08 10:08:55 +0800246 unsigned offset = data->irq - desc->irq;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400247 msi_mask_irq(desc, 1 << offset, flag << offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400249}
250
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100251/**
252 * pci_msi_mask_irq - Generic irq chip callback to mask PCI/MSI interrupts
253 * @data: pointer to irqdata associated to that interrupt
254 */
255void pci_msi_mask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400256{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200257 msi_set_mask_bit(data, 1);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400258}
259
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100260/**
261 * pci_msi_unmask_irq - Generic irq chip callback to unmask PCI/MSI interrupts
262 * @data: pointer to irqdata associated to that interrupt
263 */
264void pci_msi_unmask_irq(struct irq_data *data)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400265{
Thomas Gleixner1c9db522010-09-28 16:46:51 +0200266 msi_set_mask_bit(data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800269void default_restore_msi_irqs(struct pci_dev *dev)
270{
271 struct msi_desc *entry;
272
Jiang Liu5004e98a2015-07-09 16:00:41 +0800273 for_each_pci_msi_entry(entry, dev)
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800274 default_restore_msi_irq(dev, entry->irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800275}
276
Jiang Liu891d4a42014-11-09 23:10:33 +0800277void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700278{
Jiang Liue39758e2015-07-09 16:00:43 +0800279 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
280
281 BUG_ON(dev->current_state != PCI_D0);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700282
Ben Hutchings30da5522010-07-23 14:56:28 +0100283 if (entry->msi_attrib.is_msix) {
284 void __iomem *base = entry->mask_base +
285 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
286
287 msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
288 msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
289 msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
290 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600291 int pos = dev->msi_cap;
Ben Hutchings30da5522010-07-23 14:56:28 +0100292 u16 data;
293
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600294 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
295 &msg->address_lo);
Ben Hutchings30da5522010-07-23 14:56:28 +0100296 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600297 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
298 &msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600299 pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100300 } else {
301 msg->address_hi = 0;
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600302 pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
Ben Hutchings30da5522010-07-23 14:56:28 +0100303 }
304 msg->data = data;
305 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700306}
307
Jiang Liu83a18912014-11-09 23:10:34 +0800308void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800309{
Jiang Liue39758e2015-07-09 16:00:43 +0800310 struct pci_dev *dev = msi_desc_to_pci_dev(entry);
311
312 if (dev->current_state != PCI_D0) {
Ben Hutchingsfcd097f2010-06-17 20:16:36 +0100313 /* Don't touch the hardware now */
314 } else if (entry->msi_attrib.is_msix) {
Matthew Wilcox24d27552009-03-17 08:54:06 -0400315 void __iomem *base;
316 base = entry->mask_base +
317 entry->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
318
Hidetoshi Seto2c21fd42009-06-23 17:40:04 +0900319 writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
320 writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
321 writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
Matthew Wilcox24d27552009-03-17 08:54:06 -0400322 } else {
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600323 int pos = dev->msi_cap;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400324 u16 msgctl;
325
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600326 pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400327 msgctl &= ~PCI_MSI_FLAGS_QSIZE;
328 msgctl |= entry->msi_attrib.multiple << 4;
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600329 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700330
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600331 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
332 msg->address_lo);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700333 if (entry->msi_attrib.is_64) {
Bjorn Helgaas9925ad02013-04-17 17:39:57 -0600334 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
335 msg->address_hi);
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600336 pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
337 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700338 } else {
Bjorn Helgaas2f221342013-04-17 17:41:13 -0600339 pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
340 msg->data);
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700341 }
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700342 }
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700343 entry->msg = *msg;
Eric W. Biederman0366f8f2006-10-04 02:16:33 -0700344}
345
Jiang Liu83a18912014-11-09 23:10:34 +0800346void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
Yinghai Lu3145e942008-12-05 18:58:34 -0800347{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200348 struct msi_desc *entry = irq_get_msi_desc(irq);
Yinghai Lu3145e942008-12-05 18:58:34 -0800349
Jiang Liu83a18912014-11-09 23:10:34 +0800350 __pci_write_msi_msg(entry, msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800351}
Jiang Liu83a18912014-11-09 23:10:34 +0800352EXPORT_SYMBOL_GPL(pci_write_msi_msg);
Yinghai Lu3145e942008-12-05 18:58:34 -0800353
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900354static void free_msi_irqs(struct pci_dev *dev)
355{
Jiang Liu5004e98a2015-07-09 16:00:41 +0800356 struct list_head *msi_list = dev_to_msi_list(&dev->dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900357 struct msi_desc *entry, *tmp;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800358 struct attribute **msi_attrs;
359 struct device_attribute *dev_attr;
Jiang Liu63a7b172014-11-06 22:20:32 +0800360 int i, count = 0;
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900361
Jiang Liu5004e98a2015-07-09 16:00:41 +0800362 for_each_pci_msi_entry(entry, dev)
Jiang Liu63a7b172014-11-06 22:20:32 +0800363 if (entry->irq)
364 for (i = 0; i < entry->nvec_used; i++)
365 BUG_ON(irq_has_action(entry->irq + i));
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900366
Jiang Liu8e047ad2014-11-15 22:24:07 +0800367 pci_msi_teardown_msi_irqs(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900368
Jiang Liu5004e98a2015-07-09 16:00:41 +0800369 list_for_each_entry_safe(entry, tmp, msi_list, list) {
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900370 if (entry->msi_attrib.is_msix) {
Jiang Liu5004e98a2015-07-09 16:00:41 +0800371 if (list_is_last(&entry->list, msi_list))
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900372 iounmap(entry->mask_base);
373 }
Neil Horman424eb392012-01-03 10:29:54 -0500374
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900375 list_del(&entry->list);
376 kfree(entry);
377 }
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800378
379 if (dev->msi_irq_groups) {
380 sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
381 msi_attrs = dev->msi_irq_groups[0]->attrs;
Alexei Starovoitovb701c0b2014-06-04 15:49:50 -0700382 while (msi_attrs[count]) {
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800383 dev_attr = container_of(msi_attrs[count],
384 struct device_attribute, attr);
385 kfree(dev_attr->attr.name);
386 kfree(dev_attr);
387 ++count;
388 }
389 kfree(msi_attrs);
390 kfree(dev->msi_irq_groups[0]);
391 kfree(dev->msi_irq_groups);
392 dev->msi_irq_groups = NULL;
393 }
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900394}
Satoru Takeuchic54c1872007-01-18 13:50:05 +0900395
David Millerba698ad2007-10-25 01:16:30 -0700396static void pci_intx_for_msi(struct pci_dev *dev, int enable)
397{
398 if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
399 pci_intx(dev, enable);
400}
401
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100402static void __pci_restore_msi_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800403{
Shaohua Li41017f02006-02-08 17:11:38 +0800404 u16 control;
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700405 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800406
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800407 if (!dev->msi_enabled)
408 return;
409
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200410 entry = irq_get_msi_desc(dev->irq);
Shaohua Li41017f02006-02-08 17:11:38 +0800411
David Millerba698ad2007-10-25 01:16:30 -0700412 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500413 pci_msi_set_enable(dev, 0);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800414 arch_restore_msi_irqs(dev);
Eric W. Biederman392ee1e2007-03-08 13:04:57 -0700415
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600416 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
Yijing Wang31ea5d42014-06-19 16:30:30 +0800417 msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
418 entry->masked);
Jesse Barnesabad2ec2008-08-07 08:52:37 -0700419 control &= ~PCI_MSI_FLAGS_QSIZE;
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400420 control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
Bjorn Helgaasf5322162013-04-17 17:34:36 -0600421 pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100422}
423
424static void __pci_restore_msix_state(struct pci_dev *dev)
Shaohua Li41017f02006-02-08 17:11:38 +0800425{
Shaohua Li41017f02006-02-08 17:11:38 +0800426 struct msi_desc *entry;
Shaohua Li41017f02006-02-08 17:11:38 +0800427
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700428 if (!dev->msix_enabled)
429 return;
Jiang Liu5004e98a2015-07-09 16:00:41 +0800430 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700431
Shaohua Li41017f02006-02-08 17:11:38 +0800432 /* route the table */
David Millerba698ad2007-10-25 01:16:30 -0700433 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500434 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800435 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
Shaohua Li41017f02006-02-08 17:11:38 +0800436
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800437 arch_restore_msi_irqs(dev);
Jiang Liu5004e98a2015-07-09 16:00:41 +0800438 for_each_pci_msi_entry(entry, dev)
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400439 msix_mask_irq(entry, entry->masked);
Shaohua Li41017f02006-02-08 17:11:38 +0800440
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500441 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Shaohua Li41017f02006-02-08 17:11:38 +0800442}
Michael Ellerman8fed4b62007-01-25 19:34:08 +1100443
444void pci_restore_msi_state(struct pci_dev *dev)
445{
446 __pci_restore_msi_state(dev);
447 __pci_restore_msix_state(dev);
448}
Linas Vepstas94688cf2007-11-07 15:43:59 -0600449EXPORT_SYMBOL_GPL(pci_restore_msi_state);
Shaohua Li41017f02006-02-08 17:11:38 +0800450
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800451static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
Neil Hormanda8d1c82011-10-06 14:08:18 -0400452 char *buf)
453{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800454 struct msi_desc *entry;
455 unsigned long irq;
456 int retval;
457
458 retval = kstrtoul(attr->attr.name, 10, &irq);
459 if (retval)
460 return retval;
461
Yijing Wange11ece52014-07-08 10:09:19 +0800462 entry = irq_get_msi_desc(irq);
463 if (entry)
464 return sprintf(buf, "%s\n",
465 entry->msi_attrib.is_msix ? "msix" : "msi");
466
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800467 return -ENODEV;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400468}
469
Neil Hormanda8d1c82011-10-06 14:08:18 -0400470static int populate_msi_sysfs(struct pci_dev *pdev)
471{
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800472 struct attribute **msi_attrs;
473 struct attribute *msi_attr;
474 struct device_attribute *msi_dev_attr;
475 struct attribute_group *msi_irq_group;
476 const struct attribute_group **msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400477 struct msi_desc *entry;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800478 int ret = -ENOMEM;
479 int num_msi = 0;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400480 int count = 0;
481
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800482 /* Determine how many msi entries we have */
Jiang Liu5004e98a2015-07-09 16:00:41 +0800483 for_each_pci_msi_entry(entry, pdev)
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800484 ++num_msi;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800485 if (!num_msi)
486 return 0;
487
488 /* Dynamically create the MSI attributes for the PCI device */
489 msi_attrs = kzalloc(sizeof(void *) * (num_msi + 1), GFP_KERNEL);
490 if (!msi_attrs)
491 return -ENOMEM;
Jiang Liu5004e98a2015-07-09 16:00:41 +0800492 for_each_pci_msi_entry(entry, pdev) {
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700493 msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
Jan Beulich14062762014-04-14 14:59:50 -0600494 if (!msi_dev_attr)
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700495 goto error_attrs;
Jan Beulich14062762014-04-14 14:59:50 -0600496 msi_attrs[count] = &msi_dev_attr->attr;
Greg Kroah-Hartman86bb4f62014-02-13 10:47:20 -0700497
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800498 sysfs_attr_init(&msi_dev_attr->attr);
Jan Beulich14062762014-04-14 14:59:50 -0600499 msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
500 entry->irq);
501 if (!msi_dev_attr->attr.name)
502 goto error_attrs;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800503 msi_dev_attr->attr.mode = S_IRUGO;
504 msi_dev_attr->show = msi_mode_show;
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800505 ++count;
506 }
507
508 msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
509 if (!msi_irq_group)
510 goto error_attrs;
511 msi_irq_group->name = "msi_irqs";
512 msi_irq_group->attrs = msi_attrs;
513
514 msi_irq_groups = kzalloc(sizeof(void *) * 2, GFP_KERNEL);
515 if (!msi_irq_groups)
516 goto error_irq_group;
517 msi_irq_groups[0] = msi_irq_group;
518
519 ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
520 if (ret)
521 goto error_irq_groups;
522 pdev->msi_irq_groups = msi_irq_groups;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400523
524 return 0;
525
Greg Kroah-Hartman1c51b502013-12-19 12:30:17 -0800526error_irq_groups:
527 kfree(msi_irq_groups);
528error_irq_group:
529 kfree(msi_irq_group);
530error_attrs:
531 count = 0;
532 msi_attr = msi_attrs[count];
533 while (msi_attr) {
534 msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
535 kfree(msi_attr->name);
536 kfree(msi_dev_attr);
537 ++count;
538 msi_attr = msi_attrs[count];
Neil Hormanda8d1c82011-10-06 14:08:18 -0400539 }
Greg Kroah-Hartman29237752014-02-13 10:47:35 -0700540 kfree(msi_attrs);
Neil Hormanda8d1c82011-10-06 14:08:18 -0400541 return ret;
542}
543
Jiang Liu63a7b172014-11-06 22:20:32 +0800544static struct msi_desc *msi_setup_entry(struct pci_dev *dev, int nvec)
Yijing Wangd873b4d2014-07-08 10:07:23 +0800545{
546 u16 control;
547 struct msi_desc *entry;
548
549 /* MSI Entry Initialization */
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800550 entry = alloc_msi_entry(&dev->dev);
Yijing Wangd873b4d2014-07-08 10:07:23 +0800551 if (!entry)
552 return NULL;
553
554 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
555
556 entry->msi_attrib.is_msix = 0;
557 entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
558 entry->msi_attrib.entry_nr = 0;
559 entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
560 entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
Yijing Wangd873b4d2014-07-08 10:07:23 +0800561 entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
Jiang Liu63a7b172014-11-06 22:20:32 +0800562 entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
563 entry->nvec_used = nvec;
Yijing Wangd873b4d2014-07-08 10:07:23 +0800564
565 if (control & PCI_MSI_FLAGS_64BIT)
566 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
567 else
568 entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
569
570 /* Save the initial mask status */
571 if (entry->msi_attrib.maskbit)
572 pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
573
574 return entry;
575}
576
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000577static int msi_verify_entries(struct pci_dev *dev)
578{
579 struct msi_desc *entry;
580
Jiang Liu5004e98a2015-07-09 16:00:41 +0800581 for_each_pci_msi_entry(entry, dev) {
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000582 if (!dev->no_64bit_msi || !entry->msg.address_hi)
583 continue;
584 dev_err(&dev->dev, "Device has broken 64-bit MSI but arch"
585 " tried to assign one above 4G\n");
586 return -EIO;
587 }
588 return 0;
589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/**
592 * msi_capability_init - configure device's MSI capability structure
593 * @dev: pointer to the pci_dev data structure of MSI device function
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400594 * @nvec: number of interrupts to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 *
Matthew Wilcox1c8d7b02009-03-17 08:54:10 -0400596 * Setup the MSI capability structure of the device with the requested
597 * number of interrupts. A return value of zero indicates the successful
598 * setup of an entry with the new MSI irq. A negative return value indicates
599 * an error, and a positive return value indicates the number of interrupts
600 * which could have been allocated.
601 */
602static int msi_capability_init(struct pci_dev *dev, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct msi_desc *entry;
Gavin Shanf4651362013-04-04 16:54:32 +0000605 int ret;
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400606 unsigned mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500608 pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
Matthew Wilcox110828c2009-06-16 06:31:45 -0600609
Jiang Liu63a7b172014-11-06 22:20:32 +0800610 entry = msi_setup_entry(dev, nvec);
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700611 if (!entry)
612 return -ENOMEM;
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700613
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400614 /* All MSIs are unmasked by default, Mask them all */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800615 mask = msi_mask(entry->msi_attrib.multi_cap);
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400616 msi_mask_irq(entry, mask, mask);
617
Jiang Liu5004e98a2015-07-09 16:00:41 +0800618 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Michael Ellerman9c831332007-04-18 19:39:21 +1000619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* Configure MSI capability structure */
Jiang Liu8e047ad2014-11-15 22:24:07 +0800621 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000622 if (ret) {
Hidetoshi Seto7ba19302009-06-23 17:39:27 +0900623 msi_mask_irq(entry, mask, ~mask);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900624 free_msi_irqs(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000625 return ret;
Mark Maulefd58e552006-04-10 21:17:48 -0500626 }
Eric W. Biedermanf7feaca2007-01-28 12:56:37 -0700627
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000628 ret = msi_verify_entries(dev);
629 if (ret) {
630 msi_mask_irq(entry, mask, ~mask);
631 free_msi_irqs(dev);
632 return ret;
633 }
634
Neil Hormanda8d1c82011-10-06 14:08:18 -0400635 ret = populate_msi_sysfs(dev);
636 if (ret) {
637 msi_mask_irq(entry, mask, ~mask);
638 free_msi_irqs(dev);
639 return ret;
640 }
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Set MSI enabled bits */
David Millerba698ad2007-10-25 01:16:30 -0700643 pci_intx_for_msi(dev, 0);
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500644 pci_msi_set_enable(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800645 dev->msi_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Jiang Liu5f226992015-07-30 14:00:08 -0500647 pcibios_free_irq(dev);
Michael Ellerman7fe37302007-04-18 19:39:21 +1000648 dev->irq = entry->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return 0;
650}
651
Gavin Shan520fe9d2013-04-04 16:54:33 +0000652static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900653{
Kenji Kaneshige4302e0f2010-06-17 10:42:44 +0900654 resource_size_t phys_addr;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900655 u32 table_offset;
Yijing Wang6a878e52015-01-28 09:52:17 +0800656 unsigned long flags;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900657 u8 bir;
658
Bjorn Helgaas909094c2013-04-17 17:43:40 -0600659 pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
660 &table_offset);
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600661 bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
Yijing Wang6a878e52015-01-28 09:52:17 +0800662 flags = pci_resource_flags(dev, bir);
663 if (!flags || (flags & IORESOURCE_UNSET))
664 return NULL;
665
Bjorn Helgaas4d187602013-04-17 18:10:07 -0600666 table_offset &= PCI_MSIX_TABLE_OFFSET;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900667 phys_addr = pci_resource_start(dev, bir) + table_offset;
668
669 return ioremap_nocache(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
670}
671
Gavin Shan520fe9d2013-04-04 16:54:33 +0000672static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
673 struct msix_entry *entries, int nvec)
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900674{
675 struct msi_desc *entry;
676 int i;
677
678 for (i = 0; i < nvec; i++) {
Jiang Liuaa48b6f2015-07-09 16:00:47 +0800679 entry = alloc_msi_entry(&dev->dev);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900680 if (!entry) {
681 if (!i)
682 iounmap(base);
683 else
684 free_msi_irqs(dev);
685 /* No enough memory. Don't try again */
686 return -ENOMEM;
687 }
688
689 entry->msi_attrib.is_msix = 1;
690 entry->msi_attrib.is_64 = 1;
691 entry->msi_attrib.entry_nr = entries[i].entry;
692 entry->msi_attrib.default_irq = dev->irq;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900693 entry->mask_base = base;
Jiang Liu63a7b172014-11-06 22:20:32 +0800694 entry->nvec_used = 1;
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900695
Jiang Liu5004e98a2015-07-09 16:00:41 +0800696 list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900697 }
698
699 return 0;
700}
701
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900702static void msix_program_entries(struct pci_dev *dev,
Gavin Shan520fe9d2013-04-04 16:54:33 +0000703 struct msix_entry *entries)
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900704{
705 struct msi_desc *entry;
706 int i = 0;
707
Jiang Liu5004e98a2015-07-09 16:00:41 +0800708 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900709 int offset = entries[i].entry * PCI_MSIX_ENTRY_SIZE +
710 PCI_MSIX_ENTRY_VECTOR_CTRL;
711
712 entries[i].vector = entry->irq;
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900713 entry->masked = readl(entry->mask_base + offset);
714 msix_mask_irq(entry, 1);
715 i++;
716 }
717}
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/**
720 * msix_capability_init - configure device's MSI-X capability
721 * @dev: pointer to the pci_dev data structure of MSI-X device function
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700722 * @entries: pointer to an array of struct msix_entry entries
723 * @nvec: number of @entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 *
Steven Coleeaae4b32005-05-03 18:38:30 -0600725 * Setup the MSI-X capability structure of device function with a
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700726 * single MSI-X irq. A return of zero indicates the successful setup of
727 * requested MSI-X entries with allocated irqs or non-zero for otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 **/
729static int msix_capability_init(struct pci_dev *dev,
730 struct msix_entry *entries, int nvec)
731{
Gavin Shan520fe9d2013-04-04 16:54:33 +0000732 int ret;
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900733 u16 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 void __iomem *base;
735
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700736 /* Ensure MSI-X is disabled while it is set up */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500737 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700738
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800739 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /* Request & Map MSI-X table region */
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600741 base = msix_map_region(dev, msix_table_size(control));
Hidetoshi Seto5a05a9d2009-08-06 11:34:34 +0900742 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return -ENOMEM;
744
Gavin Shan520fe9d2013-04-04 16:54:33 +0000745 ret = msix_setup_entries(dev, base, entries, nvec);
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900746 if (ret)
747 return ret;
Michael Ellerman9c831332007-04-18 19:39:21 +1000748
Jiang Liu8e047ad2014-11-15 22:24:07 +0800749 ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900750 if (ret)
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100751 goto out_avail;
Michael Ellerman9c831332007-04-18 19:39:21 +1000752
Benjamin Herrenschmidtf144d142014-10-03 15:13:24 +1000753 /* Check if all MSI entries honor device restrictions */
754 ret = msi_verify_entries(dev);
755 if (ret)
756 goto out_free;
757
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700758 /*
759 * Some devices require MSI-X to be enabled before we can touch the
760 * MSI-X registers. We need to mask all the vectors to prevent
761 * interrupts coming in before they're fully set up.
762 */
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500763 pci_msix_clear_and_set_ctrl(dev, 0,
Yijing Wang66f0d0c2014-06-19 16:29:53 +0800764 PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700765
Hidetoshi Seto75cb3422009-08-06 11:35:10 +0900766 msix_program_entries(dev, entries);
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700767
Neil Hormanda8d1c82011-10-06 14:08:18 -0400768 ret = populate_msi_sysfs(dev);
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100769 if (ret)
770 goto out_free;
Neil Hormanda8d1c82011-10-06 14:08:18 -0400771
Matthew Wilcoxf5982822009-06-18 19:15:59 -0700772 /* Set MSI-X enabled bits and unmask the function */
David Millerba698ad2007-10-25 01:16:30 -0700773 pci_intx_for_msi(dev, 0);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800774 dev->msix_enabled = 1;
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500775 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
Matthew Wilcox8d181012009-05-08 07:13:33 -0600776
Jiang Liu5f226992015-07-30 14:00:08 -0500777 pcibios_free_irq(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return 0;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900779
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100780out_avail:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900781 if (ret < 0) {
782 /*
783 * If we had some success, report the number of irqs
784 * we succeeded in setting up.
785 */
Hidetoshi Setod9d70702009-08-06 11:35:48 +0900786 struct msi_desc *entry;
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900787 int avail = 0;
788
Jiang Liu5004e98a2015-07-09 16:00:41 +0800789 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900790 if (entry->irq != 0)
791 avail++;
792 }
793 if (avail != 0)
794 ret = avail;
795 }
796
Alexander Gordeev2adc7902013-12-16 09:34:56 +0100797out_free:
Hidetoshi Seto583871d2009-08-06 11:33:39 +0900798 free_msi_irqs(dev);
799
800 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803/**
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600804 * pci_msi_supported - check whether MSI may be enabled on a device
Brice Goglin24334a12006-08-31 01:55:07 -0400805 * @dev: pointer to the pci_dev data structure of MSI device function
Michael Ellermanc9953a72007-04-05 17:19:08 +1000806 * @nvec: how many MSIs have been requested ?
Brice Goglin24334a12006-08-31 01:55:07 -0400807 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700808 * Look at global flags, the device itself, and its parent buses
Michael Ellerman17bbc122007-04-05 17:19:07 +1000809 * to determine if MSI/-X are supported for the device. If MSI/-X is
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600810 * supported return 1, else return 0.
Brice Goglin24334a12006-08-31 01:55:07 -0400811 **/
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600812static int pci_msi_supported(struct pci_dev *dev, int nvec)
Brice Goglin24334a12006-08-31 01:55:07 -0400813{
814 struct pci_bus *bus;
815
Brice Goglin0306ebf2006-10-05 10:24:31 +0200816 /* MSI must be globally enabled and supported by the device */
Alexander Gordeev27e20602014-09-23 14:25:11 -0600817 if (!pci_msi_enable)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600818 return 0;
Alexander Gordeev27e20602014-09-23 14:25:11 -0600819
820 if (!dev || dev->no_msi || dev->current_state != PCI_D0)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600821 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400822
Michael Ellerman314e77b2007-04-05 17:19:12 +1000823 /*
824 * You can't ask to have 0 or less MSIs configured.
825 * a) it's stupid ..
826 * b) the list manipulation code assumes nvec >= 1.
827 */
828 if (nvec < 1)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600829 return 0;
Michael Ellerman314e77b2007-04-05 17:19:12 +1000830
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900831 /*
832 * Any bridge which does NOT route MSI transactions from its
833 * secondary bus to its primary bus must set NO_MSI flag on
Brice Goglin0306ebf2006-10-05 10:24:31 +0200834 * the secondary pci_bus.
835 * We expect only arch-specific PCI host bus controller driver
836 * or quirks for specific PCI bridges to be setting NO_MSI.
837 */
Brice Goglin24334a12006-08-31 01:55:07 -0400838 for (bus = dev->bus; bus; bus = bus->parent)
839 if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600840 return 0;
Brice Goglin24334a12006-08-31 01:55:07 -0400841
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600842 return 1;
Brice Goglin24334a12006-08-31 01:55:07 -0400843}
844
845/**
Alexander Gordeevd1ac1d22013-12-30 08:28:13 +0100846 * pci_msi_vec_count - Return the number of MSI vectors a device can send
847 * @dev: device to report about
848 *
849 * This function returns the number of MSI vectors a device requested via
850 * Multiple Message Capable register. It returns a negative errno if the
851 * device is not capable sending MSI interrupts. Otherwise, the call succeeds
852 * and returns a power of two, up to a maximum of 2^5 (32), according to the
853 * MSI specification.
854 **/
855int pci_msi_vec_count(struct pci_dev *dev)
856{
857 int ret;
858 u16 msgctl;
859
860 if (!dev->msi_cap)
861 return -EINVAL;
862
863 pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
864 ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
865
866 return ret;
867}
868EXPORT_SYMBOL(pci_msi_vec_count);
869
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400870void pci_msi_shutdown(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400872 struct msi_desc *desc;
873 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100875 if (!pci_msi_enable || !dev || !dev->msi_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700876 return;
877
Jiang Liu5004e98a2015-07-09 16:00:41 +0800878 BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
Jiang Liu4a7cc832015-07-09 16:00:44 +0800879 desc = first_pci_msi_entry(dev);
Matthew Wilcox110828c2009-06-16 06:31:45 -0600880
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500881 pci_msi_set_enable(dev, 0);
David Millerba698ad2007-10-25 01:16:30 -0700882 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800883 dev->msi_enabled = 0;
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700884
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900885 /* Return the device with MSI unmasked as initial states */
Yijing Wang31ea5d42014-06-19 16:30:30 +0800886 mask = msi_mask(desc->msi_attrib.multi_cap);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900887 /* Keep cached state to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100888 __pci_msi_desc_mask_irq(desc, mask, ~mask);
Michael Ellermane387b9e2007-03-22 21:51:27 +1100889
890 /* Restore dev->irq to its default pin-assertion irq */
Matthew Wilcoxf2440d92009-03-17 08:54:09 -0400891 dev->irq = desc->msi_attrib.default_irq;
Jiang Liu5f226992015-07-30 14:00:08 -0500892 pcibios_alloc_irq(dev);
Yinghai Lud52877c2008-04-23 14:58:09 -0700893}
Matthew Wilcox24d27552009-03-17 08:54:06 -0400894
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900895void pci_disable_msi(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700896{
Yinghai Lud52877c2008-04-23 14:58:09 -0700897 if (!pci_msi_enable || !dev || !dev->msi_enabled)
898 return;
899
900 pci_msi_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +0900901 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100903EXPORT_SYMBOL(pci_disable_msi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/**
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100906 * pci_msix_vec_count - return the number of device's MSI-X table entries
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100907 * @dev: pointer to the pci_dev data structure of MSI-X device function
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100908 * This function returns the number of device's MSI-X table entries and
909 * therefore the number of MSI-X vectors device is capable of sending.
910 * It returns a negative errno if the device is not capable of sending MSI-X
911 * interrupts.
912 **/
913int pci_msix_vec_count(struct pci_dev *dev)
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100914{
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100915 u16 control;
916
Gavin Shan520fe9d2013-04-04 16:54:33 +0000917 if (!dev->msix_cap)
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100918 return -EINVAL;
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100919
Bjorn Helgaasf84ecd282013-04-17 17:38:32 -0600920 pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
Bjorn Helgaas527eee22013-04-17 17:44:48 -0600921 return msix_table_size(control);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100922}
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100923EXPORT_SYMBOL(pci_msix_vec_count);
Rafael J. Wysockia52e2e32009-01-24 00:21:14 +0100924
925/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 * pci_enable_msix - configure device's MSI-X capability structure
927 * @dev: pointer to the pci_dev data structure of MSI-X device function
Greg Kroah-Hartman70549ad2005-06-06 23:07:46 -0700928 * @entries: pointer to an array of MSI-X entries
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700929 * @nvec: number of MSI-X irqs requested for allocation by device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 *
931 * Setup the MSI-X capability structure of device function with the number
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700932 * of requested irqs upon its software driver call to request for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * MSI-X mode enabled on its hardware device function. A return of zero
934 * indicates the successful configuration of MSI-X capability structure
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700935 * with new allocated MSI-X irqs. A return of < 0 indicates a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 * Or a return of > 0 indicates that driver request is exceeding the number
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300937 * of irqs or MSI-X vectors available. Driver should use the returned value to
938 * re-send its request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 **/
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900940int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600942 int nr_entries;
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700943 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Alexander Gordeeva06cd742014-09-23 12:45:58 -0600945 if (!pci_msi_supported(dev, nvec))
946 return -EINVAL;
Michael Ellermanc9953a72007-04-05 17:19:08 +1000947
Alexander Gordeev27e20602014-09-23 14:25:11 -0600948 if (!entries)
949 return -EINVAL;
950
Alexander Gordeevff1aa432013-12-30 08:28:15 +0100951 nr_entries = pci_msix_vec_count(dev);
952 if (nr_entries < 0)
953 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (nvec > nr_entries)
Michael S. Tsirkin57fbf522009-05-07 11:28:41 +0300955 return nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 /* Check for any invalid entries */
958 for (i = 0; i < nvec; i++) {
959 if (entries[i].entry >= nr_entries)
960 return -EINVAL; /* invalid entry */
961 for (j = i + 1; j < nvec; j++) {
962 if (entries[i].entry == entries[j].entry)
963 return -EINVAL; /* duplicate entry */
964 }
965 }
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700966 WARN_ON(!!dev->msix_enabled);
Eric W. Biederman7bd007e2006-10-04 02:16:31 -0700967
Eric W. Biederman1ce03372006-10-04 02:16:41 -0700968 /* Check whether driver already requested for MSI irq */
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900969 if (dev->msi_enabled) {
Ryan Desfosses227f0642014-04-18 20:13:50 -0400970 dev_info(&dev->dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return -EINVAL;
972 }
Bjorn Helgaas5ec09402014-09-23 14:38:28 -0600973 return msix_capability_init(dev, entries, nvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
Michael Ellerman4cc086f2007-03-22 21:51:34 +1100975EXPORT_SYMBOL(pci_enable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900977void pci_msix_shutdown(struct pci_dev *dev)
Michael Ellermanfc4afc72007-03-22 21:51:33 +1100978{
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900979 struct msi_desc *entry;
980
Michael Ellerman128bc5f2007-03-22 21:51:39 +1100981 if (!pci_msi_enable || !dev || !dev->msix_enabled)
Eric W. Biedermanded86d82007-01-28 12:42:52 -0700982 return;
983
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900984 /* Return the device with MSI-X masked as initial states */
Jiang Liu5004e98a2015-07-09 16:00:41 +0800985 for_each_pci_msi_entry(entry, dev) {
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900986 /* Keep cached states to be restored */
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100987 __pci_msix_desc_mask_irq(entry, 1);
Hidetoshi Seto12abb8b2009-06-24 12:08:09 +0900988 }
989
Michael S. Tsirkin61b64ab2015-05-07 09:52:21 -0500990 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
David Millerba698ad2007-10-25 01:16:30 -0700991 pci_intx_for_msi(dev, 1);
Eric W. Biedermanb1cbf4e2007-03-05 00:30:10 -0800992 dev->msix_enabled = 0;
Jiang Liu5f226992015-07-30 14:00:08 -0500993 pcibios_alloc_irq(dev);
Yinghai Lud52877c2008-04-23 14:58:09 -0700994}
Hidetoshi Setoc9018512009-08-06 11:31:27 +0900995
Hidetoshi Seto500559a2009-08-10 10:14:15 +0900996void pci_disable_msix(struct pci_dev *dev)
Yinghai Lud52877c2008-04-23 14:58:09 -0700997{
998 if (!pci_msi_enable || !dev || !dev->msix_enabled)
999 return;
1000
1001 pci_msix_shutdown(dev);
Hidetoshi Setof56e4482009-08-06 11:32:51 +09001002 free_msi_irqs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
Michael Ellerman4cc086f2007-03-22 21:51:34 +11001004EXPORT_SYMBOL(pci_disable_msix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Matthew Wilcox309e57d2006-03-05 22:33:34 -07001006void pci_no_msi(void)
1007{
1008 pci_msi_enable = 0;
1009}
Michael Ellermanc9953a72007-04-05 17:19:08 +10001010
Andrew Patterson07ae95f2008-11-10 15:31:05 -07001011/**
1012 * pci_msi_enabled - is MSI enabled?
1013 *
1014 * Returns true if MSI has not been disabled by the command-line option
1015 * pci=nomsi.
1016 **/
1017int pci_msi_enabled(void)
1018{
1019 return pci_msi_enable;
1020}
1021EXPORT_SYMBOL(pci_msi_enabled);
1022
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001023void pci_msi_init_pci_dev(struct pci_dev *dev)
1024{
Michael Ellerman4aa9bc92007-04-05 17:19:10 +10001025}
Alexander Gordeev302a2522013-12-30 08:28:16 +01001026
1027/**
1028 * pci_enable_msi_range - configure device's MSI capability structure
1029 * @dev: device to configure
1030 * @minvec: minimal number of interrupts to configure
1031 * @maxvec: maximum number of interrupts to configure
1032 *
1033 * This function tries to allocate a maximum possible number of interrupts in a
1034 * range between @minvec and @maxvec. It returns a negative errno if an error
1035 * occurs. If it succeeds, it returns the actual number of interrupts allocated
1036 * and updates the @dev's irq member to the lowest new interrupt number;
1037 * the other interrupt numbers allocated to this device are consecutive.
1038 **/
1039int pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec)
1040{
Alexander Gordeev034cd972014-04-14 15:28:35 +02001041 int nvec;
Alexander Gordeev302a2522013-12-30 08:28:16 +01001042 int rc;
1043
Alexander Gordeeva06cd742014-09-23 12:45:58 -06001044 if (!pci_msi_supported(dev, minvec))
1045 return -EINVAL;
Alexander Gordeev034cd972014-04-14 15:28:35 +02001046
1047 WARN_ON(!!dev->msi_enabled);
1048
1049 /* Check whether driver already requested MSI-X irqs */
1050 if (dev->msix_enabled) {
1051 dev_info(&dev->dev,
1052 "can't enable MSI (MSI-X already enabled)\n");
1053 return -EINVAL;
1054 }
1055
Alexander Gordeev302a2522013-12-30 08:28:16 +01001056 if (maxvec < minvec)
1057 return -ERANGE;
1058
Alexander Gordeev034cd972014-04-14 15:28:35 +02001059 nvec = pci_msi_vec_count(dev);
1060 if (nvec < 0)
1061 return nvec;
1062 else if (nvec < minvec)
1063 return -EINVAL;
1064 else if (nvec > maxvec)
1065 nvec = maxvec;
1066
Alexander Gordeev302a2522013-12-30 08:28:16 +01001067 do {
Alexander Gordeev034cd972014-04-14 15:28:35 +02001068 rc = msi_capability_init(dev, nvec);
Alexander Gordeev302a2522013-12-30 08:28:16 +01001069 if (rc < 0) {
1070 return rc;
1071 } else if (rc > 0) {
1072 if (rc < minvec)
1073 return -ENOSPC;
1074 nvec = rc;
1075 }
1076 } while (rc);
1077
1078 return nvec;
1079}
1080EXPORT_SYMBOL(pci_enable_msi_range);
1081
1082/**
1083 * pci_enable_msix_range - configure device's MSI-X capability structure
1084 * @dev: pointer to the pci_dev data structure of MSI-X device function
1085 * @entries: pointer to an array of MSI-X entries
1086 * @minvec: minimum number of MSI-X irqs requested
1087 * @maxvec: maximum number of MSI-X irqs requested
1088 *
1089 * Setup the MSI-X capability structure of device function with a maximum
1090 * possible number of interrupts in the range between @minvec and @maxvec
1091 * upon its software driver call to request for MSI-X mode enabled on its
1092 * hardware device function. It returns a negative errno if an error occurs.
1093 * If it succeeds, it returns the actual number of interrupts allocated and
1094 * indicates the successful configuration of MSI-X capability structure
1095 * with new allocated MSI-X interrupts.
1096 **/
1097int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1098 int minvec, int maxvec)
1099{
1100 int nvec = maxvec;
1101 int rc;
1102
1103 if (maxvec < minvec)
1104 return -ERANGE;
1105
1106 do {
1107 rc = pci_enable_msix(dev, entries, nvec);
1108 if (rc < 0) {
1109 return rc;
1110 } else if (rc > 0) {
1111 if (rc < minvec)
1112 return -ENOSPC;
1113 nvec = rc;
1114 }
1115 } while (rc);
1116
1117 return nvec;
1118}
1119EXPORT_SYMBOL(pci_enable_msix_range);
Jiang Liu3878eae2014-11-11 21:02:18 +08001120
Jiang Liu25a98bd2015-07-09 16:00:45 +08001121struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1122{
1123 return to_pci_dev(desc->dev);
1124}
1125
Jiang Liuc179c9b2015-07-09 16:00:36 +08001126void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1127{
1128 struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1129
1130 return dev->bus->sysdata;
1131}
1132EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1133
Jiang Liu3878eae2014-11-11 21:02:18 +08001134#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1135/**
1136 * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1137 * @irq_data: Pointer to interrupt data of the MSI interrupt
1138 * @msg: Pointer to the message
1139 */
1140void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1141{
Jiang Liu507a8832015-06-01 16:05:42 +08001142 struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
Jiang Liu3878eae2014-11-11 21:02:18 +08001143
1144 /*
1145 * For MSI-X desc->irq is always equal to irq_data->irq. For
1146 * MSI only the first interrupt of MULTI MSI passes the test.
1147 */
1148 if (desc->irq == irq_data->irq)
1149 __pci_write_msi_msg(desc, msg);
1150}
1151
1152/**
1153 * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1154 * @dev: Pointer to the PCI device
1155 * @desc: Pointer to the msi descriptor
1156 *
1157 * The ID number is only used within the irqdomain.
1158 */
1159irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1160 struct msi_desc *desc)
1161{
1162 return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1163 PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
1164 (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1165}
1166
1167static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1168{
1169 return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1170}
1171
1172/**
1173 * pci_msi_domain_check_cap - Verify that @domain supports the capabilities for @dev
1174 * @domain: The interrupt domain to check
1175 * @info: The domain info for verification
1176 * @dev: The device to check
1177 *
1178 * Returns:
1179 * 0 if the functionality is supported
1180 * 1 if Multi MSI is requested, but the domain does not support it
1181 * -ENOTSUPP otherwise
1182 */
1183int pci_msi_domain_check_cap(struct irq_domain *domain,
1184 struct msi_domain_info *info, struct device *dev)
1185{
1186 struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1187
1188 /* Special handling to support pci_enable_msi_range() */
1189 if (pci_msi_desc_is_multi_msi(desc) &&
1190 !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1191 return 1;
1192 else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1193 return -ENOTSUPP;
1194
1195 return 0;
1196}
1197
1198static int pci_msi_domain_handle_error(struct irq_domain *domain,
1199 struct msi_desc *desc, int error)
1200{
1201 /* Special handling to support pci_enable_msi_range() */
1202 if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
1203 return 1;
1204
1205 return error;
1206}
1207
1208#ifdef GENERIC_MSI_DOMAIN_OPS
1209static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1210 struct msi_desc *desc)
1211{
1212 arg->desc = desc;
1213 arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1214 desc);
1215}
1216#else
1217#define pci_msi_domain_set_desc NULL
1218#endif
1219
1220static struct msi_domain_ops pci_msi_domain_ops_default = {
1221 .set_desc = pci_msi_domain_set_desc,
1222 .msi_check = pci_msi_domain_check_cap,
1223 .handle_error = pci_msi_domain_handle_error,
1224};
1225
1226static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1227{
1228 struct msi_domain_ops *ops = info->ops;
1229
1230 if (ops == NULL) {
1231 info->ops = &pci_msi_domain_ops_default;
1232 } else {
1233 if (ops->set_desc == NULL)
1234 ops->set_desc = pci_msi_domain_set_desc;
1235 if (ops->msi_check == NULL)
1236 ops->msi_check = pci_msi_domain_check_cap;
1237 if (ops->handle_error == NULL)
1238 ops->handle_error = pci_msi_domain_handle_error;
1239 }
1240}
1241
1242static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1243{
1244 struct irq_chip *chip = info->chip;
1245
1246 BUG_ON(!chip);
1247 if (!chip->irq_write_msi_msg)
1248 chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1249}
1250
1251/**
1252 * pci_msi_create_irq_domain - Creat a MSI interrupt domain
1253 * @node: Optional device-tree node of the interrupt controller
1254 * @info: MSI domain info
1255 * @parent: Parent irq domain
1256 *
1257 * Updates the domain and chip ops and creates a MSI interrupt domain.
1258 *
1259 * Returns:
1260 * A domain pointer or NULL in case of failure.
1261 */
1262struct irq_domain *pci_msi_create_irq_domain(struct device_node *node,
1263 struct msi_domain_info *info,
1264 struct irq_domain *parent)
1265{
Marc Zyngier03808392015-07-28 14:46:09 +01001266 struct irq_domain *domain;
1267
Jiang Liu3878eae2014-11-11 21:02:18 +08001268 if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1269 pci_msi_domain_update_dom_ops(info);
1270 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1271 pci_msi_domain_update_chip_ops(info);
1272
Marc Zyngier03808392015-07-28 14:46:09 +01001273 domain = msi_create_irq_domain(node, info, parent);
1274 if (!domain)
1275 return NULL;
1276
1277 domain->bus_token = DOMAIN_BUS_PCI_MSI;
1278 return domain;
Jiang Liu3878eae2014-11-11 21:02:18 +08001279}
1280
1281/**
1282 * pci_msi_domain_alloc_irqs - Allocate interrupts for @dev in @domain
1283 * @domain: The interrupt domain to allocate from
1284 * @dev: The device for which to allocate
1285 * @nvec: The number of interrupts to allocate
1286 * @type: Unused to allow simpler migration from the arch_XXX interfaces
1287 *
1288 * Returns:
1289 * A virtual interrupt number or an error code in case of failure
1290 */
1291int pci_msi_domain_alloc_irqs(struct irq_domain *domain, struct pci_dev *dev,
1292 int nvec, int type)
1293{
1294 return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
1295}
1296
1297/**
1298 * pci_msi_domain_free_irqs - Free interrupts for @dev in @domain
1299 * @domain: The interrupt domain
1300 * @dev: The device for which to free interrupts
1301 */
1302void pci_msi_domain_free_irqs(struct irq_domain *domain, struct pci_dev *dev)
1303{
1304 msi_domain_free_irqs(domain, &dev->dev);
1305}
Jiang Liu8e047ad2014-11-15 22:24:07 +08001306
1307/**
1308 * pci_msi_create_default_irq_domain - Create a default MSI interrupt domain
1309 * @node: Optional device-tree node of the interrupt controller
1310 * @info: MSI domain info
1311 * @parent: Parent irq domain
1312 *
1313 * Returns: A domain pointer or NULL in case of failure. If successful
1314 * the default PCI/MSI irqdomain pointer is updated.
1315 */
1316struct irq_domain *pci_msi_create_default_irq_domain(struct device_node *node,
1317 struct msi_domain_info *info, struct irq_domain *parent)
1318{
1319 struct irq_domain *domain;
1320
1321 mutex_lock(&pci_msi_domain_lock);
1322 if (pci_msi_default_domain) {
1323 pr_err("PCI: default irq domain for PCI MSI has already been created.\n");
1324 domain = NULL;
1325 } else {
1326 domain = pci_msi_create_irq_domain(node, info, parent);
1327 pci_msi_default_domain = domain;
1328 }
1329 mutex_unlock(&pci_msi_domain_lock);
1330
1331 return domain;
1332}
Jiang Liu3878eae2014-11-11 21:02:18 +08001333#endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */