aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2008-12-11 13:24:23 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-01-07 14:12:50 -0500
commit57c2cf71c12318b72ebaa5720d210476b6bac4d4 (patch)
treeba071276800dc24d9232fd124c4678b2a86f86b5
parent12b955ff63db0b75cfc2d4939696c57b31891ec6 (diff)
PCI: add pci_swizzle_interrupt_pin()
This patch adds pci_swizzle_interrupt_pin(), which implements the INTx swizzling algorithm specified in Table 9-1 of the "PCI-to-PCI Bridge Architecture Specification," revision 1.2. There are many architecture-specific implementations of this swizzle that can be replaced by this common one. Reviewed-by: David Howells <dhowells@redhat.com> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r--drivers/pci/pci.c16
-rw-r--r--include/linux/pci.h1
2 files changed, 16 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index bd52ca4c2893..d4d71fae6233 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -1366,6 +1366,20 @@ void pci_enable_ari(struct pci_dev *dev)
1366 bridge->ari_enabled = 1; 1366 bridge->ari_enabled = 1;
1367} 1367}
1368 1368
1369/**
1370 * pci_swizzle_interrupt_pin - swizzle INTx for device behind bridge
1371 * @dev: the PCI device
1372 * @pin: the INTx pin (1=INTA, 2=INTB, 3=INTD, 4=INTD)
1373 *
1374 * Perform INTx swizzling for a device behind one level of bridge. This is
1375 * required by section 9.1 of the PCI-to-PCI bridge specification for devices
1376 * behind bridges on add-in cards.
1377 */
1378u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin)
1379{
1380 return (((pin - 1) + PCI_SLOT(dev->devfn)) % 4) + 1;
1381}
1382
1369int 1383int
1370pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge) 1384pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1371{ 1385{
@@ -1376,7 +1390,7 @@ pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge)
1376 return -1; 1390 return -1;
1377 1391
1378 while (dev->bus->self) { 1392 while (dev->bus->self) {
1379 pin = (((pin - 1) + PCI_SLOT(dev->devfn)) % 4) + 1; 1393 pin = pci_swizzle_interrupt_pin(dev, pin);
1380 dev = dev->bus->self; 1394 dev = dev->bus->self;
1381 } 1395 }
1382 *bridge = dev; 1396 *bridge = dev;
diff --git a/include/linux/pci.h b/include/linux/pci.h
index bfcb39ca8879..58357d14f94c 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -532,6 +532,7 @@ int __must_check pci_bus_add_device(struct pci_dev *dev);
532void pci_read_bridge_bases(struct pci_bus *child); 532void pci_read_bridge_bases(struct pci_bus *child);
533struct resource *pci_find_parent_resource(const struct pci_dev *dev, 533struct resource *pci_find_parent_resource(const struct pci_dev *dev,
534 struct resource *res); 534 struct resource *res);
535u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin);
535int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge); 536int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge);
536extern struct pci_dev *pci_dev_get(struct pci_dev *dev); 537extern struct pci_dev *pci_dev_get(struct pci_dev *dev);
537extern void pci_dev_put(struct pci_dev *dev); 538extern void pci_dev_put(struct pci_dev *dev);