]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
x86/PCI: put busn resource in pci_root_info for native host bridge drivers
authorYinghai Lu <yinghai@kernel.org>
Fri, 18 May 2012 01:51:12 +0000 (18:51 -0700)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 13 Jun 2012 21:42:24 +0000 (15:42 -0600)
Add the host bridge bus number aperture to the resource list.
Like the MMIO and I/O port apertures, this will be used when assigning
resources to hot-added devices or in the case of conflicts.

[bhelgaas: changelog, tidy printk]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
arch/x86/pci/amd_bus.c
arch/x86/pci/bus_numa.c
arch/x86/pci/bus_numa.h

index 5aed49bff05817aad85712e280f2913bd5a883a1..e9e6ed5cdf9460b080e64b1bf3def3861979fb98 100644 (file)
@@ -121,7 +121,6 @@ static int __init early_fill_mp_bus_info(void)
                link = (reg >> 8) & 0x03;
 
                info = alloc_pci_root_info(min_bus, max_bus, node, link);
-               sprintf(info->name, "PCI Bus #%02x", min_bus);
        }
 
        /* get the default node and link for left over res */
@@ -300,9 +299,9 @@ static int __init early_fill_mp_bus_info(void)
                int busnum;
                struct pci_root_res *root_res;
 
-               busnum = info->bus_min;
-               printk(KERN_DEBUG "bus: [%02x, %02x] on node %x link %x\n",
-                      info->bus_min, info->bus_max, info->node, info->link);
+               busnum = info->busn.start;
+               printk(KERN_DEBUG "bus: %pR on node %x link %x\n",
+                      &info->busn, info->node, info->link);
                list_for_each_entry(root_res, &info->resources, list)
                        printk(KERN_DEBUG "bus: %02x %pR\n",
                                       busnum, &root_res->res);
index 306579f7d0fdc4283a332911844fb97830c915dc..d37e2fec97e58fd3b4c3d35a5903fd6cf78060d1 100644 (file)
@@ -14,7 +14,7 @@ static struct pci_root_info *x86_find_pci_root_info(int bus)
                return NULL;
 
        list_for_each_entry(info, &pci_root_infos, list)
-               if (info->bus_min == bus)
+               if (info->busn.start == bus)
                        return info;
 
        return NULL;
@@ -24,6 +24,8 @@ void x86_pci_root_bus_resources(int bus, struct list_head *resources)
 {
        struct pci_root_info *info = x86_find_pci_root_info(bus);
        struct pci_root_res *root_res;
+       struct pci_host_bridge_window *window;
+       bool found = false;
 
        if (!info)
                goto default_resources;
@@ -31,6 +33,16 @@ void x86_pci_root_bus_resources(int bus, struct list_head *resources)
        printk(KERN_DEBUG "PCI: root bus %02x: hardware-probed resources\n",
               bus);
 
+       /* already added by acpi ? */
+       list_for_each_entry(window, resources, list)
+               if (window->res->flags & IORESOURCE_BUS) {
+                       found = true;
+                       break;
+               }
+
+       if (!found)
+               pci_add_resource(resources, &info->busn);
+
        list_for_each_entry(root_res, &info->resources, list) {
                struct resource *res;
                struct resource *root;
@@ -66,9 +78,13 @@ struct pci_root_info __init *alloc_pci_root_info(int bus_min, int bus_max,
        if (!info)
                return info;
 
+       sprintf(info->name, "PCI Bus #%02x", bus_min);
+
        INIT_LIST_HEAD(&info->resources);
-       info->bus_min = bus_min;
-       info->bus_max = bus_max;
+       info->busn.name  = info->name;
+       info->busn.start = bus_min;
+       info->busn.end   = bus_max;
+       info->busn.flags = IORESOURCE_BUS;
        info->node = node;
        info->link = link;
 
index 226a466b2b2b830562c3cc9c6237b53f1d4f1251..ff8f65b04574d6a3ac29b3ca6d0050d2971c732b 100644 (file)
@@ -13,8 +13,7 @@ struct pci_root_info {
        struct list_head list;
        char name[12];
        struct list_head resources;
-       int bus_min;
-       int bus_max;
+       struct resource busn;
        int node;
        int link;
 };