blob: fd3f65510e9dac56650aa0cae859465a7d15c865 [file] [log] [blame]
Yinghai Lu67f241f2009-11-11 22:27:40 -08001#include <linux/init.h>
2#include <linux/pci.h>
Yinghai Lu9ad3f2c2010-02-10 01:20:11 -08003#include <linux/range.h>
Yinghai Lu67f241f2009-11-11 22:27:40 -08004
5#include "bus_numa.h"
6
7int pci_root_num;
8struct pci_root_info pci_root_info[PCI_ROOT_NR];
Yinghai Lu67f241f2009-11-11 22:27:40 -08009
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060010void x86_pci_root_bus_resources(int bus, struct list_head *resources)
Yinghai Lu67f241f2009-11-11 22:27:40 -080011{
12 int i;
13 int j;
14 struct pci_root_info *info;
15
Yinghai Lu67f241f2009-11-11 22:27:40 -080016 if (!pci_root_num)
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060017 goto default_resources;
Yinghai Lu67f241f2009-11-11 22:27:40 -080018
Yinghai Lu67f241f2009-11-11 22:27:40 -080019 for (i = 0; i < pci_root_num; i++) {
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060020 if (pci_root_info[i].bus_min == bus)
Yinghai Lu67f241f2009-11-11 22:27:40 -080021 break;
22 }
23
24 if (i == pci_root_num)
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060025 goto default_resources;
Yinghai Lu67f241f2009-11-11 22:27:40 -080026
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060027 printk(KERN_DEBUG "PCI: root bus %02x: hardware-probed resources\n",
28 bus);
Yinghai Lu67f241f2009-11-11 22:27:40 -080029
30 info = &pci_root_info[i];
31 for (j = 0; j < info->res_num; j++) {
32 struct resource *res;
33 struct resource *root;
34
35 res = &info->res[j];
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060036 pci_add_resource(resources, res);
Yinghai Lu67f241f2009-11-11 22:27:40 -080037 if (res->flags & IORESOURCE_IO)
38 root = &ioport_resource;
39 else
40 root = &iomem_resource;
41 insert_resource(root, res);
42 }
Bjorn Helgaas2cd69752011-10-28 16:28:14 -060043 return;
44
45default_resources:
46 /*
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().
50 */
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);
Yinghai Lu67f241f2009-11-11 22:27:40 -080054}
55
Yinghai Lub74fd232010-02-10 01:20:08 -080056void __devinit update_res(struct pci_root_info *info, resource_size_t start,
57 resource_size_t end, unsigned long flags, int merge)
Yinghai Lu67f241f2009-11-11 22:27:40 -080058{
59 int i;
60 struct resource *res;
61
62 if (start > end)
63 return;
64
Yinghai Lu9ad3f2c2010-02-10 01:20:11 -080065 if (start == MAX_RESOURCE)
66 return;
67
Yinghai Lu67f241f2009-11-11 22:27:40 -080068 if (!merge)
69 goto addit;
70
71 /* try to merge it with old one */
72 for (i = 0; i < info->res_num; i++) {
Yinghai Lub74fd232010-02-10 01:20:08 -080073 resource_size_t final_start, final_end;
74 resource_size_t common_start, common_end;
Yinghai Lu67f241f2009-11-11 22:27:40 -080075
76 res = &info->res[i];
77 if (res->flags != flags)
78 continue;
79
Yinghai Lub74fd232010-02-10 01:20:08 -080080 common_start = max(res->start, start);
81 common_end = min(res->end, end);
Yinghai Lu67f241f2009-11-11 22:27:40 -080082 if (common_start > common_end + 1)
83 continue;
84
Yinghai Lub74fd232010-02-10 01:20:08 -080085 final_start = min(res->start, start);
86 final_end = max(res->end, end);
Yinghai Lu67f241f2009-11-11 22:27:40 -080087
88 res->start = final_start;
89 res->end = final_end;
90 return;
91 }
92
93addit:
94
95 /* need to add that */
96 if (info->res_num >= RES_NUM)
97 return;
98
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++;
106}