]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
PCI: Add pci_bus_address() to get bus address of a BAR
authorBjorn Helgaas <bhelgaas@google.com>
Sat, 21 Dec 2013 15:33:26 +0000 (08:33 -0700)
committerBjorn Helgaas <bhelgaas@google.com>
Sat, 21 Dec 2013 17:07:46 +0000 (10:07 -0700)
We store BAR information as a struct resource, which contains the CPU
address, not the bus address.  Drivers often need the bus address, and
there's currently no convenient way to get it, so they often read the
BAR directly, or use the resource address (which doesn't work if there's
any translation between CPU and bus addresses).

Add pci_bus_address() to make this convenient.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
include/linux/pci.h

index bf32412704a79a883bcb5077ddb8418cfd16705d..966b286b5d5393361a791839ed8b57b0fbc660f4 100644 (file)
@@ -1077,6 +1077,14 @@ int __must_check pci_bus_alloc_resource(struct pci_bus *bus,
                                                  resource_size_t),
                        void *alignf_data);
 
+static inline dma_addr_t pci_bus_address(struct pci_dev *pdev, int bar)
+{
+       struct pci_bus_region region;
+
+       pcibios_resource_to_bus(pdev->bus, &region, &pdev->resource[bar]);
+       return region.start;
+}
+
 /* Proper probing supporting hot-pluggable devices */
 int __must_check __pci_register_driver(struct pci_driver *, struct module *,
                                       const char *mod_name);