blob: 6bf8091d2fd56b10210109b5950277165c1f34c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/pci.h>
2#include <linux/acpi.h>
3#include <linux/init.h>
Nick Pigginb33fa1f2005-10-01 02:34:42 +10004#include <linux/irq.h>
Gary Hade036fff42007-10-03 15:56:14 -07005#include <linux/dmi.h>
Andi Kleen69e1a332005-09-12 18:49:24 +02006#include <asm/numa.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05307#include <asm/pci_x86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Gary Hade62f420f2007-10-03 15:56:51 -07009struct pci_root_info {
Bjorn Helgaas42887b22009-10-06 15:33:49 -060010 struct acpi_device *bridge;
Gary Hade62f420f2007-10-03 15:56:51 -070011 char *name;
12 unsigned int res_num;
13 struct resource *res;
14 struct pci_bus *bus;
15 int busnum;
16};
17
18static acpi_status
19resource_to_addr(struct acpi_resource *resource,
20 struct acpi_resource_address64 *addr)
21{
22 acpi_status status;
23
24 status = acpi_resource_to_address64(resource, addr);
25 if (ACPI_SUCCESS(status) &&
26 (addr->resource_type == ACPI_MEMORY_RANGE ||
27 addr->resource_type == ACPI_IO_RANGE) &&
28 addr->address_length > 0 &&
29 addr->producer_consumer == ACPI_PRODUCER) {
30 return AE_OK;
31 }
32 return AE_ERROR;
33}
34
35static acpi_status
36count_resource(struct acpi_resource *acpi_res, void *data)
37{
38 struct pci_root_info *info = data;
39 struct acpi_resource_address64 addr;
40 acpi_status status;
41
42 status = resource_to_addr(acpi_res, &addr);
43 if (ACPI_SUCCESS(status))
44 info->res_num++;
45 return AE_OK;
46}
47
Gary Hadef9cde5f2009-05-27 12:41:44 -070048static int
49bus_has_transparent_bridge(struct pci_bus *bus)
50{
51 struct pci_dev *dev;
52
53 list_for_each_entry(dev, &bus->devices, bus_list) {
54 u16 class = dev->class >> 8;
55
56 if (class == PCI_CLASS_BRIDGE_PCI && dev->transparent)
57 return true;
58 }
59 return false;
60}
61
Gary Hade62f420f2007-10-03 15:56:51 -070062static acpi_status
63setup_resource(struct acpi_resource *acpi_res, void *data)
64{
65 struct pci_root_info *info = data;
66 struct resource *res;
67 struct acpi_resource_address64 addr;
68 acpi_status status;
69 unsigned long flags;
70 struct resource *root;
Gary Hadef9cde5f2009-05-27 12:41:44 -070071 int max_root_bus_resources = PCI_BUS_NUM_RESOURCES;
Yinghai Lu2cdb3f12009-06-24 19:01:19 -070072 u64 start, end;
73
74 if (bus_has_transparent_bridge(info->bus))
75 max_root_bus_resources -= 3;
Yinghai Lu3d9befd2007-11-17 16:27:01 +010076
Gary Hade62f420f2007-10-03 15:56:51 -070077 status = resource_to_addr(acpi_res, &addr);
78 if (!ACPI_SUCCESS(status))
79 return AE_OK;
80
81 if (addr.resource_type == ACPI_MEMORY_RANGE) {
82 root = &iomem_resource;
83 flags = IORESOURCE_MEM;
84 if (addr.info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
85 flags |= IORESOURCE_PREFETCH;
86 } else if (addr.resource_type == ACPI_IO_RANGE) {
87 root = &ioport_resource;
88 flags = IORESOURCE_IO;
89 } else
90 return AE_OK;
91
Yinghai Lu2cdb3f12009-06-24 19:01:19 -070092 start = addr.minimum + addr.translation_offset;
93 end = start + addr.address_length - 1;
Gary Hadef9cde5f2009-05-27 12:41:44 -070094 if (info->res_num >= max_root_bus_resources) {
95 printk(KERN_WARNING "PCI: Failed to allocate 0x%lx-0x%lx "
96 "from %s for %s due to _CRS returning more than "
Yinghai Lu2cdb3f12009-06-24 19:01:19 -070097 "%d resource descriptors\n", (unsigned long) start,
98 (unsigned long) end, root->name, info->name,
Gary Hadef9cde5f2009-05-27 12:41:44 -070099 max_root_bus_resources);
Gary Hadef9cde5f2009-05-27 12:41:44 -0700100 return AE_OK;
101 }
102
Yinghai Lu2cdb3f12009-06-24 19:01:19 -0700103 res = &info->res[info->res_num];
104 res->name = info->name;
105 res->flags = flags;
106 res->start = start;
107 res->end = end;
108 res->child = NULL;
109
Gary Hade62f420f2007-10-03 15:56:51 -0700110 if (insert_resource(root, res)) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600111 dev_err(&info->bridge->dev,
112 "can't allocate host bridge window %pR\n", res);
Gary Hade62f420f2007-10-03 15:56:51 -0700113 } else {
114 info->bus->resource[info->res_num] = res;
115 info->res_num++;
Bjorn Helgaas42887b22009-10-06 15:33:49 -0600116 if (addr.translation_offset)
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600117 dev_info(&info->bridge->dev, "host bridge window %pR "
Bjorn Helgaas42887b22009-10-06 15:33:49 -0600118 "(PCI address [%#llx-%#llx])\n",
119 res, res->start - addr.translation_offset,
120 res->end - addr.translation_offset);
121 else
122 dev_info(&info->bridge->dev,
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600123 "host bridge window %pR\n", res);
Gary Hade62f420f2007-10-03 15:56:51 -0700124 }
125 return AE_OK;
126}
127
128static void
Gary Hade62f420f2007-10-03 15:56:51 -0700129get_current_resources(struct acpi_device *device, int busnum,
Gary Hadecb3576f2008-02-08 14:00:52 -0800130 int domain, struct pci_bus *bus)
Gary Hade62f420f2007-10-03 15:56:51 -0700131{
132 struct pci_root_info info;
133 size_t size;
134
Bjorn Helgaas42887b22009-10-06 15:33:49 -0600135 info.bridge = device;
Gary Hade62f420f2007-10-03 15:56:51 -0700136 info.bus = bus;
137 info.res_num = 0;
138 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_resource,
139 &info);
140 if (!info.res_num)
141 return;
142
143 size = sizeof(*info.res) * info.res_num;
144 info.res = kmalloc(size, GFP_KERNEL);
145 if (!info.res)
146 goto res_alloc_fail;
147
Gary Hadecb3576f2008-02-08 14:00:52 -0800148 info.name = kmalloc(16, GFP_KERNEL);
Gary Hade62f420f2007-10-03 15:56:51 -0700149 if (!info.name)
150 goto name_alloc_fail;
Gary Hadecb3576f2008-02-08 14:00:52 -0800151 sprintf(info.name, "PCI Bus %04x:%02x", domain, busnum);
Gary Hade62f420f2007-10-03 15:56:51 -0700152
153 info.res_num = 0;
154 acpi_walk_resources(device->handle, METHOD_NAME__CRS, setup_resource,
155 &info);
Gary Hade62f420f2007-10-03 15:56:51 -0700156
157 return;
158
159name_alloc_fail:
160 kfree(info.res);
161res_alloc_fail:
162 return;
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int domain, int busnum)
166{
Andi Kleen69e1a332005-09-12 18:49:24 +0200167 struct pci_bus *bus;
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300168 struct pci_sysdata *sd;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800169 int node;
170#ifdef CONFIG_ACPI_NUMA
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300171 int pxm;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800172#endif
Andi Kleen69e1a332005-09-12 18:49:24 +0200173
Jeff Garzika79e4192007-10-11 16:58:30 -0400174 if (domain && !pci_domains_supported) {
175 printk(KERN_WARNING "PCI: Multiple domains not supported "
176 "(dom %d, bus %d)\n", domain, busnum);
177 return NULL;
178 }
179
Yinghai Lu871d5f82008-02-19 03:20:09 -0800180 node = -1;
181#ifdef CONFIG_ACPI_NUMA
182 pxm = acpi_get_pxm(device->handle);
183 if (pxm >= 0)
184 node = pxm_to_node(pxm);
185 if (node != -1)
186 set_mp_bus_to_node(busnum, node);
187 else
Yinghai Lu871d5f82008-02-19 03:20:09 -0800188#endif
Yinghai Lu871d5f82008-02-19 03:20:09 -0800189 node = get_mp_bus_to_node(busnum);
Yinghai Lub755de82008-02-20 12:41:52 -0800190
191 if (node != -1 && !node_online(node))
192 node = -1;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800193
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300194 /* Allocate per-root-bus (not per bus) arch-specific data.
195 * TODO: leak; this memory is never freed.
196 * It's arguable whether it's worth the trouble to care.
197 */
198 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
199 if (!sd) {
200 printk(KERN_ERR "PCI: OOM, not probing PCI bus %02x\n", busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return NULL;
202 }
203
Jeff Garzika79e4192007-10-11 16:58:30 -0400204 sd->domain = domain;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800205 sd->node = node;
yakui.zhao@intel.comb87e81e2008-04-15 14:34:49 -0700206 /*
207 * Maybe the desired pci bus has been already scanned. In such case
208 * it is unnecessary to scan the pci bus with the given domain,busnum.
209 */
210 bus = pci_find_bus(domain, busnum);
211 if (bus) {
212 /*
213 * If the desired bus exits, the content of bus->sysdata will
214 * be replaced by sd.
215 */
216 memcpy(bus->sysdata, sd, sizeof(*sd));
217 kfree(sd);
Yinghai Lu626fdfe2009-06-24 20:00:12 -0700218 } else {
219 bus = pci_create_bus(NULL, busnum, &pci_root_ops, sd);
220 if (bus) {
221 if (pci_probe & PCI_USE__CRS)
222 get_current_resources(device, busnum, domain,
223 bus);
224 bus->subordinate = pci_scan_child_bus(bus);
225 }
226 }
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300227
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300228 if (!bus)
229 kfree(sd);
230
Yinghai Ludbb61522008-04-19 01:30:16 -0700231 if (bus && node != -1) {
Andi Kleen69e1a332005-09-12 18:49:24 +0200232#ifdef CONFIG_ACPI_NUMA
Yinghai Ludbb61522008-04-19 01:30:16 -0700233 if (pxm >= 0)
Bjorn Helgaas2b8c2ef2008-12-18 16:34:51 -0700234 dev_printk(KERN_DEBUG, &bus->dev,
235 "on NUMA node %d (pxm %d)\n", node, pxm);
Yinghai Ludbb61522008-04-19 01:30:16 -0700236#else
Bjorn Helgaas2b8c2ef2008-12-18 16:34:51 -0700237 dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
Andi Kleen69e1a332005-09-12 18:49:24 +0200238#endif
Yinghai Ludbb61522008-04-19 01:30:16 -0700239 }
Gary Hade62f420f2007-10-03 15:56:51 -0700240
Andi Kleen69e1a332005-09-12 18:49:24 +0200241 return bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Robert Richter8dd779b2008-07-02 22:50:29 +0200244int __init pci_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct pci_dev *dev = NULL;
247
248 if (pcibios_scanned)
249 return 0;
250
251 if (acpi_noirq)
252 return 0;
253
254 printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
255 acpi_irq_penalty_init();
256 pcibios_scanned++;
257 pcibios_enable_irq = acpi_pci_irq_enable;
David Shaohua Li87bec662005-07-27 23:02:00 -0400258 pcibios_disable_irq = acpi_pci_irq_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 if (pci_routeirq) {
261 /*
262 * PCI IRQ routing is set up by pci_enable_device(), but we
263 * also do it here in case there are still broken drivers that
264 * don't use pci_enable_device().
265 */
266 printk(KERN_INFO "PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
Hanna Linderfb37fb92005-11-06 23:39:36 -0800267 for_each_pci_dev(dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 acpi_pci_irq_enable(dev);
Bjorn Helgaas657472e92008-02-18 09:44:13 -0700269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return 0;
272}