blob: 15466c096ba5f56fabc7f174eabd1c40996e4b6d [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Andi Kleen69e1a332005-09-12 18:49:24 +02007#include <asm/numa.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05308#include <asm/pci_x86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Gary Hade62f420f2007-10-03 15:56:51 -070010struct pci_root_info {
Bjorn Helgaas42887b22009-10-06 15:33:49 -060011 struct acpi_device *bridge;
Gary Hade62f420f2007-10-03 15:56:51 -070012 char *name;
13 unsigned int res_num;
14 struct resource *res;
15 struct pci_bus *bus;
16 int busnum;
17};
18
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -070019static bool pci_use_crs = true;
20
21static int __init set_use_crs(const struct dmi_system_id *id)
22{
23 pci_use_crs = true;
24 return 0;
25}
26
27static const struct dmi_system_id pci_use_crs_table[] __initconst = {
28 /* http://bugzilla.kernel.org/show_bug.cgi?id=14183 */
29 {
30 .callback = set_use_crs,
31 .ident = "IBM System x3800",
32 .matches = {
33 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
34 DMI_MATCH(DMI_PRODUCT_NAME, "x3800"),
35 },
36 },
Bjorn Helgaas24917622010-07-23 12:53:27 -060037 /* https://bugzilla.kernel.org/show_bug.cgi?id=16007 */
38 /* 2006 AMD HT/VIA system with two host bridges */
39 {
40 .callback = set_use_crs,
41 .ident = "ASRock ALiveSATA2-GLAN",
42 .matches = {
43 DMI_MATCH(DMI_PRODUCT_NAME, "ALiveSATA2-GLAN"),
44 },
45 },
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -070046 {}
47};
48
49void __init pci_acpi_crs_quirks(void)
50{
51 int year;
52
53 if (dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL) && year < 2008)
54 pci_use_crs = false;
55
56 dmi_check_system(pci_use_crs_table);
57
58 /*
59 * If the user specifies "pci=use_crs" or "pci=nocrs" explicitly, that
60 * takes precedence over anything we figured out above.
61 */
62 if (pci_probe & PCI_ROOT_NO_CRS)
63 pci_use_crs = false;
64 else if (pci_probe & PCI_USE__CRS)
65 pci_use_crs = true;
66
67 printk(KERN_INFO "PCI: %s host bridge windows from ACPI; "
68 "if necessary, use \"pci=%s\" and report a bug\n",
69 pci_use_crs ? "Using" : "Ignoring",
70 pci_use_crs ? "nocrs" : "use_crs");
71}
72
Gary Hade62f420f2007-10-03 15:56:51 -070073static acpi_status
74resource_to_addr(struct acpi_resource *resource,
75 struct acpi_resource_address64 *addr)
76{
77 acpi_status status;
Bjorn Helgaas66528fd2010-04-20 13:52:41 -060078 struct acpi_resource_memory24 *memory24;
79 struct acpi_resource_memory32 *memory32;
80 struct acpi_resource_fixed_memory32 *fixed_memory32;
Gary Hade62f420f2007-10-03 15:56:51 -070081
Bjorn Helgaas66528fd2010-04-20 13:52:41 -060082 memset(addr, 0, sizeof(*addr));
83 switch (resource->type) {
84 case ACPI_RESOURCE_TYPE_MEMORY24:
85 memory24 = &resource->data.memory24;
86 addr->resource_type = ACPI_MEMORY_RANGE;
87 addr->minimum = memory24->minimum;
88 addr->address_length = memory24->address_length;
89 addr->maximum = addr->minimum + addr->address_length - 1;
Gary Hade62f420f2007-10-03 15:56:51 -070090 return AE_OK;
Bjorn Helgaas66528fd2010-04-20 13:52:41 -060091 case ACPI_RESOURCE_TYPE_MEMORY32:
92 memory32 = &resource->data.memory32;
93 addr->resource_type = ACPI_MEMORY_RANGE;
94 addr->minimum = memory32->minimum;
95 addr->address_length = memory32->address_length;
96 addr->maximum = addr->minimum + addr->address_length - 1;
97 return AE_OK;
98 case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
99 fixed_memory32 = &resource->data.fixed_memory32;
100 addr->resource_type = ACPI_MEMORY_RANGE;
101 addr->minimum = fixed_memory32->address;
102 addr->address_length = fixed_memory32->address_length;
103 addr->maximum = addr->minimum + addr->address_length - 1;
104 return AE_OK;
105 case ACPI_RESOURCE_TYPE_ADDRESS16:
106 case ACPI_RESOURCE_TYPE_ADDRESS32:
107 case ACPI_RESOURCE_TYPE_ADDRESS64:
108 status = acpi_resource_to_address64(resource, addr);
109 if (ACPI_SUCCESS(status) &&
110 (addr->resource_type == ACPI_MEMORY_RANGE ||
111 addr->resource_type == ACPI_IO_RANGE) &&
112 addr->address_length > 0) {
113 return AE_OK;
114 }
115 break;
Gary Hade62f420f2007-10-03 15:56:51 -0700116 }
117 return AE_ERROR;
118}
119
120static acpi_status
121count_resource(struct acpi_resource *acpi_res, void *data)
122{
123 struct pci_root_info *info = data;
124 struct acpi_resource_address64 addr;
125 acpi_status status;
126
127 status = resource_to_addr(acpi_res, &addr);
128 if (ACPI_SUCCESS(status))
129 info->res_num++;
130 return AE_OK;
131}
132
133static acpi_status
134setup_resource(struct acpi_resource *acpi_res, void *data)
135{
136 struct pci_root_info *info = data;
137 struct resource *res;
138 struct acpi_resource_address64 addr;
139 acpi_status status;
140 unsigned long flags;
Bjorn Helgaaseb9fc8e2010-03-25 09:28:24 -0600141 struct resource *root, *conflict;
Bjorn Helgaas48728e02010-04-27 14:45:43 -0600142 u64 start, end;
Yinghai Lu2cdb3f12009-06-24 19:01:19 -0700143
Gary Hade62f420f2007-10-03 15:56:51 -0700144 status = resource_to_addr(acpi_res, &addr);
145 if (!ACPI_SUCCESS(status))
146 return AE_OK;
147
148 if (addr.resource_type == ACPI_MEMORY_RANGE) {
149 root = &iomem_resource;
150 flags = IORESOURCE_MEM;
151 if (addr.info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
152 flags |= IORESOURCE_PREFETCH;
153 } else if (addr.resource_type == ACPI_IO_RANGE) {
154 root = &ioport_resource;
155 flags = IORESOURCE_IO;
156 } else
157 return AE_OK;
158
Yinghai Lu2cdb3f12009-06-24 19:01:19 -0700159 start = addr.minimum + addr.translation_offset;
Bjorn Helgaas48728e02010-04-27 14:45:43 -0600160 end = addr.maximum + addr.translation_offset;
Gary Hadef9cde5f2009-05-27 12:41:44 -0700161
Yinghai Lu2cdb3f12009-06-24 19:01:19 -0700162 res = &info->res[info->res_num];
163 res->name = info->name;
164 res->flags = flags;
165 res->start = start;
166 res->end = end;
167 res->child = NULL;
168
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700169 if (!pci_use_crs) {
Bjorn Helgaasf1db6fd2009-11-04 10:39:13 -0700170 dev_printk(KERN_DEBUG, &info->bridge->dev,
171 "host bridge window %pR (ignored)\n", res);
172 return AE_OK;
173 }
174
Bjorn Helgaaseb9fc8e2010-03-25 09:28:24 -0600175 conflict = insert_resource_conflict(root, res);
176 if (conflict) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600177 dev_err(&info->bridge->dev,
Bjorn Helgaaseb9fc8e2010-03-25 09:28:24 -0600178 "address space collision: host bridge window %pR "
179 "conflicts with %s %pR\n",
180 res, conflict->name, conflict);
Gary Hade62f420f2007-10-03 15:56:51 -0700181 } else {
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700182 pci_bus_add_resource(info->bus, res, 0);
Gary Hade62f420f2007-10-03 15:56:51 -0700183 info->res_num++;
Bjorn Helgaas42887b22009-10-06 15:33:49 -0600184 if (addr.translation_offset)
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600185 dev_info(&info->bridge->dev, "host bridge window %pR "
Bjorn Helgaas42887b22009-10-06 15:33:49 -0600186 "(PCI address [%#llx-%#llx])\n",
187 res, res->start - addr.translation_offset,
188 res->end - addr.translation_offset);
189 else
190 dev_info(&info->bridge->dev,
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600191 "host bridge window %pR\n", res);
Gary Hade62f420f2007-10-03 15:56:51 -0700192 }
193 return AE_OK;
194}
195
196static void
Gary Hade62f420f2007-10-03 15:56:51 -0700197get_current_resources(struct acpi_device *device, int busnum,
Gary Hadecb3576f2008-02-08 14:00:52 -0800198 int domain, struct pci_bus *bus)
Gary Hade62f420f2007-10-03 15:56:51 -0700199{
200 struct pci_root_info info;
201 size_t size;
202
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700203 if (pci_use_crs)
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700204 pci_bus_remove_resources(bus);
Bjorn Helgaasf1db6fd2009-11-04 10:39:13 -0700205
Bjorn Helgaas42887b22009-10-06 15:33:49 -0600206 info.bridge = device;
Gary Hade62f420f2007-10-03 15:56:51 -0700207 info.bus = bus;
208 info.res_num = 0;
209 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_resource,
210 &info);
211 if (!info.res_num)
212 return;
213
214 size = sizeof(*info.res) * info.res_num;
215 info.res = kmalloc(size, GFP_KERNEL);
216 if (!info.res)
217 goto res_alloc_fail;
218
Julia Lawallb46fc5f2010-05-24 12:13:16 -0700219 info.name = kasprintf(GFP_KERNEL, "PCI Bus %04x:%02x", domain, busnum);
Gary Hade62f420f2007-10-03 15:56:51 -0700220 if (!info.name)
221 goto name_alloc_fail;
Gary Hade62f420f2007-10-03 15:56:51 -0700222
223 info.res_num = 0;
224 acpi_walk_resources(device->handle, METHOD_NAME__CRS, setup_resource,
225 &info);
Gary Hade62f420f2007-10-03 15:56:51 -0700226
227 return;
228
229name_alloc_fail:
230 kfree(info.res);
231res_alloc_fail:
232 return;
233}
234
Bjorn Helgaas57283772010-03-11 12:20:11 -0700235struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_pci_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Bjorn Helgaas57283772010-03-11 12:20:11 -0700237 struct acpi_device *device = root->device;
238 int domain = root->segment;
239 int busnum = root->secondary.start;
Andi Kleen69e1a332005-09-12 18:49:24 +0200240 struct pci_bus *bus;
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300241 struct pci_sysdata *sd;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800242 int node;
243#ifdef CONFIG_ACPI_NUMA
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300244 int pxm;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800245#endif
Andi Kleen69e1a332005-09-12 18:49:24 +0200246
Jeff Garzika79e4192007-10-11 16:58:30 -0400247 if (domain && !pci_domains_supported) {
Bjorn Helgaas2a6bed82009-11-04 10:32:47 -0700248 printk(KERN_WARNING "pci_bus %04x:%02x: "
249 "ignored (multiple domains not supported)\n",
250 domain, busnum);
Jeff Garzika79e4192007-10-11 16:58:30 -0400251 return NULL;
252 }
253
Yinghai Lu871d5f82008-02-19 03:20:09 -0800254 node = -1;
255#ifdef CONFIG_ACPI_NUMA
256 pxm = acpi_get_pxm(device->handle);
257 if (pxm >= 0)
258 node = pxm_to_node(pxm);
259 if (node != -1)
260 set_mp_bus_to_node(busnum, node);
261 else
Yinghai Lu871d5f82008-02-19 03:20:09 -0800262#endif
Yinghai Lu871d5f82008-02-19 03:20:09 -0800263 node = get_mp_bus_to_node(busnum);
Yinghai Lub755de82008-02-20 12:41:52 -0800264
265 if (node != -1 && !node_online(node))
266 node = -1;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800267
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300268 /* Allocate per-root-bus (not per bus) arch-specific data.
269 * TODO: leak; this memory is never freed.
270 * It's arguable whether it's worth the trouble to care.
271 */
272 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
273 if (!sd) {
Bjorn Helgaas2a6bed82009-11-04 10:32:47 -0700274 printk(KERN_WARNING "pci_bus %04x:%02x: "
275 "ignored (out of memory)\n", domain, busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return NULL;
277 }
278
Jeff Garzika79e4192007-10-11 16:58:30 -0400279 sd->domain = domain;
Yinghai Lu871d5f82008-02-19 03:20:09 -0800280 sd->node = node;
yakui.zhao@intel.comb87e81e2008-04-15 14:34:49 -0700281 /*
282 * Maybe the desired pci bus has been already scanned. In such case
283 * it is unnecessary to scan the pci bus with the given domain,busnum.
284 */
285 bus = pci_find_bus(domain, busnum);
286 if (bus) {
287 /*
288 * If the desired bus exits, the content of bus->sysdata will
289 * be replaced by sd.
290 */
291 memcpy(bus->sysdata, sd, sizeof(*sd));
292 kfree(sd);
Yinghai Lu626fdfe2009-06-24 20:00:12 -0700293 } else {
294 bus = pci_create_bus(NULL, busnum, &pci_root_ops, sd);
295 if (bus) {
Bjorn Helgaasf1db6fd2009-11-04 10:39:13 -0700296 get_current_resources(device, busnum, domain, bus);
Yinghai Lu626fdfe2009-06-24 20:00:12 -0700297 bus->subordinate = pci_scan_child_bus(bus);
298 }
299 }
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300300
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +0300301 if (!bus)
302 kfree(sd);
303
Yinghai Ludbb61522008-04-19 01:30:16 -0700304 if (bus && node != -1) {
Andi Kleen69e1a332005-09-12 18:49:24 +0200305#ifdef CONFIG_ACPI_NUMA
Yinghai Ludbb61522008-04-19 01:30:16 -0700306 if (pxm >= 0)
Bjorn Helgaas2b8c2ef2008-12-18 16:34:51 -0700307 dev_printk(KERN_DEBUG, &bus->dev,
308 "on NUMA node %d (pxm %d)\n", node, pxm);
Yinghai Ludbb61522008-04-19 01:30:16 -0700309#else
Bjorn Helgaas2b8c2ef2008-12-18 16:34:51 -0700310 dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
Andi Kleen69e1a332005-09-12 18:49:24 +0200311#endif
Yinghai Ludbb61522008-04-19 01:30:16 -0700312 }
Gary Hade62f420f2007-10-03 15:56:51 -0700313
Andi Kleen69e1a332005-09-12 18:49:24 +0200314 return bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Robert Richter8dd779b2008-07-02 22:50:29 +0200317int __init pci_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 struct pci_dev *dev = NULL;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (acpi_noirq)
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +0200322 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
325 acpi_irq_penalty_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 pcibios_enable_irq = acpi_pci_irq_enable;
David Shaohua Li87bec662005-07-27 23:02:00 -0400327 pcibios_disable_irq = acpi_pci_irq_disable;
Thomas Gleixnerab3b3792009-08-29 17:47:33 +0200328 x86_init.pci.init_irq = x86_init_noop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (pci_routeirq) {
331 /*
332 * PCI IRQ routing is set up by pci_enable_device(), but we
333 * also do it here in case there are still broken drivers that
334 * don't use pci_enable_device().
335 */
336 printk(KERN_INFO "PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
Hanna Linderfb37fb92005-11-06 23:39:36 -0800337 for_each_pci_dev(dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 acpi_pci_irq_enable(dev);
Bjorn Helgaas657472e2008-02-18 09:44:13 -0700339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342}