ARM: 7409/1: Do not call flush_cache_user_range with mmap_sem held
[linux/fpc-iii.git] / arch / x86 / pci / acpi.c
blob0473a8f935012901c65426ed03b91b48b1b59ea2
1 #include <linux/pci.h>
2 #include <linux/acpi.h>
3 #include <linux/init.h>
4 #include <linux/irq.h>
5 #include <linux/dmi.h>
6 #include <linux/slab.h>
7 #include <asm/numa.h>
8 #include <asm/pci_x86.h>
10 struct pci_root_info {
11 struct acpi_device *bridge;
12 char *name;
13 unsigned int res_num;
14 struct resource *res;
15 struct pci_bus *bus;
16 int busnum;
19 static bool pci_use_crs = true;
21 static int __init set_use_crs(const struct dmi_system_id *id)
23 pci_use_crs = true;
24 return 0;
27 static const struct dmi_system_id pci_use_crs_table[] __initconst = {
28 /* http://bugzilla.kernel.org/show_bug.cgi?id=14183 */
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"),
37 /* https://bugzilla.kernel.org/show_bug.cgi?id=16007 */
38 /* 2006 AMD HT/VIA system with two host bridges */
40 .callback = set_use_crs,
41 .ident = "ASRock ALiveSATA2-GLAN",
42 .matches = {
43 DMI_MATCH(DMI_PRODUCT_NAME, "ALiveSATA2-GLAN"),
46 /* https://bugzilla.kernel.org/show_bug.cgi?id=30552 */
47 /* 2006 AMD HT/VIA system with two host bridges */
49 .callback = set_use_crs,
50 .ident = "ASUS M2V-MX SE",
51 .matches = {
52 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
53 DMI_MATCH(DMI_BOARD_NAME, "M2V-MX SE"),
54 DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."),
57 /* https://bugzilla.kernel.org/show_bug.cgi?id=42619 */
59 .callback = set_use_crs,
60 .ident = "MSI MS-7253",
61 .matches = {
62 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
63 DMI_MATCH(DMI_BOARD_NAME, "MS-7253"),
64 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies, LTD"),
70 void __init pci_acpi_crs_quirks(void)
72 int year;
74 if (dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL) && year < 2008)
75 pci_use_crs = false;
77 dmi_check_system(pci_use_crs_table);
80 * If the user specifies "pci=use_crs" or "pci=nocrs" explicitly, that
81 * takes precedence over anything we figured out above.
83 if (pci_probe & PCI_ROOT_NO_CRS)
84 pci_use_crs = false;
85 else if (pci_probe & PCI_USE__CRS)
86 pci_use_crs = true;
88 printk(KERN_INFO "PCI: %s host bridge windows from ACPI; "
89 "if necessary, use \"pci=%s\" and report a bug\n",
90 pci_use_crs ? "Using" : "Ignoring",
91 pci_use_crs ? "nocrs" : "use_crs");
94 static acpi_status
95 resource_to_addr(struct acpi_resource *resource,
96 struct acpi_resource_address64 *addr)
98 acpi_status status;
99 struct acpi_resource_memory24 *memory24;
100 struct acpi_resource_memory32 *memory32;
101 struct acpi_resource_fixed_memory32 *fixed_memory32;
103 memset(addr, 0, sizeof(*addr));
104 switch (resource->type) {
105 case ACPI_RESOURCE_TYPE_MEMORY24:
106 memory24 = &resource->data.memory24;
107 addr->resource_type = ACPI_MEMORY_RANGE;
108 addr->minimum = memory24->minimum;
109 addr->address_length = memory24->address_length;
110 addr->maximum = addr->minimum + addr->address_length - 1;
111 return AE_OK;
112 case ACPI_RESOURCE_TYPE_MEMORY32:
113 memory32 = &resource->data.memory32;
114 addr->resource_type = ACPI_MEMORY_RANGE;
115 addr->minimum = memory32->minimum;
116 addr->address_length = memory32->address_length;
117 addr->maximum = addr->minimum + addr->address_length - 1;
118 return AE_OK;
119 case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
120 fixed_memory32 = &resource->data.fixed_memory32;
121 addr->resource_type = ACPI_MEMORY_RANGE;
122 addr->minimum = fixed_memory32->address;
123 addr->address_length = fixed_memory32->address_length;
124 addr->maximum = addr->minimum + addr->address_length - 1;
125 return AE_OK;
126 case ACPI_RESOURCE_TYPE_ADDRESS16:
127 case ACPI_RESOURCE_TYPE_ADDRESS32:
128 case ACPI_RESOURCE_TYPE_ADDRESS64:
129 status = acpi_resource_to_address64(resource, addr);
130 if (ACPI_SUCCESS(status) &&
131 (addr->resource_type == ACPI_MEMORY_RANGE ||
132 addr->resource_type == ACPI_IO_RANGE) &&
133 addr->address_length > 0) {
134 return AE_OK;
136 break;
138 return AE_ERROR;
141 static acpi_status
142 count_resource(struct acpi_resource *acpi_res, void *data)
144 struct pci_root_info *info = data;
145 struct acpi_resource_address64 addr;
146 acpi_status status;
148 status = resource_to_addr(acpi_res, &addr);
149 if (ACPI_SUCCESS(status))
150 info->res_num++;
151 return AE_OK;
154 static acpi_status
155 setup_resource(struct acpi_resource *acpi_res, void *data)
157 struct pci_root_info *info = data;
158 struct resource *res;
159 struct acpi_resource_address64 addr;
160 acpi_status status;
161 unsigned long flags;
162 u64 start, orig_end, end;
164 status = resource_to_addr(acpi_res, &addr);
165 if (!ACPI_SUCCESS(status))
166 return AE_OK;
168 if (addr.resource_type == ACPI_MEMORY_RANGE) {
169 flags = IORESOURCE_MEM;
170 if (addr.info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
171 flags |= IORESOURCE_PREFETCH;
172 } else if (addr.resource_type == ACPI_IO_RANGE) {
173 flags = IORESOURCE_IO;
174 } else
175 return AE_OK;
177 start = addr.minimum + addr.translation_offset;
178 orig_end = end = addr.maximum + addr.translation_offset;
180 /* Exclude non-addressable range or non-addressable portion of range */
181 end = min(end, (u64)iomem_resource.end);
182 if (end <= start) {
183 dev_info(&info->bridge->dev,
184 "host bridge window [%#llx-%#llx] "
185 "(ignored, not CPU addressable)\n", start, orig_end);
186 return AE_OK;
187 } else if (orig_end != end) {
188 dev_info(&info->bridge->dev,
189 "host bridge window [%#llx-%#llx] "
190 "([%#llx-%#llx] ignored, not CPU addressable)\n",
191 start, orig_end, end + 1, orig_end);
194 res = &info->res[info->res_num];
195 res->name = info->name;
196 res->flags = flags;
197 res->start = start;
198 res->end = end;
199 res->child = NULL;
201 if (!pci_use_crs) {
202 dev_printk(KERN_DEBUG, &info->bridge->dev,
203 "host bridge window %pR (ignored)\n", res);
204 return AE_OK;
207 info->res_num++;
208 if (addr.translation_offset)
209 dev_info(&info->bridge->dev, "host bridge window %pR "
210 "(PCI address [%#llx-%#llx])\n",
211 res, res->start - addr.translation_offset,
212 res->end - addr.translation_offset);
213 else
214 dev_info(&info->bridge->dev, "host bridge window %pR\n", res);
216 return AE_OK;
219 static bool resource_contains(struct resource *res, resource_size_t point)
221 if (res->start <= point && point <= res->end)
222 return true;
223 return false;
226 static void coalesce_windows(struct pci_root_info *info, unsigned long type)
228 int i, j;
229 struct resource *res1, *res2;
231 for (i = 0; i < info->res_num; i++) {
232 res1 = &info->res[i];
233 if (!(res1->flags & type))
234 continue;
236 for (j = i + 1; j < info->res_num; j++) {
237 res2 = &info->res[j];
238 if (!(res2->flags & type))
239 continue;
242 * I don't like throwing away windows because then
243 * our resources no longer match the ACPI _CRS, but
244 * the kernel resource tree doesn't allow overlaps.
246 if (resource_contains(res1, res2->start) ||
247 resource_contains(res1, res2->end) ||
248 resource_contains(res2, res1->start) ||
249 resource_contains(res2, res1->end)) {
250 res1->start = min(res1->start, res2->start);
251 res1->end = max(res1->end, res2->end);
252 dev_info(&info->bridge->dev,
253 "host bridge window expanded to %pR; %pR ignored\n",
254 res1, res2);
255 res2->flags = 0;
261 static void add_resources(struct pci_root_info *info)
263 int i;
264 struct resource *res, *root, *conflict;
266 if (!pci_use_crs)
267 return;
269 coalesce_windows(info, IORESOURCE_MEM);
270 coalesce_windows(info, IORESOURCE_IO);
272 for (i = 0; i < info->res_num; i++) {
273 res = &info->res[i];
275 if (res->flags & IORESOURCE_MEM)
276 root = &iomem_resource;
277 else if (res->flags & IORESOURCE_IO)
278 root = &ioport_resource;
279 else
280 continue;
282 conflict = insert_resource_conflict(root, res);
283 if (conflict)
284 dev_err(&info->bridge->dev,
285 "address space collision: host bridge window %pR "
286 "conflicts with %s %pR\n",
287 res, conflict->name, conflict);
288 else
289 pci_bus_add_resource(info->bus, res, 0);
293 static void
294 get_current_resources(struct acpi_device *device, int busnum,
295 int domain, struct pci_bus *bus)
297 struct pci_root_info info;
298 size_t size;
300 if (pci_use_crs)
301 pci_bus_remove_resources(bus);
303 info.bridge = device;
304 info.bus = bus;
305 info.res_num = 0;
306 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_resource,
307 &info);
308 if (!info.res_num)
309 return;
311 size = sizeof(*info.res) * info.res_num;
312 info.res = kmalloc(size, GFP_KERNEL);
313 if (!info.res)
314 goto res_alloc_fail;
316 info.name = kasprintf(GFP_KERNEL, "PCI Bus %04x:%02x", domain, busnum);
317 if (!info.name)
318 goto name_alloc_fail;
320 info.res_num = 0;
321 acpi_walk_resources(device->handle, METHOD_NAME__CRS, setup_resource,
322 &info);
324 add_resources(&info);
325 return;
327 name_alloc_fail:
328 kfree(info.res);
329 res_alloc_fail:
330 return;
333 struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_pci_root *root)
335 struct acpi_device *device = root->device;
336 int domain = root->segment;
337 int busnum = root->secondary.start;
338 struct pci_bus *bus;
339 struct pci_sysdata *sd;
340 int node;
341 #ifdef CONFIG_ACPI_NUMA
342 int pxm;
343 #endif
345 if (domain && !pci_domains_supported) {
346 printk(KERN_WARNING "pci_bus %04x:%02x: "
347 "ignored (multiple domains not supported)\n",
348 domain, busnum);
349 return NULL;
352 node = -1;
353 #ifdef CONFIG_ACPI_NUMA
354 pxm = acpi_get_pxm(device->handle);
355 if (pxm >= 0)
356 node = pxm_to_node(pxm);
357 if (node != -1)
358 set_mp_bus_to_node(busnum, node);
359 else
360 #endif
361 node = get_mp_bus_to_node(busnum);
363 if (node != -1 && !node_online(node))
364 node = -1;
366 /* Allocate per-root-bus (not per bus) arch-specific data.
367 * TODO: leak; this memory is never freed.
368 * It's arguable whether it's worth the trouble to care.
370 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
371 if (!sd) {
372 printk(KERN_WARNING "pci_bus %04x:%02x: "
373 "ignored (out of memory)\n", domain, busnum);
374 return NULL;
377 sd->domain = domain;
378 sd->node = node;
380 * Maybe the desired pci bus has been already scanned. In such case
381 * it is unnecessary to scan the pci bus with the given domain,busnum.
383 bus = pci_find_bus(domain, busnum);
384 if (bus) {
386 * If the desired bus exits, the content of bus->sysdata will
387 * be replaced by sd.
389 memcpy(bus->sysdata, sd, sizeof(*sd));
390 kfree(sd);
391 } else {
392 bus = pci_create_bus(NULL, busnum, &pci_root_ops, sd);
393 if (bus) {
394 get_current_resources(device, busnum, domain, bus);
395 bus->subordinate = pci_scan_child_bus(bus);
399 if (!bus)
400 kfree(sd);
402 if (bus && node != -1) {
403 #ifdef CONFIG_ACPI_NUMA
404 if (pxm >= 0)
405 dev_printk(KERN_DEBUG, &bus->dev,
406 "on NUMA node %d (pxm %d)\n", node, pxm);
407 #else
408 dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
409 #endif
412 return bus;
415 int __init pci_acpi_init(void)
417 struct pci_dev *dev = NULL;
419 if (acpi_noirq)
420 return -ENODEV;
422 printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
423 acpi_irq_penalty_init();
424 pcibios_enable_irq = acpi_pci_irq_enable;
425 pcibios_disable_irq = acpi_pci_irq_disable;
426 x86_init.pci.init_irq = x86_init_noop;
428 if (pci_routeirq) {
430 * PCI IRQ routing is set up by pci_enable_device(), but we
431 * also do it here in case there are still broken drivers that
432 * don't use pci_enable_device().
434 printk(KERN_INFO "PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
435 for_each_pci_dev(dev)
436 acpi_pci_irq_enable(dev);
439 return 0;