spi-topcliff-pch: add recovery processing in case wait-event timeout
[zen-stable.git] / arch / x86 / pci / bus_numa.c
blobfd3f65510e9dac56650aa0cae859465a7d15c865
1 #include <linux/init.h>
2 #include <linux/pci.h>
3 #include <linux/range.h>
5 #include "bus_numa.h"
7 int pci_root_num;
8 struct pci_root_info pci_root_info[PCI_ROOT_NR];
10 void x86_pci_root_bus_resources(int bus, struct list_head *resources)
12 int i;
13 int j;
14 struct pci_root_info *info;
16 if (!pci_root_num)
17 goto default_resources;
19 for (i = 0; i < pci_root_num; i++) {
20 if (pci_root_info[i].bus_min == bus)
21 break;
24 if (i == pci_root_num)
25 goto default_resources;
27 printk(KERN_DEBUG "PCI: root bus %02x: hardware-probed resources\n",
28 bus);
30 info = &pci_root_info[i];
31 for (j = 0; j < info->res_num; j++) {
32 struct resource *res;
33 struct resource *root;
35 res = &info->res[j];
36 pci_add_resource(resources, res);
37 if (res->flags & IORESOURCE_IO)
38 root = &ioport_resource;
39 else
40 root = &iomem_resource;
41 insert_resource(root, res);
43 return;
45 default_resources:
47 * We don't have any host bridge aperture information from the
48 * "native host bridge drivers," e.g., amd_bus or broadcom_bus,
49 * so fall back to the defaults historically used by pci_create_bus().
51 printk(KERN_DEBUG "PCI: root bus %02x: using default resources\n", bus);
52 pci_add_resource(resources, &ioport_resource);
53 pci_add_resource(resources, &iomem_resource);
56 void __devinit update_res(struct pci_root_info *info, resource_size_t start,
57 resource_size_t end, unsigned long flags, int merge)
59 int i;
60 struct resource *res;
62 if (start > end)
63 return;
65 if (start == MAX_RESOURCE)
66 return;
68 if (!merge)
69 goto addit;
71 /* try to merge it with old one */
72 for (i = 0; i < info->res_num; i++) {
73 resource_size_t final_start, final_end;
74 resource_size_t common_start, common_end;
76 res = &info->res[i];
77 if (res->flags != flags)
78 continue;
80 common_start = max(res->start, start);
81 common_end = min(res->end, end);
82 if (common_start > common_end + 1)
83 continue;
85 final_start = min(res->start, start);
86 final_end = max(res->end, end);
88 res->start = final_start;
89 res->end = final_end;
90 return;
93 addit:
95 /* need to add that */
96 if (info->res_num >= RES_NUM)
97 return;
99 res = &info->res[info->res_num];
100 res->name = info->name;
101 res->flags = flags;
102 res->start = start;
103 res->end = end;
104 res->child = NULL;
105 info->res_num++;