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