Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0
2 : : /*
3 : : * PCI Message Signaled Interrupt (MSI)
4 : : *
5 : : * Copyright (C) 2003-2004 Intel
6 : : * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 : : * Copyright (C) 2016 Christoph Hellwig.
8 : : */
9 : :
10 : : #include <linux/err.h>
11 : : #include <linux/mm.h>
12 : : #include <linux/irq.h>
13 : : #include <linux/interrupt.h>
14 : : #include <linux/export.h>
15 : : #include <linux/ioport.h>
16 : : #include <linux/pci.h>
17 : : #include <linux/proc_fs.h>
18 : : #include <linux/msi.h>
19 : : #include <linux/smp.h>
20 : : #include <linux/errno.h>
21 : : #include <linux/io.h>
22 : : #include <linux/acpi_iort.h>
23 : : #include <linux/slab.h>
24 : : #include <linux/irqdomain.h>
25 : : #include <linux/of_irq.h>
26 : :
27 : : #include "pci.h"
28 : :
29 : : static int pci_msi_enable = 1;
30 : : int pci_msi_ignore_mask;
31 : :
32 : : #define msix_table_size(flags) ((flags & PCI_MSIX_FLAGS_QSIZE) + 1)
33 : :
34 : : #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
35 : 0 : static int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
36 : : {
37 : 0 : struct irq_domain *domain;
38 : :
39 [ # # ]: 0 : domain = dev_get_msi_domain(&dev->dev);
40 [ # # # # ]: 0 : if (domain && irq_domain_is_hierarchy(domain))
41 : 0 : return msi_domain_alloc_irqs(domain, &dev->dev, nvec);
42 : :
43 : 0 : return arch_setup_msi_irqs(dev, nvec, type);
44 : : }
45 : :
46 : 0 : static void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
47 : : {
48 : 0 : struct irq_domain *domain;
49 : :
50 [ # # ]: 0 : domain = dev_get_msi_domain(&dev->dev);
51 [ # # # # ]: 0 : if (domain && irq_domain_is_hierarchy(domain))
52 : 0 : msi_domain_free_irqs(domain, &dev->dev);
53 : : else
54 : 0 : arch_teardown_msi_irqs(dev);
55 : 0 : }
56 : : #else
57 : : #define pci_msi_setup_msi_irqs arch_setup_msi_irqs
58 : : #define pci_msi_teardown_msi_irqs arch_teardown_msi_irqs
59 : : #endif
60 : :
61 : : /* Arch hooks */
62 : :
63 : 0 : int __weak arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
64 : : {
65 : 0 : struct msi_controller *chip = dev->bus->msi;
66 : 0 : int err;
67 : :
68 [ # # # # ]: 0 : if (!chip || !chip->setup_irq)
69 : : return -EINVAL;
70 : :
71 : 0 : err = chip->setup_irq(chip, dev, desc);
72 [ # # ]: 0 : if (err < 0)
73 : : return err;
74 : :
75 : 0 : irq_set_chip_data(desc->irq, chip);
76 : :
77 : 0 : return 0;
78 : : }
79 : :
80 : 0 : void __weak arch_teardown_msi_irq(unsigned int irq)
81 : : {
82 : 0 : struct msi_controller *chip = irq_get_chip_data(irq);
83 : :
84 [ # # # # ]: 0 : if (!chip || !chip->teardown_irq)
85 : : return;
86 : :
87 : 0 : chip->teardown_irq(chip, irq);
88 : : }
89 : :
90 : 0 : int __weak arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
91 : : {
92 : 0 : struct msi_controller *chip = dev->bus->msi;
93 : 0 : struct msi_desc *entry;
94 : 0 : int ret;
95 : :
96 [ # # # # ]: 0 : if (chip && chip->setup_irqs)
97 : 0 : return chip->setup_irqs(chip, dev, nvec, type);
98 : : /*
99 : : * If an architecture wants to support multiple MSI, it needs to
100 : : * override arch_setup_msi_irqs()
101 : : */
102 [ # # ]: 0 : if (type == PCI_CAP_ID_MSI && nvec > 1)
103 : : return 1;
104 : :
105 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
106 : 0 : ret = arch_setup_msi_irq(dev, entry);
107 [ # # ]: 0 : if (ret < 0)
108 : 0 : return ret;
109 [ # # ]: 0 : if (ret > 0)
110 : : return -ENOSPC;
111 : : }
112 : :
113 : : return 0;
114 : : }
115 : :
116 : : /*
117 : : * We have a default implementation available as a separate non-weak
118 : : * function, as it is used by the Xen x86 PCI code
119 : : */
120 : 0 : void default_teardown_msi_irqs(struct pci_dev *dev)
121 : : {
122 : 0 : int i;
123 : 0 : struct msi_desc *entry;
124 : :
125 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev)
126 [ # # ]: 0 : if (entry->irq)
127 [ # # ]: 0 : for (i = 0; i < entry->nvec_used; i++)
128 : 0 : arch_teardown_msi_irq(entry->irq + i);
129 : 0 : }
130 : :
131 : 0 : void __weak arch_teardown_msi_irqs(struct pci_dev *dev)
132 : : {
133 : 0 : return default_teardown_msi_irqs(dev);
134 : : }
135 : :
136 : 0 : static void default_restore_msi_irq(struct pci_dev *dev, int irq)
137 : : {
138 : 0 : struct msi_desc *entry;
139 : :
140 : 0 : entry = NULL;
141 [ # # ]: 0 : if (dev->msix_enabled) {
142 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
143 [ # # ]: 0 : if (irq == entry->irq)
144 : : break;
145 : : }
146 [ # # ]: 0 : } else if (dev->msi_enabled) {
147 : 0 : entry = irq_get_msi_desc(irq);
148 : : }
149 : :
150 [ # # ]: 0 : if (entry)
151 : 0 : __pci_write_msi_msg(entry, &entry->msg);
152 : 0 : }
153 : :
154 : 0 : void __weak arch_restore_msi_irqs(struct pci_dev *dev)
155 : : {
156 : 0 : return default_restore_msi_irqs(dev);
157 : : }
158 : :
159 : 0 : static inline __attribute_const__ u32 msi_mask(unsigned x)
160 : : {
161 : : /* Don't shift by >= width of type */
162 : 0 : if (x >= 5)
163 : : return 0xffffffff;
164 : 0 : return (1 << (1 << x)) - 1;
165 : : }
166 : :
167 : : /*
168 : : * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to
169 : : * mask all MSI interrupts by clearing the MSI enable bit does not work
170 : : * reliably as devices without an INTx disable bit will then generate a
171 : : * level IRQ which will never be cleared.
172 : : */
173 : 0 : u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
174 : : {
175 : 0 : u32 mask_bits = desc->masked;
176 : :
177 [ # # # # ]: 0 : if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit)
178 : : return 0;
179 : :
180 : 0 : mask_bits &= ~mask;
181 : 0 : mask_bits |= flag;
182 : 0 : pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos,
183 : : mask_bits);
184 : :
185 : 0 : return mask_bits;
186 : : }
187 : :
188 : 0 : static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag)
189 : : {
190 : 0 : desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag);
191 : 0 : }
192 : :
193 : 0 : static void __iomem *pci_msix_desc_addr(struct msi_desc *desc)
194 : : {
195 : 0 : if (desc->msi_attrib.is_virtual)
196 : : return NULL;
197 : :
198 : 0 : return desc->mask_base +
199 : 0 : desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE;
200 : : }
201 : :
202 : : /*
203 : : * This internal function does not flush PCI writes to the device.
204 : : * All users must ensure that they read from the device before either
205 : : * assuming that the device state is up to date, or returning out of this
206 : : * file. This saves a few milliseconds when initialising devices with lots
207 : : * of MSI-X interrupts.
208 : : */
209 : 0 : u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag)
210 : : {
211 : 0 : u32 mask_bits = desc->masked;
212 : 0 : void __iomem *desc_addr;
213 : :
214 [ # # ]: 0 : if (pci_msi_ignore_mask)
215 : : return 0;
216 : :
217 [ # # # # ]: 0 : desc_addr = pci_msix_desc_addr(desc);
218 [ # # # # ]: 0 : if (!desc_addr)
219 : : return 0;
220 : :
221 : 0 : mask_bits &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT;
222 [ # # ]: 0 : if (flag & PCI_MSIX_ENTRY_CTRL_MASKBIT)
223 : 0 : mask_bits |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
224 : :
225 : 0 : writel(mask_bits, desc_addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
226 : :
227 : 0 : return mask_bits;
228 : : }
229 : :
230 : 0 : static void msix_mask_irq(struct msi_desc *desc, u32 flag)
231 : : {
232 : 0 : desc->masked = __pci_msix_desc_mask_irq(desc, flag);
233 : : }
234 : :
235 : 0 : static void msi_set_mask_bit(struct irq_data *data, u32 flag)
236 : : {
237 [ # # ]: 0 : struct msi_desc *desc = irq_data_get_msi_desc(data);
238 : :
239 [ # # ]: 0 : if (desc->msi_attrib.is_msix) {
240 : 0 : msix_mask_irq(desc, flag);
241 : 0 : readl(desc->mask_base); /* Flush write to device */
242 : : } else {
243 : 0 : unsigned offset = data->irq - desc->irq;
244 : 0 : msi_mask_irq(desc, 1 << offset, flag << offset);
245 : : }
246 : 0 : }
247 : :
248 : : /**
249 : : * pci_msi_mask_irq - Generic IRQ chip callback to mask PCI/MSI interrupts
250 : : * @data: pointer to irqdata associated to that interrupt
251 : : */
252 : 0 : void pci_msi_mask_irq(struct irq_data *data)
253 : : {
254 : 0 : msi_set_mask_bit(data, 1);
255 : 0 : }
256 : : EXPORT_SYMBOL_GPL(pci_msi_mask_irq);
257 : :
258 : : /**
259 : : * pci_msi_unmask_irq - Generic IRQ chip callback to unmask PCI/MSI interrupts
260 : : * @data: pointer to irqdata associated to that interrupt
261 : : */
262 : 0 : void pci_msi_unmask_irq(struct irq_data *data)
263 : : {
264 : 0 : msi_set_mask_bit(data, 0);
265 : 0 : }
266 : : EXPORT_SYMBOL_GPL(pci_msi_unmask_irq);
267 : :
268 : 0 : void default_restore_msi_irqs(struct pci_dev *dev)
269 : : {
270 : 0 : struct msi_desc *entry;
271 : :
272 [ # # # # ]: 0 : for_each_pci_msi_entry(entry, dev)
273 : 0 : default_restore_msi_irq(dev, entry->irq);
274 : 0 : }
275 : :
276 : 0 : void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
277 : : {
278 : 0 : struct pci_dev *dev = msi_desc_to_pci_dev(entry);
279 : :
280 : 0 : BUG_ON(dev->current_state != PCI_D0);
281 : :
282 [ # # ]: 0 : if (entry->msi_attrib.is_msix) {
283 [ # # ]: 0 : void __iomem *base = pci_msix_desc_addr(entry);
284 : :
285 [ # # ]: 0 : if (!base) {
286 : 0 : WARN_ON(1);
287 : 0 : return;
288 : : }
289 : :
290 : 0 : msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR);
291 : 0 : msg->address_hi = readl(base + PCI_MSIX_ENTRY_UPPER_ADDR);
292 : 0 : msg->data = readl(base + PCI_MSIX_ENTRY_DATA);
293 : : } else {
294 : 0 : int pos = dev->msi_cap;
295 : 0 : u16 data;
296 : :
297 : 0 : pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
298 : : &msg->address_lo);
299 [ # # ]: 0 : if (entry->msi_attrib.is_64) {
300 : 0 : pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
301 : : &msg->address_hi);
302 : 0 : pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data);
303 : : } else {
304 : 0 : msg->address_hi = 0;
305 : 0 : pci_read_config_word(dev, pos + PCI_MSI_DATA_32, &data);
306 : : }
307 : 0 : msg->data = data;
308 : : }
309 : : }
310 : :
311 : 0 : void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
312 : : {
313 : 0 : struct pci_dev *dev = msi_desc_to_pci_dev(entry);
314 : :
315 [ # # ]: 0 : if (dev->current_state != PCI_D0 || pci_dev_is_disconnected(dev)) {
316 : : /* Don't touch the hardware now */
317 [ # # ]: 0 : } else if (entry->msi_attrib.is_msix) {
318 [ # # ]: 0 : void __iomem *base = pci_msix_desc_addr(entry);
319 : :
320 [ # # ]: 0 : if (!base)
321 : 0 : goto skip;
322 : :
323 : 0 : writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR);
324 : 0 : writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR);
325 : 0 : writel(msg->data, base + PCI_MSIX_ENTRY_DATA);
326 : : } else {
327 : 0 : int pos = dev->msi_cap;
328 : 0 : u16 msgctl;
329 : :
330 : 0 : pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl);
331 : 0 : msgctl &= ~PCI_MSI_FLAGS_QSIZE;
332 : 0 : msgctl |= entry->msi_attrib.multiple << 4;
333 : 0 : pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl);
334 : :
335 : 0 : pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
336 : : msg->address_lo);
337 [ # # ]: 0 : if (entry->msi_attrib.is_64) {
338 : 0 : pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
339 : : msg->address_hi);
340 : 0 : pci_write_config_word(dev, pos + PCI_MSI_DATA_64,
341 : 0 : msg->data);
342 : : } else {
343 : 0 : pci_write_config_word(dev, pos + PCI_MSI_DATA_32,
344 : 0 : msg->data);
345 : : }
346 : : }
347 : :
348 : 0 : skip:
349 : 0 : entry->msg = *msg;
350 : :
351 [ # # ]: 0 : if (entry->write_msi_msg)
352 : 0 : entry->write_msi_msg(entry, entry->write_msi_msg_data);
353 : :
354 : 0 : }
355 : :
356 : 0 : void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg)
357 : : {
358 : 0 : struct msi_desc *entry = irq_get_msi_desc(irq);
359 : :
360 : 0 : __pci_write_msi_msg(entry, msg);
361 : 0 : }
362 : : EXPORT_SYMBOL_GPL(pci_write_msi_msg);
363 : :
364 : 0 : static void free_msi_irqs(struct pci_dev *dev)
365 : : {
366 : 0 : struct list_head *msi_list = dev_to_msi_list(&dev->dev);
367 : 0 : struct msi_desc *entry, *tmp;
368 : 0 : struct attribute **msi_attrs;
369 : 0 : struct device_attribute *dev_attr;
370 : 0 : int i, count = 0;
371 : :
372 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev)
373 [ # # ]: 0 : if (entry->irq)
374 [ # # ]: 0 : for (i = 0; i < entry->nvec_used; i++)
375 [ # # ]: 0 : BUG_ON(irq_has_action(entry->irq + i));
376 : :
377 : 0 : pci_msi_teardown_msi_irqs(dev);
378 : :
379 [ # # ]: 0 : list_for_each_entry_safe(entry, tmp, msi_list, list) {
380 [ # # ]: 0 : if (entry->msi_attrib.is_msix) {
381 [ # # ]: 0 : if (list_is_last(&entry->list, msi_list))
382 : 0 : iounmap(entry->mask_base);
383 : : }
384 : :
385 : 0 : list_del(&entry->list);
386 : 0 : free_msi_entry(entry);
387 : : }
388 : :
389 [ # # ]: 0 : if (dev->msi_irq_groups) {
390 : 0 : sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups);
391 : 0 : msi_attrs = dev->msi_irq_groups[0]->attrs;
392 [ # # ]: 0 : while (msi_attrs[count]) {
393 : 0 : dev_attr = container_of(msi_attrs[count],
394 : : struct device_attribute, attr);
395 : 0 : kfree(dev_attr->attr.name);
396 : 0 : kfree(dev_attr);
397 : 0 : ++count;
398 : : }
399 : 0 : kfree(msi_attrs);
400 : 0 : kfree(dev->msi_irq_groups[0]);
401 : 0 : kfree(dev->msi_irq_groups);
402 : 0 : dev->msi_irq_groups = NULL;
403 : : }
404 : 0 : }
405 : :
406 : 0 : static void pci_intx_for_msi(struct pci_dev *dev, int enable)
407 : : {
408 : 0 : if (!(dev->dev_flags & PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG))
409 : 0 : pci_intx(dev, enable);
410 : : }
411 : :
412 : 0 : static void __pci_restore_msi_state(struct pci_dev *dev)
413 : : {
414 : 0 : u16 control;
415 : 0 : struct msi_desc *entry;
416 : :
417 [ # # ]: 0 : if (!dev->msi_enabled)
418 : 0 : return;
419 : :
420 : 0 : entry = irq_get_msi_desc(dev->irq);
421 : :
422 [ # # ]: 0 : pci_intx_for_msi(dev, 0);
423 : 0 : pci_msi_set_enable(dev, 0);
424 : 0 : arch_restore_msi_irqs(dev);
425 : :
426 : 0 : pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
427 [ # # ]: 0 : msi_mask_irq(entry, msi_mask(entry->msi_attrib.multi_cap),
428 : : entry->masked);
429 : 0 : control &= ~PCI_MSI_FLAGS_QSIZE;
430 : 0 : control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE;
431 : 0 : pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control);
432 : : }
433 : :
434 : 0 : static void __pci_restore_msix_state(struct pci_dev *dev)
435 : : {
436 : 0 : struct msi_desc *entry;
437 : :
438 [ # # ]: 0 : if (!dev->msix_enabled)
439 : : return;
440 [ # # ]: 0 : BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
441 : :
442 : : /* route the table */
443 [ # # ]: 0 : pci_intx_for_msi(dev, 0);
444 : 0 : pci_msix_clear_and_set_ctrl(dev, 0,
445 : : PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
446 : :
447 : 0 : arch_restore_msi_irqs(dev);
448 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev)
449 : 0 : msix_mask_irq(entry, entry->masked);
450 : :
451 : 0 : pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
452 : : }
453 : :
454 : 0 : void pci_restore_msi_state(struct pci_dev *dev)
455 : : {
456 : 0 : __pci_restore_msi_state(dev);
457 : 0 : __pci_restore_msix_state(dev);
458 : 0 : }
459 : : EXPORT_SYMBOL_GPL(pci_restore_msi_state);
460 : :
461 : 0 : static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
462 : : char *buf)
463 : : {
464 : 0 : struct msi_desc *entry;
465 : 0 : unsigned long irq;
466 : 0 : int retval;
467 : :
468 : 0 : retval = kstrtoul(attr->attr.name, 10, &irq);
469 [ # # ]: 0 : if (retval)
470 : 0 : return retval;
471 : :
472 : 0 : entry = irq_get_msi_desc(irq);
473 [ # # ]: 0 : if (entry)
474 : 0 : return sprintf(buf, "%s\n",
475 [ # # ]: 0 : entry->msi_attrib.is_msix ? "msix" : "msi");
476 : :
477 : : return -ENODEV;
478 : : }
479 : :
480 : 0 : static int populate_msi_sysfs(struct pci_dev *pdev)
481 : : {
482 : 0 : struct attribute **msi_attrs;
483 : 0 : struct attribute *msi_attr;
484 : 0 : struct device_attribute *msi_dev_attr;
485 : 0 : struct attribute_group *msi_irq_group;
486 : 0 : const struct attribute_group **msi_irq_groups;
487 : 0 : struct msi_desc *entry;
488 : 0 : int ret = -ENOMEM;
489 : 0 : int num_msi = 0;
490 : 0 : int count = 0;
491 : 0 : int i;
492 : :
493 : : /* Determine how many msi entries we have */
494 [ # # ]: 0 : for_each_pci_msi_entry(entry, pdev)
495 : 0 : num_msi += entry->nvec_used;
496 [ # # ]: 0 : if (!num_msi)
497 : : return 0;
498 : :
499 : : /* Dynamically create the MSI attributes for the PCI device */
500 : 0 : msi_attrs = kcalloc(num_msi + 1, sizeof(void *), GFP_KERNEL);
501 [ # # ]: 0 : if (!msi_attrs)
502 : : return -ENOMEM;
503 [ # # ]: 0 : for_each_pci_msi_entry(entry, pdev) {
504 [ # # ]: 0 : for (i = 0; i < entry->nvec_used; i++) {
505 : 0 : msi_dev_attr = kzalloc(sizeof(*msi_dev_attr), GFP_KERNEL);
506 [ # # ]: 0 : if (!msi_dev_attr)
507 : 0 : goto error_attrs;
508 : 0 : msi_attrs[count] = &msi_dev_attr->attr;
509 : :
510 : 0 : sysfs_attr_init(&msi_dev_attr->attr);
511 : 0 : msi_dev_attr->attr.name = kasprintf(GFP_KERNEL, "%d",
512 : 0 : entry->irq + i);
513 [ # # ]: 0 : if (!msi_dev_attr->attr.name)
514 : 0 : goto error_attrs;
515 : 0 : msi_dev_attr->attr.mode = S_IRUGO;
516 : 0 : msi_dev_attr->show = msi_mode_show;
517 : 0 : ++count;
518 : : }
519 : : }
520 : :
521 : 0 : msi_irq_group = kzalloc(sizeof(*msi_irq_group), GFP_KERNEL);
522 [ # # ]: 0 : if (!msi_irq_group)
523 : 0 : goto error_attrs;
524 : 0 : msi_irq_group->name = "msi_irqs";
525 : 0 : msi_irq_group->attrs = msi_attrs;
526 : :
527 : 0 : msi_irq_groups = kcalloc(2, sizeof(void *), GFP_KERNEL);
528 [ # # ]: 0 : if (!msi_irq_groups)
529 : 0 : goto error_irq_group;
530 : 0 : msi_irq_groups[0] = msi_irq_group;
531 : :
532 : 0 : ret = sysfs_create_groups(&pdev->dev.kobj, msi_irq_groups);
533 [ # # ]: 0 : if (ret)
534 : 0 : goto error_irq_groups;
535 : 0 : pdev->msi_irq_groups = msi_irq_groups;
536 : :
537 : 0 : return 0;
538 : :
539 : : error_irq_groups:
540 : 0 : kfree(msi_irq_groups);
541 : 0 : error_irq_group:
542 : 0 : kfree(msi_irq_group);
543 : 0 : error_attrs:
544 : 0 : count = 0;
545 : 0 : msi_attr = msi_attrs[count];
546 [ # # ]: 0 : while (msi_attr) {
547 : 0 : msi_dev_attr = container_of(msi_attr, struct device_attribute, attr);
548 : 0 : kfree(msi_attr->name);
549 : 0 : kfree(msi_dev_attr);
550 : 0 : ++count;
551 : 0 : msi_attr = msi_attrs[count];
552 : : }
553 : 0 : kfree(msi_attrs);
554 : 0 : return ret;
555 : : }
556 : :
557 : : static struct msi_desc *
558 : 0 : msi_setup_entry(struct pci_dev *dev, int nvec, struct irq_affinity *affd)
559 : : {
560 : 0 : struct irq_affinity_desc *masks = NULL;
561 : 0 : struct msi_desc *entry;
562 : 0 : u16 control;
563 : :
564 [ # # ]: 0 : if (affd)
565 : 0 : masks = irq_create_affinity_masks(nvec, affd);
566 : :
567 : : /* MSI Entry Initialization */
568 : 0 : entry = alloc_msi_entry(&dev->dev, nvec, masks);
569 [ # # ]: 0 : if (!entry)
570 : 0 : goto out;
571 : :
572 : 0 : pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control);
573 : :
574 : 0 : entry->msi_attrib.is_msix = 0;
575 : 0 : entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT);
576 : 0 : entry->msi_attrib.is_virtual = 0;
577 : 0 : entry->msi_attrib.entry_nr = 0;
578 : 0 : entry->msi_attrib.maskbit = !!(control & PCI_MSI_FLAGS_MASKBIT);
579 : 0 : entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */
580 : 0 : entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1;
581 [ # # # # : 0 : entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec));
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # ]
582 : :
583 [ # # ]: 0 : if (control & PCI_MSI_FLAGS_64BIT)
584 : 0 : entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64;
585 : : else
586 : 0 : entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32;
587 : :
588 : : /* Save the initial mask status */
589 [ # # ]: 0 : if (entry->msi_attrib.maskbit)
590 : 0 : pci_read_config_dword(dev, entry->mask_pos, &entry->masked);
591 : :
592 : 0 : out:
593 : 0 : kfree(masks);
594 : 0 : return entry;
595 : : }
596 : :
597 : 0 : static int msi_verify_entries(struct pci_dev *dev)
598 : : {
599 : 0 : struct msi_desc *entry;
600 : :
601 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
602 [ # # # # ]: 0 : if (!dev->no_64bit_msi || !entry->msg.address_hi)
603 : 0 : continue;
604 : 0 : pci_err(dev, "Device has broken 64-bit MSI but arch"
605 : : " tried to assign one above 4G\n");
606 : 0 : return -EIO;
607 : : }
608 : : return 0;
609 : : }
610 : :
611 : : /**
612 : : * msi_capability_init - configure device's MSI capability structure
613 : : * @dev: pointer to the pci_dev data structure of MSI device function
614 : : * @nvec: number of interrupts to allocate
615 : : * @affd: description of automatic IRQ affinity assignments (may be %NULL)
616 : : *
617 : : * Setup the MSI capability structure of the device with the requested
618 : : * number of interrupts. A return value of zero indicates the successful
619 : : * setup of an entry with the new MSI IRQ. A negative return value indicates
620 : : * an error, and a positive return value indicates the number of interrupts
621 : : * which could have been allocated.
622 : : */
623 : 0 : static int msi_capability_init(struct pci_dev *dev, int nvec,
624 : : struct irq_affinity *affd)
625 : : {
626 : 0 : struct msi_desc *entry;
627 : 0 : int ret;
628 : 0 : unsigned mask;
629 : :
630 : 0 : pci_msi_set_enable(dev, 0); /* Disable MSI during set up */
631 : :
632 : 0 : entry = msi_setup_entry(dev, nvec, affd);
633 [ # # ]: 0 : if (!entry)
634 : : return -ENOMEM;
635 : :
636 : : /* All MSIs are unmasked by default; mask them all */
637 [ # # ]: 0 : mask = msi_mask(entry->msi_attrib.multi_cap);
638 : 0 : msi_mask_irq(entry, mask, mask);
639 : :
640 : 0 : list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
641 : :
642 : : /* Configure MSI capability structure */
643 : 0 : ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI);
644 [ # # ]: 0 : if (ret) {
645 : 0 : msi_mask_irq(entry, mask, ~mask);
646 : 0 : free_msi_irqs(dev);
647 : 0 : return ret;
648 : : }
649 : :
650 : 0 : ret = msi_verify_entries(dev);
651 [ # # ]: 0 : if (ret) {
652 : 0 : msi_mask_irq(entry, mask, ~mask);
653 : 0 : free_msi_irqs(dev);
654 : 0 : return ret;
655 : : }
656 : :
657 : 0 : ret = populate_msi_sysfs(dev);
658 [ # # ]: 0 : if (ret) {
659 : 0 : msi_mask_irq(entry, mask, ~mask);
660 : 0 : free_msi_irqs(dev);
661 : 0 : return ret;
662 : : }
663 : :
664 : : /* Set MSI enabled bits */
665 [ # # ]: 0 : pci_intx_for_msi(dev, 0);
666 : 0 : pci_msi_set_enable(dev, 1);
667 : 0 : dev->msi_enabled = 1;
668 : :
669 : 0 : pcibios_free_irq(dev);
670 : 0 : dev->irq = entry->irq;
671 : 0 : return 0;
672 : : }
673 : :
674 : 0 : static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries)
675 : : {
676 : 0 : resource_size_t phys_addr;
677 : 0 : u32 table_offset;
678 : 0 : unsigned long flags;
679 : 0 : u8 bir;
680 : :
681 : 0 : pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE,
682 : : &table_offset);
683 : 0 : bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
684 : 0 : flags = pci_resource_flags(dev, bir);
685 [ # # # # ]: 0 : if (!flags || (flags & IORESOURCE_UNSET))
686 : : return NULL;
687 : :
688 : 0 : table_offset &= PCI_MSIX_TABLE_OFFSET;
689 : 0 : phys_addr = pci_resource_start(dev, bir) + table_offset;
690 : :
691 : 0 : return ioremap(phys_addr, nr_entries * PCI_MSIX_ENTRY_SIZE);
692 : : }
693 : :
694 : 0 : static int msix_setup_entries(struct pci_dev *dev, void __iomem *base,
695 : : struct msix_entry *entries, int nvec,
696 : : struct irq_affinity *affd)
697 : : {
698 : 0 : struct irq_affinity_desc *curmsk, *masks = NULL;
699 : 0 : struct msi_desc *entry;
700 : 0 : int ret, i;
701 : 0 : int vec_count = pci_msix_vec_count(dev);
702 : :
703 [ # # ]: 0 : if (affd)
704 : 0 : masks = irq_create_affinity_masks(nvec, affd);
705 : :
706 [ # # ]: 0 : for (i = 0, curmsk = masks; i < nvec; i++) {
707 : 0 : entry = alloc_msi_entry(&dev->dev, 1, curmsk);
708 [ # # ]: 0 : if (!entry) {
709 [ # # ]: 0 : if (!i)
710 : 0 : iounmap(base);
711 : : else
712 : 0 : free_msi_irqs(dev);
713 : : /* No enough memory. Don't try again */
714 : 0 : ret = -ENOMEM;
715 : 0 : goto out;
716 : : }
717 : :
718 : 0 : entry->msi_attrib.is_msix = 1;
719 : 0 : entry->msi_attrib.is_64 = 1;
720 [ # # ]: 0 : if (entries)
721 : 0 : entry->msi_attrib.entry_nr = entries[i].entry;
722 : : else
723 : 0 : entry->msi_attrib.entry_nr = i;
724 : :
725 : 0 : entry->msi_attrib.is_virtual =
726 : 0 : entry->msi_attrib.entry_nr >= vec_count;
727 : :
728 : 0 : entry->msi_attrib.default_irq = dev->irq;
729 : 0 : entry->mask_base = base;
730 : :
731 [ # # ]: 0 : list_add_tail(&entry->list, dev_to_msi_list(&dev->dev));
732 [ # # ]: 0 : if (masks)
733 : 0 : curmsk++;
734 : : }
735 : : ret = 0;
736 : 0 : out:
737 : 0 : kfree(masks);
738 : 0 : return ret;
739 : : }
740 : :
741 : 0 : static void msix_program_entries(struct pci_dev *dev,
742 : : struct msix_entry *entries)
743 : : {
744 : 0 : struct msi_desc *entry;
745 : 0 : int i = 0;
746 : 0 : void __iomem *desc_addr;
747 : :
748 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
749 [ # # ]: 0 : if (entries)
750 : 0 : entries[i++].vector = entry->irq;
751 : :
752 [ # # ]: 0 : desc_addr = pci_msix_desc_addr(entry);
753 [ # # ]: 0 : if (desc_addr)
754 : 0 : entry->masked = readl(desc_addr +
755 : : PCI_MSIX_ENTRY_VECTOR_CTRL);
756 : : else
757 : 0 : entry->masked = 0;
758 : :
759 : 0 : msix_mask_irq(entry, 1);
760 : : }
761 : 0 : }
762 : :
763 : : /**
764 : : * msix_capability_init - configure device's MSI-X capability
765 : : * @dev: pointer to the pci_dev data structure of MSI-X device function
766 : : * @entries: pointer to an array of struct msix_entry entries
767 : : * @nvec: number of @entries
768 : : * @affd: Optional pointer to enable automatic affinity assignment
769 : : *
770 : : * Setup the MSI-X capability structure of device function with a
771 : : * single MSI-X IRQ. A return of zero indicates the successful setup of
772 : : * requested MSI-X entries with allocated IRQs or non-zero for otherwise.
773 : : **/
774 : 0 : static int msix_capability_init(struct pci_dev *dev, struct msix_entry *entries,
775 : : int nvec, struct irq_affinity *affd)
776 : : {
777 : 0 : int ret;
778 : 0 : u16 control;
779 : 0 : void __iomem *base;
780 : :
781 : : /* Ensure MSI-X is disabled while it is set up */
782 : 0 : pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
783 : :
784 : 0 : pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
785 : : /* Request & Map MSI-X table region */
786 : 0 : base = msix_map_region(dev, msix_table_size(control));
787 [ # # ]: 0 : if (!base)
788 : : return -ENOMEM;
789 : :
790 : 0 : ret = msix_setup_entries(dev, base, entries, nvec, affd);
791 [ # # ]: 0 : if (ret)
792 : : return ret;
793 : :
794 : 0 : ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX);
795 [ # # ]: 0 : if (ret)
796 : 0 : goto out_avail;
797 : :
798 : : /* Check if all MSI entries honor device restrictions */
799 : 0 : ret = msi_verify_entries(dev);
800 [ # # ]: 0 : if (ret)
801 : 0 : goto out_free;
802 : :
803 : : /*
804 : : * Some devices require MSI-X to be enabled before we can touch the
805 : : * MSI-X registers. We need to mask all the vectors to prevent
806 : : * interrupts coming in before they're fully set up.
807 : : */
808 : 0 : pci_msix_clear_and_set_ctrl(dev, 0,
809 : : PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE);
810 : :
811 : 0 : msix_program_entries(dev, entries);
812 : :
813 : 0 : ret = populate_msi_sysfs(dev);
814 [ # # ]: 0 : if (ret)
815 : 0 : goto out_free;
816 : :
817 : : /* Set MSI-X enabled bits and unmask the function */
818 [ # # ]: 0 : pci_intx_for_msi(dev, 0);
819 : 0 : dev->msix_enabled = 1;
820 : 0 : pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
821 : :
822 : 0 : pcibios_free_irq(dev);
823 : 0 : return 0;
824 : :
825 : : out_avail:
826 [ # # ]: 0 : if (ret < 0) {
827 : : /*
828 : : * If we had some success, report the number of IRQs
829 : : * we succeeded in setting up.
830 : : */
831 : 0 : struct msi_desc *entry;
832 : 0 : int avail = 0;
833 : :
834 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
835 [ # # ]: 0 : if (entry->irq != 0)
836 : 0 : avail++;
837 : : }
838 [ # # ]: 0 : if (avail != 0)
839 : 0 : ret = avail;
840 : : }
841 : :
842 : 0 : out_free:
843 : 0 : free_msi_irqs(dev);
844 : :
845 : 0 : return ret;
846 : : }
847 : :
848 : : /**
849 : : * pci_msi_supported - check whether MSI may be enabled on a device
850 : : * @dev: pointer to the pci_dev data structure of MSI device function
851 : : * @nvec: how many MSIs have been requested?
852 : : *
853 : : * Look at global flags, the device itself, and its parent buses
854 : : * to determine if MSI/-X are supported for the device. If MSI/-X is
855 : : * supported return 1, else return 0.
856 : : **/
857 : 0 : static int pci_msi_supported(struct pci_dev *dev, int nvec)
858 : : {
859 : 0 : struct pci_bus *bus;
860 : :
861 : : /* MSI must be globally enabled and supported by the device */
862 : 0 : if (!pci_msi_enable)
863 : : return 0;
864 : :
865 [ # # # # : 0 : if (!dev || dev->no_msi)
# # # # ]
866 : : return 0;
867 : :
868 : : /*
869 : : * You can't ask to have 0 or less MSIs configured.
870 : : * a) it's stupid ..
871 : : * b) the list manipulation code assumes nvec >= 1.
872 : : */
873 [ # # # # ]: 0 : if (nvec < 1)
874 : : return 0;
875 : :
876 : : /*
877 : : * Any bridge which does NOT route MSI transactions from its
878 : : * secondary bus to its primary bus must set NO_MSI flag on
879 : : * the secondary pci_bus.
880 : : * We expect only arch-specific PCI host bus controller driver
881 : : * or quirks for specific PCI bridges to be setting NO_MSI.
882 : : */
883 [ # # # # ]: 0 : for (bus = dev->bus; bus; bus = bus->parent)
884 [ # # # # ]: 0 : if (bus->bus_flags & PCI_BUS_FLAGS_NO_MSI)
885 : : return 0;
886 : :
887 : : return 1;
888 : : }
889 : :
890 : : /**
891 : : * pci_msi_vec_count - Return the number of MSI vectors a device can send
892 : : * @dev: device to report about
893 : : *
894 : : * This function returns the number of MSI vectors a device requested via
895 : : * Multiple Message Capable register. It returns a negative errno if the
896 : : * device is not capable sending MSI interrupts. Otherwise, the call succeeds
897 : : * and returns a power of two, up to a maximum of 2^5 (32), according to the
898 : : * MSI specification.
899 : : **/
900 : 0 : int pci_msi_vec_count(struct pci_dev *dev)
901 : : {
902 : 0 : int ret;
903 : 0 : u16 msgctl;
904 : :
905 [ # # ]: 0 : if (!dev->msi_cap)
906 : : return -EINVAL;
907 : :
908 : 0 : pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &msgctl);
909 : 0 : ret = 1 << ((msgctl & PCI_MSI_FLAGS_QMASK) >> 1);
910 : :
911 : 0 : return ret;
912 : : }
913 : : EXPORT_SYMBOL(pci_msi_vec_count);
914 : :
915 : 0 : static void pci_msi_shutdown(struct pci_dev *dev)
916 : : {
917 : 0 : struct msi_desc *desc;
918 : 0 : u32 mask;
919 : :
920 [ # # # # : 0 : if (!pci_msi_enable || !dev || !dev->msi_enabled)
# # ]
921 : : return;
922 : :
923 [ # # ]: 0 : BUG_ON(list_empty(dev_to_msi_list(&dev->dev)));
924 : 0 : desc = first_pci_msi_entry(dev);
925 : :
926 : 0 : pci_msi_set_enable(dev, 0);
927 [ # # ]: 0 : pci_intx_for_msi(dev, 1);
928 : 0 : dev->msi_enabled = 0;
929 : :
930 : : /* Return the device with MSI unmasked as initial states */
931 [ # # ]: 0 : mask = msi_mask(desc->msi_attrib.multi_cap);
932 : : /* Keep cached state to be restored */
933 : 0 : __pci_msi_desc_mask_irq(desc, mask, ~mask);
934 : :
935 : : /* Restore dev->irq to its default pin-assertion IRQ */
936 : 0 : dev->irq = desc->msi_attrib.default_irq;
937 : 0 : pcibios_alloc_irq(dev);
938 : : }
939 : :
940 : 0 : void pci_disable_msi(struct pci_dev *dev)
941 : : {
942 [ # # # # : 0 : if (!pci_msi_enable || !dev || !dev->msi_enabled)
# # ]
943 : : return;
944 : :
945 : 0 : pci_msi_shutdown(dev);
946 : 0 : free_msi_irqs(dev);
947 : : }
948 : : EXPORT_SYMBOL(pci_disable_msi);
949 : :
950 : : /**
951 : : * pci_msix_vec_count - return the number of device's MSI-X table entries
952 : : * @dev: pointer to the pci_dev data structure of MSI-X device function
953 : : * This function returns the number of device's MSI-X table entries and
954 : : * therefore the number of MSI-X vectors device is capable of sending.
955 : : * It returns a negative errno if the device is not capable of sending MSI-X
956 : : * interrupts.
957 : : **/
958 : 0 : int pci_msix_vec_count(struct pci_dev *dev)
959 : : {
960 : 0 : u16 control;
961 : :
962 [ # # ]: 0 : if (!dev->msix_cap)
963 : : return -EINVAL;
964 : :
965 : 0 : pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control);
966 : 0 : return msix_table_size(control);
967 : : }
968 : : EXPORT_SYMBOL(pci_msix_vec_count);
969 : :
970 : 0 : static int __pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries,
971 : : int nvec, struct irq_affinity *affd, int flags)
972 : : {
973 : 0 : int nr_entries;
974 : 0 : int i, j;
975 : :
976 [ # # # # : 0 : if (!pci_msi_supported(dev, nvec) || dev->current_state != PCI_D0)
# # ]
977 : : return -EINVAL;
978 : :
979 : 0 : nr_entries = pci_msix_vec_count(dev);
980 [ # # ]: 0 : if (nr_entries < 0)
981 : : return nr_entries;
982 [ # # # # ]: 0 : if (nvec > nr_entries && !(flags & PCI_IRQ_VIRTUAL))
983 : : return nr_entries;
984 : :
985 [ # # ]: 0 : if (entries) {
986 : : /* Check for any invalid entries */
987 [ # # ]: 0 : for (i = 0; i < nvec; i++) {
988 [ # # ]: 0 : if (entries[i].entry >= nr_entries)
989 : : return -EINVAL; /* invalid entry */
990 [ # # ]: 0 : for (j = i + 1; j < nvec; j++) {
991 [ # # ]: 0 : if (entries[i].entry == entries[j].entry)
992 : : return -EINVAL; /* duplicate entry */
993 : : }
994 : : }
995 : : }
996 : :
997 : : /* Check whether driver already requested for MSI IRQ */
998 [ # # ]: 0 : if (dev->msi_enabled) {
999 : 0 : pci_info(dev, "can't enable MSI-X (MSI IRQ already assigned)\n");
1000 : 0 : return -EINVAL;
1001 : : }
1002 : 0 : return msix_capability_init(dev, entries, nvec, affd);
1003 : : }
1004 : :
1005 : 0 : static void pci_msix_shutdown(struct pci_dev *dev)
1006 : : {
1007 : 0 : struct msi_desc *entry;
1008 : :
1009 [ # # # # : 0 : if (!pci_msi_enable || !dev || !dev->msix_enabled)
# # ]
1010 : : return;
1011 : :
1012 [ # # ]: 0 : if (pci_dev_is_disconnected(dev)) {
1013 : 0 : dev->msix_enabled = 0;
1014 : 0 : return;
1015 : : }
1016 : :
1017 : : /* Return the device with MSI-X masked as initial states */
1018 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
1019 : : /* Keep cached states to be restored */
1020 [ # # ]: 0 : __pci_msix_desc_mask_irq(entry, 1);
1021 : : }
1022 : :
1023 : 0 : pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
1024 [ # # ]: 0 : pci_intx_for_msi(dev, 1);
1025 : 0 : dev->msix_enabled = 0;
1026 : 0 : pcibios_alloc_irq(dev);
1027 : : }
1028 : :
1029 : 0 : void pci_disable_msix(struct pci_dev *dev)
1030 : : {
1031 [ # # # # : 0 : if (!pci_msi_enable || !dev || !dev->msix_enabled)
# # ]
1032 : : return;
1033 : :
1034 : 0 : pci_msix_shutdown(dev);
1035 : 0 : free_msi_irqs(dev);
1036 : : }
1037 : : EXPORT_SYMBOL(pci_disable_msix);
1038 : :
1039 : 0 : void pci_no_msi(void)
1040 : : {
1041 : 0 : pci_msi_enable = 0;
1042 : 0 : }
1043 : :
1044 : : /**
1045 : : * pci_msi_enabled - is MSI enabled?
1046 : : *
1047 : : * Returns true if MSI has not been disabled by the command-line option
1048 : : * pci=nomsi.
1049 : : **/
1050 : 6 : int pci_msi_enabled(void)
1051 : : {
1052 : 6 : return pci_msi_enable;
1053 : : }
1054 : : EXPORT_SYMBOL(pci_msi_enabled);
1055 : :
1056 : 0 : static int __pci_enable_msi_range(struct pci_dev *dev, int minvec, int maxvec,
1057 : : struct irq_affinity *affd)
1058 : : {
1059 : 0 : int nvec;
1060 : 0 : int rc;
1061 : :
1062 [ # # # # : 0 : if (!pci_msi_supported(dev, minvec) || dev->current_state != PCI_D0)
# # ]
1063 : : return -EINVAL;
1064 : :
1065 : : /* Check whether driver already requested MSI-X IRQs */
1066 [ # # ]: 0 : if (dev->msix_enabled) {
1067 : 0 : pci_info(dev, "can't enable MSI (MSI-X already enabled)\n");
1068 : 0 : return -EINVAL;
1069 : : }
1070 : :
1071 [ # # ]: 0 : if (maxvec < minvec)
1072 : : return -ERANGE;
1073 : :
1074 [ # # # # ]: 0 : if (WARN_ON_ONCE(dev->msi_enabled))
1075 : : return -EINVAL;
1076 : :
1077 : 0 : nvec = pci_msi_vec_count(dev);
1078 [ # # ]: 0 : if (nvec < 0)
1079 : : return nvec;
1080 [ # # ]: 0 : if (nvec < minvec)
1081 : : return -ENOSPC;
1082 : :
1083 : 0 : if (nvec > maxvec)
1084 : : nvec = maxvec;
1085 : :
1086 : 0 : for (;;) {
1087 [ # # ]: 0 : if (affd) {
1088 : 0 : nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
1089 [ # # ]: 0 : if (nvec < minvec)
1090 : : return -ENOSPC;
1091 : : }
1092 : :
1093 : 0 : rc = msi_capability_init(dev, nvec, affd);
1094 [ # # ]: 0 : if (rc == 0)
1095 : 0 : return nvec;
1096 : :
1097 [ # # ]: 0 : if (rc < 0)
1098 : 0 : return rc;
1099 [ # # ]: 0 : if (rc < minvec)
1100 : : return -ENOSPC;
1101 : :
1102 : : nvec = rc;
1103 : : }
1104 : : }
1105 : :
1106 : : /* deprecated, don't use */
1107 : 0 : int pci_enable_msi(struct pci_dev *dev)
1108 : : {
1109 : 0 : int rc = __pci_enable_msi_range(dev, 1, 1, NULL);
1110 : 0 : if (rc < 0)
1111 : : return rc;
1112 : : return 0;
1113 : : }
1114 : : EXPORT_SYMBOL(pci_enable_msi);
1115 : :
1116 : 0 : static int __pci_enable_msix_range(struct pci_dev *dev,
1117 : : struct msix_entry *entries, int minvec,
1118 : : int maxvec, struct irq_affinity *affd,
1119 : : int flags)
1120 : : {
1121 : 0 : int rc, nvec = maxvec;
1122 : :
1123 [ # # ]: 0 : if (maxvec < minvec)
1124 : : return -ERANGE;
1125 : :
1126 [ # # # # ]: 0 : if (WARN_ON_ONCE(dev->msix_enabled))
1127 : : return -EINVAL;
1128 : :
1129 : 0 : for (;;) {
1130 [ # # ]: 0 : if (affd) {
1131 : 0 : nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
1132 [ # # ]: 0 : if (nvec < minvec)
1133 : : return -ENOSPC;
1134 : : }
1135 : :
1136 : 0 : rc = __pci_enable_msix(dev, entries, nvec, affd, flags);
1137 [ # # ]: 0 : if (rc == 0)
1138 : 0 : return nvec;
1139 : :
1140 [ # # ]: 0 : if (rc < 0)
1141 : 0 : return rc;
1142 [ # # ]: 0 : if (rc < minvec)
1143 : : return -ENOSPC;
1144 : :
1145 : : nvec = rc;
1146 : : }
1147 : : }
1148 : :
1149 : : /**
1150 : : * pci_enable_msix_range - configure device's MSI-X capability structure
1151 : : * @dev: pointer to the pci_dev data structure of MSI-X device function
1152 : : * @entries: pointer to an array of MSI-X entries
1153 : : * @minvec: minimum number of MSI-X IRQs requested
1154 : : * @maxvec: maximum number of MSI-X IRQs requested
1155 : : *
1156 : : * Setup the MSI-X capability structure of device function with a maximum
1157 : : * possible number of interrupts in the range between @minvec and @maxvec
1158 : : * upon its software driver call to request for MSI-X mode enabled on its
1159 : : * hardware device function. It returns a negative errno if an error occurs.
1160 : : * If it succeeds, it returns the actual number of interrupts allocated and
1161 : : * indicates the successful configuration of MSI-X capability structure
1162 : : * with new allocated MSI-X interrupts.
1163 : : **/
1164 : 0 : int pci_enable_msix_range(struct pci_dev *dev, struct msix_entry *entries,
1165 : : int minvec, int maxvec)
1166 : : {
1167 : 0 : return __pci_enable_msix_range(dev, entries, minvec, maxvec, NULL, 0);
1168 : : }
1169 : : EXPORT_SYMBOL(pci_enable_msix_range);
1170 : :
1171 : : /**
1172 : : * pci_alloc_irq_vectors_affinity - allocate multiple IRQs for a device
1173 : : * @dev: PCI device to operate on
1174 : : * @min_vecs: minimum number of vectors required (must be >= 1)
1175 : : * @max_vecs: maximum (desired) number of vectors
1176 : : * @flags: flags or quirks for the allocation
1177 : : * @affd: optional description of the affinity requirements
1178 : : *
1179 : : * Allocate up to @max_vecs interrupt vectors for @dev, using MSI-X or MSI
1180 : : * vectors if available, and fall back to a single legacy vector
1181 : : * if neither is available. Return the number of vectors allocated,
1182 : : * (which might be smaller than @max_vecs) if successful, or a negative
1183 : : * error code on error. If less than @min_vecs interrupt vectors are
1184 : : * available for @dev the function will fail with -ENOSPC.
1185 : : *
1186 : : * To get the Linux IRQ number used for a vector that can be passed to
1187 : : * request_irq() use the pci_irq_vector() helper.
1188 : : */
1189 : 0 : int pci_alloc_irq_vectors_affinity(struct pci_dev *dev, unsigned int min_vecs,
1190 : : unsigned int max_vecs, unsigned int flags,
1191 : : struct irq_affinity *affd)
1192 : : {
1193 : 0 : struct irq_affinity msi_default_affd = {0};
1194 : 0 : int msix_vecs = -ENOSPC;
1195 : 0 : int msi_vecs = -ENOSPC;
1196 : :
1197 [ # # ]: 0 : if (flags & PCI_IRQ_AFFINITY) {
1198 [ # # ]: 0 : if (!affd)
1199 : 0 : affd = &msi_default_affd;
1200 : : } else {
1201 [ # # # # ]: 0 : if (WARN_ON(affd))
1202 : 0 : affd = NULL;
1203 : : }
1204 : :
1205 [ # # ]: 0 : if (flags & PCI_IRQ_MSIX) {
1206 : 0 : msix_vecs = __pci_enable_msix_range(dev, NULL, min_vecs,
1207 : : max_vecs, affd, flags);
1208 [ # # ]: 0 : if (msix_vecs > 0)
1209 : : return msix_vecs;
1210 : : }
1211 : :
1212 [ # # ]: 0 : if (flags & PCI_IRQ_MSI) {
1213 : 0 : msi_vecs = __pci_enable_msi_range(dev, min_vecs, max_vecs,
1214 : : affd);
1215 [ # # ]: 0 : if (msi_vecs > 0)
1216 : : return msi_vecs;
1217 : : }
1218 : :
1219 : : /* use legacy IRQ if allowed */
1220 [ # # ]: 0 : if (flags & PCI_IRQ_LEGACY) {
1221 [ # # # # ]: 0 : if (min_vecs == 1 && dev->irq) {
1222 : : /*
1223 : : * Invoke the affinity spreading logic to ensure that
1224 : : * the device driver can adjust queue configuration
1225 : : * for the single interrupt case.
1226 : : */
1227 [ # # ]: 0 : if (affd)
1228 : 0 : irq_create_affinity_masks(1, affd);
1229 : 0 : pci_intx(dev, 1);
1230 : 0 : return 1;
1231 : : }
1232 : : }
1233 : :
1234 [ # # ]: 0 : if (msix_vecs == -ENOSPC)
1235 : 0 : return -ENOSPC;
1236 : : return msi_vecs;
1237 : : }
1238 : : EXPORT_SYMBOL(pci_alloc_irq_vectors_affinity);
1239 : :
1240 : : /**
1241 : : * pci_free_irq_vectors - free previously allocated IRQs for a device
1242 : : * @dev: PCI device to operate on
1243 : : *
1244 : : * Undoes the allocations and enabling in pci_alloc_irq_vectors().
1245 : : */
1246 : 0 : void pci_free_irq_vectors(struct pci_dev *dev)
1247 : : {
1248 : 0 : pci_disable_msix(dev);
1249 : 0 : pci_disable_msi(dev);
1250 : 0 : }
1251 : : EXPORT_SYMBOL(pci_free_irq_vectors);
1252 : :
1253 : : /**
1254 : : * pci_irq_vector - return Linux IRQ number of a device vector
1255 : : * @dev: PCI device to operate on
1256 : : * @nr: device-relative interrupt vector index (0-based).
1257 : : */
1258 : 0 : int pci_irq_vector(struct pci_dev *dev, unsigned int nr)
1259 : : {
1260 [ # # ]: 0 : if (dev->msix_enabled) {
1261 : 0 : struct msi_desc *entry;
1262 : 0 : int i = 0;
1263 : :
1264 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
1265 [ # # ]: 0 : if (i == nr)
1266 : 0 : return entry->irq;
1267 : 0 : i++;
1268 : : }
1269 : 0 : WARN_ON_ONCE(1);
1270 : 0 : return -EINVAL;
1271 : : }
1272 : :
1273 [ # # ]: 0 : if (dev->msi_enabled) {
1274 : 0 : struct msi_desc *entry = first_pci_msi_entry(dev);
1275 : :
1276 [ # # # # ]: 0 : if (WARN_ON_ONCE(nr >= entry->nvec_used))
1277 : : return -EINVAL;
1278 : : } else {
1279 [ # # # # ]: 0 : if (WARN_ON_ONCE(nr > 0))
1280 : : return -EINVAL;
1281 : : }
1282 : :
1283 : 0 : return dev->irq + nr;
1284 : : }
1285 : : EXPORT_SYMBOL(pci_irq_vector);
1286 : :
1287 : : /**
1288 : : * pci_irq_get_affinity - return the affinity of a particular MSI vector
1289 : : * @dev: PCI device to operate on
1290 : : * @nr: device-relative interrupt vector index (0-based).
1291 : : */
1292 : 0 : const struct cpumask *pci_irq_get_affinity(struct pci_dev *dev, int nr)
1293 : : {
1294 [ # # ]: 0 : if (dev->msix_enabled) {
1295 : 0 : struct msi_desc *entry;
1296 : 0 : int i = 0;
1297 : :
1298 [ # # ]: 0 : for_each_pci_msi_entry(entry, dev) {
1299 [ # # ]: 0 : if (i == nr)
1300 : 0 : return &entry->affinity->mask;
1301 : 0 : i++;
1302 : : }
1303 : 0 : WARN_ON_ONCE(1);
1304 : 0 : return NULL;
1305 [ # # ]: 0 : } else if (dev->msi_enabled) {
1306 : 0 : struct msi_desc *entry = first_pci_msi_entry(dev);
1307 : :
1308 [ # # # # : 0 : if (WARN_ON_ONCE(!entry || !entry->affinity ||
# # # # #
# ]
1309 : : nr >= entry->nvec_used))
1310 : : return NULL;
1311 : :
1312 : 0 : return &entry->affinity[nr].mask;
1313 : : } else {
1314 : : return cpu_possible_mask;
1315 : : }
1316 : : }
1317 : : EXPORT_SYMBOL(pci_irq_get_affinity);
1318 : :
1319 : 0 : struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc)
1320 : : {
1321 [ # # # # ]: 0 : return to_pci_dev(desc->dev);
1322 : : }
1323 : : EXPORT_SYMBOL(msi_desc_to_pci_dev);
1324 : :
1325 : 0 : void *msi_desc_to_pci_sysdata(struct msi_desc *desc)
1326 : : {
1327 : 0 : struct pci_dev *dev = msi_desc_to_pci_dev(desc);
1328 : :
1329 : 0 : return dev->bus->sysdata;
1330 : : }
1331 : : EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata);
1332 : :
1333 : : #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
1334 : : /**
1335 : : * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space
1336 : : * @irq_data: Pointer to interrupt data of the MSI interrupt
1337 : : * @msg: Pointer to the message
1338 : : */
1339 : 0 : void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg)
1340 : : {
1341 [ # # ]: 0 : struct msi_desc *desc = irq_data_get_msi_desc(irq_data);
1342 : :
1343 : : /*
1344 : : * For MSI-X desc->irq is always equal to irq_data->irq. For
1345 : : * MSI only the first interrupt of MULTI MSI passes the test.
1346 : : */
1347 [ # # ]: 0 : if (desc->irq == irq_data->irq)
1348 : 0 : __pci_write_msi_msg(desc, msg);
1349 : 0 : }
1350 : :
1351 : : /**
1352 : : * pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
1353 : : * @dev: Pointer to the PCI device
1354 : : * @desc: Pointer to the MSI descriptor
1355 : : *
1356 : : * The ID number is only used within the irqdomain.
1357 : : */
1358 : 0 : irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
1359 : : struct msi_desc *desc)
1360 : : {
1361 : 0 : return (irq_hw_number_t)desc->msi_attrib.entry_nr |
1362 : 0 : pci_dev_id(dev) << 11 |
1363 : 0 : (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
1364 : : }
1365 : :
1366 : 0 : static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc)
1367 : : {
1368 [ # # # # ]: 0 : return !desc->msi_attrib.is_msix && desc->nvec_used > 1;
1369 : : }
1370 : :
1371 : : /**
1372 : : * pci_msi_domain_check_cap - Verify that @domain supports the capabilities
1373 : : * for @dev
1374 : : * @domain: The interrupt domain to check
1375 : : * @info: The domain info for verification
1376 : : * @dev: The device to check
1377 : : *
1378 : : * Returns:
1379 : : * 0 if the functionality is supported
1380 : : * 1 if Multi MSI is requested, but the domain does not support it
1381 : : * -ENOTSUPP otherwise
1382 : : */
1383 : 0 : int pci_msi_domain_check_cap(struct irq_domain *domain,
1384 : : struct msi_domain_info *info, struct device *dev)
1385 : : {
1386 : 0 : struct msi_desc *desc = first_pci_msi_entry(to_pci_dev(dev));
1387 : :
1388 : : /* Special handling to support __pci_enable_msi_range() */
1389 [ # # # # ]: 0 : if (pci_msi_desc_is_multi_msi(desc) &&
1390 [ # # ]: 0 : !(info->flags & MSI_FLAG_MULTI_PCI_MSI))
1391 : : return 1;
1392 [ # # # # ]: 0 : else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX))
1393 : 0 : return -ENOTSUPP;
1394 : :
1395 : : return 0;
1396 : : }
1397 : :
1398 : 0 : static int pci_msi_domain_handle_error(struct irq_domain *domain,
1399 : : struct msi_desc *desc, int error)
1400 : : {
1401 : : /* Special handling to support __pci_enable_msi_range() */
1402 [ # # # # : 0 : if (pci_msi_desc_is_multi_msi(desc) && error == -ENOSPC)
# # ]
1403 : 0 : return 1;
1404 : :
1405 : : return error;
1406 : : }
1407 : :
1408 : : #ifdef GENERIC_MSI_DOMAIN_OPS
1409 : : static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
1410 : : struct msi_desc *desc)
1411 : : {
1412 : : arg->desc = desc;
1413 : : arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
1414 : : desc);
1415 : : }
1416 : : #else
1417 : : #define pci_msi_domain_set_desc NULL
1418 : : #endif
1419 : :
1420 : : static struct msi_domain_ops pci_msi_domain_ops_default = {
1421 : : .set_desc = pci_msi_domain_set_desc,
1422 : : .msi_check = pci_msi_domain_check_cap,
1423 : : .handle_error = pci_msi_domain_handle_error,
1424 : : };
1425 : :
1426 : 3 : static void pci_msi_domain_update_dom_ops(struct msi_domain_info *info)
1427 : : {
1428 : 3 : struct msi_domain_ops *ops = info->ops;
1429 : :
1430 : 3 : if (ops == NULL) {
1431 : 0 : info->ops = &pci_msi_domain_ops_default;
1432 : : } else {
1433 [ - + ]: 3 : if (ops->set_desc == NULL)
1434 : 0 : ops->set_desc = pci_msi_domain_set_desc;
1435 [ + - ]: 3 : if (ops->msi_check == NULL)
1436 : 3 : ops->msi_check = pci_msi_domain_check_cap;
1437 [ + - ]: 3 : if (ops->handle_error == NULL)
1438 : 3 : ops->handle_error = pci_msi_domain_handle_error;
1439 : : }
1440 : : }
1441 : :
1442 : : static void pci_msi_domain_update_chip_ops(struct msi_domain_info *info)
1443 : : {
1444 : : struct irq_chip *chip = info->chip;
1445 : :
1446 : : BUG_ON(!chip);
1447 : : if (!chip->irq_write_msi_msg)
1448 : : chip->irq_write_msi_msg = pci_msi_domain_write_msg;
1449 : : if (!chip->irq_mask)
1450 : : chip->irq_mask = pci_msi_mask_irq;
1451 : : if (!chip->irq_unmask)
1452 : : chip->irq_unmask = pci_msi_unmask_irq;
1453 : : }
1454 : :
1455 : : /**
1456 : : * pci_msi_create_irq_domain - Create a MSI interrupt domain
1457 : : * @fwnode: Optional fwnode of the interrupt controller
1458 : : * @info: MSI domain info
1459 : : * @parent: Parent irq domain
1460 : : *
1461 : : * Updates the domain and chip ops and creates a MSI interrupt domain.
1462 : : *
1463 : : * Returns:
1464 : : * A domain pointer or NULL in case of failure.
1465 : : */
1466 : 3 : struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode,
1467 : : struct msi_domain_info *info,
1468 : : struct irq_domain *parent)
1469 : : {
1470 : 3 : struct irq_domain *domain;
1471 : :
1472 [ - + - + ]: 3 : if (WARN_ON(info->flags & MSI_FLAG_LEVEL_CAPABLE))
1473 : 0 : info->flags &= ~MSI_FLAG_LEVEL_CAPABLE;
1474 : :
1475 [ + - ]: 3 : if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
1476 [ - + ]: 3 : pci_msi_domain_update_dom_ops(info);
1477 [ + - ]: 3 : if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
1478 : 3 : pci_msi_domain_update_chip_ops(info);
1479 : :
1480 : 3 : info->flags |= MSI_FLAG_ACTIVATE_EARLY;
1481 : 3 : if (IS_ENABLED(CONFIG_GENERIC_IRQ_RESERVATION_MODE))
1482 : 3 : info->flags |= MSI_FLAG_MUST_REACTIVATE;
1483 : :
1484 : : /* PCI-MSI is oneshot-safe */
1485 : 3 : info->chip->flags |= IRQCHIP_ONESHOT_SAFE;
1486 : :
1487 : 3 : domain = msi_create_irq_domain(fwnode, info, parent);
1488 [ + - ]: 3 : if (!domain)
1489 : : return NULL;
1490 : :
1491 : 3 : irq_domain_update_bus_token(domain, DOMAIN_BUS_PCI_MSI);
1492 : 3 : return domain;
1493 : : }
1494 : : EXPORT_SYMBOL_GPL(pci_msi_create_irq_domain);
1495 : :
1496 : : /*
1497 : : * Users of the generic MSI infrastructure expect a device to have a single ID,
1498 : : * so with DMA aliases we have to pick the least-worst compromise. Devices with
1499 : : * DMA phantom functions tend to still emit MSIs from the real function number,
1500 : : * so we ignore those and only consider topological aliases where either the
1501 : : * alias device or RID appears on a different bus number. We also make the
1502 : : * reasonable assumption that bridges are walked in an upstream direction (so
1503 : : * the last one seen wins), and the much braver assumption that the most likely
1504 : : * case is that of PCI->PCIe so we should always use the alias RID. This echoes
1505 : : * the logic from intel_irq_remapping's set_msi_sid(), which presumably works
1506 : : * well enough in practice; in the face of the horrible PCIe<->PCI-X conditions
1507 : : * for taking ownership all we can really do is close our eyes and hope...
1508 : : */
1509 : 21 : static int get_msi_id_cb(struct pci_dev *pdev, u16 alias, void *data)
1510 : : {
1511 : 21 : u32 *pa = data;
1512 : 21 : u8 bus = PCI_BUS_NUM(*pa);
1513 : :
1514 [ + - - + ]: 21 : if (pdev->bus->number != bus || PCI_BUS_NUM(alias) != bus)
1515 : 0 : *pa = alias;
1516 : :
1517 : 21 : return 0;
1518 : : }
1519 : :
1520 : : /**
1521 : : * pci_msi_domain_get_msi_rid - Get the MSI requester id (RID)
1522 : : * @domain: The interrupt domain
1523 : : * @pdev: The PCI device.
1524 : : *
1525 : : * The RID for a device is formed from the alias, with a firmware
1526 : : * supplied mapping applied
1527 : : *
1528 : : * Returns: The RID.
1529 : : */
1530 : 0 : u32 pci_msi_domain_get_msi_rid(struct irq_domain *domain, struct pci_dev *pdev)
1531 : : {
1532 : 0 : struct device_node *of_node;
1533 : 0 : u32 rid = pci_dev_id(pdev);
1534 : :
1535 : 0 : pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1536 : :
1537 : 0 : of_node = irq_domain_get_of_node(domain);
1538 : 0 : rid = of_node ? of_msi_map_rid(&pdev->dev, of_node, rid) :
1539 : 0 : iort_msi_map_rid(&pdev->dev, rid);
1540 : :
1541 : 0 : return rid;
1542 : : }
1543 : :
1544 : : /**
1545 : : * pci_msi_get_device_domain - Get the MSI domain for a given PCI device
1546 : : * @pdev: The PCI device
1547 : : *
1548 : : * Use the firmware data to find a device-specific MSI domain
1549 : : * (i.e. not one that is set as a default).
1550 : : *
1551 : : * Returns: The corresponding MSI domain or NULL if none has been found.
1552 : : */
1553 : 21 : struct irq_domain *pci_msi_get_device_domain(struct pci_dev *pdev)
1554 : : {
1555 : 21 : struct irq_domain *dom;
1556 : 21 : u32 rid = pci_dev_id(pdev);
1557 : :
1558 : 21 : pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid);
1559 : 21 : dom = of_msi_map_get_device_domain(&pdev->dev, rid);
1560 : 21 : if (!dom)
1561 : 21 : dom = iort_get_device_domain(&pdev->dev, rid);
1562 : 21 : return dom;
1563 : : }
1564 : : #endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */
|