PCI/ACPI: Protect acpi_pci_roots list with mutex
[linux-2.6/cjktty.git] / drivers / acpi / pci_root.c
blobe1bdcc700cbbd6518b9d7a1082b621b0fb1c1658
1 /*
2 * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/init.h>
29 #include <linux/types.h>
30 #include <linux/mutex.h>
31 #include <linux/pm.h>
32 #include <linux/pm_runtime.h>
33 #include <linux/pci.h>
34 #include <linux/pci-acpi.h>
35 #include <linux/pci-aspm.h>
36 #include <linux/acpi.h>
37 #include <linux/slab.h>
38 #include <acpi/acpi_bus.h>
39 #include <acpi/acpi_drivers.h>
40 #include <acpi/apei.h>
42 #define PREFIX "ACPI: "
44 #define _COMPONENT ACPI_PCI_COMPONENT
45 ACPI_MODULE_NAME("pci_root");
46 #define ACPI_PCI_ROOT_CLASS "pci_bridge"
47 #define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
48 static int acpi_pci_root_add(struct acpi_device *device);
49 static int acpi_pci_root_remove(struct acpi_device *device, int type);
50 static int acpi_pci_root_start(struct acpi_device *device);
52 #define ACPI_PCIE_REQ_SUPPORT (OSC_EXT_PCI_CONFIG_SUPPORT \
53 | OSC_ACTIVE_STATE_PWR_SUPPORT \
54 | OSC_CLOCK_PWR_CAPABILITY_SUPPORT \
55 | OSC_MSI_SUPPORT)
57 static const struct acpi_device_id root_device_ids[] = {
58 {"PNP0A03", 0},
59 {"", 0},
61 MODULE_DEVICE_TABLE(acpi, root_device_ids);
63 static struct acpi_driver acpi_pci_root_driver = {
64 .name = "pci_root",
65 .class = ACPI_PCI_ROOT_CLASS,
66 .ids = root_device_ids,
67 .ops = {
68 .add = acpi_pci_root_add,
69 .remove = acpi_pci_root_remove,
70 .start = acpi_pci_root_start,
74 /* Lock to protect both acpi_pci_roots and acpi_pci_drivers lists */
75 static DEFINE_MUTEX(acpi_pci_root_lock);
76 static LIST_HEAD(acpi_pci_roots);
77 static LIST_HEAD(acpi_pci_drivers);
79 static DEFINE_MUTEX(osc_lock);
81 int acpi_pci_register_driver(struct acpi_pci_driver *driver)
83 int n = 0;
84 struct acpi_pci_root *root;
86 mutex_lock(&acpi_pci_root_lock);
87 list_add_tail(&driver->node, &acpi_pci_drivers);
88 if (driver->add)
89 list_for_each_entry(root, &acpi_pci_roots, node) {
90 driver->add(root);
91 n++;
93 mutex_unlock(&acpi_pci_root_lock);
95 return n;
97 EXPORT_SYMBOL(acpi_pci_register_driver);
99 void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
101 struct acpi_pci_root *root;
103 mutex_lock(&acpi_pci_root_lock);
104 list_del(&driver->node);
105 if (driver->remove)
106 list_for_each_entry(root, &acpi_pci_roots, node)
107 driver->remove(root);
108 mutex_unlock(&acpi_pci_root_lock);
110 EXPORT_SYMBOL(acpi_pci_unregister_driver);
112 acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
114 struct acpi_pci_root *root;
115 acpi_handle handle = NULL;
117 mutex_lock(&acpi_pci_root_lock);
118 list_for_each_entry(root, &acpi_pci_roots, node)
119 if ((root->segment == (u16) seg) &&
120 (root->secondary.start == (u16) bus)) {
121 handle = root->device->handle;
122 break;
124 mutex_unlock(&acpi_pci_root_lock);
125 return handle;
128 EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
131 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
132 * @handle - the ACPI CA node in question.
134 * Note: we could make this API take a struct acpi_device * instead, but
135 * for now, it's more convenient to operate on an acpi_handle.
137 int acpi_is_root_bridge(acpi_handle handle)
139 int ret;
140 struct acpi_device *device;
142 ret = acpi_bus_get_device(handle, &device);
143 if (ret)
144 return 0;
146 ret = acpi_match_device_ids(device, root_device_ids);
147 if (ret)
148 return 0;
149 else
150 return 1;
152 EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
154 static acpi_status
155 get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
157 struct resource *res = data;
158 struct acpi_resource_address64 address;
160 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
161 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
162 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
163 return AE_OK;
165 acpi_resource_to_address64(resource, &address);
166 if ((address.address_length > 0) &&
167 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
168 res->start = address.minimum;
169 res->end = address.minimum + address.address_length - 1;
172 return AE_OK;
175 static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
176 struct resource *res)
178 acpi_status status;
180 res->start = -1;
181 status =
182 acpi_walk_resources(handle, METHOD_NAME__CRS,
183 get_root_bridge_busnr_callback, res);
184 if (ACPI_FAILURE(status))
185 return status;
186 if (res->start == -1)
187 return AE_ERROR;
188 return AE_OK;
191 static void acpi_pci_bridge_scan(struct acpi_device *device)
193 int status;
194 struct acpi_device *child = NULL;
196 if (device->flags.bus_address)
197 if (device->parent && device->parent->ops.bind) {
198 status = device->parent->ops.bind(device);
199 if (!status) {
200 list_for_each_entry(child, &device->children, node)
201 acpi_pci_bridge_scan(child);
206 static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
208 static acpi_status acpi_pci_run_osc(acpi_handle handle,
209 const u32 *capbuf, u32 *retval)
211 struct acpi_osc_context context = {
212 .uuid_str = pci_osc_uuid_str,
213 .rev = 1,
214 .cap.length = 12,
215 .cap.pointer = (void *)capbuf,
217 acpi_status status;
219 status = acpi_run_osc(handle, &context);
220 if (ACPI_SUCCESS(status)) {
221 *retval = *((u32 *)(context.ret.pointer + 8));
222 kfree(context.ret.pointer);
224 return status;
227 static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
228 u32 support,
229 u32 *control)
231 acpi_status status;
232 u32 result, capbuf[3];
234 support &= OSC_PCI_SUPPORT_MASKS;
235 support |= root->osc_support_set;
237 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
238 capbuf[OSC_SUPPORT_TYPE] = support;
239 if (control) {
240 *control &= OSC_PCI_CONTROL_MASKS;
241 capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set;
242 } else {
243 /* Run _OSC query for all possible controls. */
244 capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
247 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
248 if (ACPI_SUCCESS(status)) {
249 root->osc_support_set = support;
250 if (control)
251 *control = result;
253 return status;
256 static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
258 acpi_status status;
259 acpi_handle tmp;
261 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
262 if (ACPI_FAILURE(status))
263 return status;
264 mutex_lock(&osc_lock);
265 status = acpi_pci_query_osc(root, flags, NULL);
266 mutex_unlock(&osc_lock);
267 return status;
270 struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
272 struct acpi_pci_root *root;
274 list_for_each_entry(root, &acpi_pci_roots, node) {
275 if (root->device->handle == handle)
276 return root;
278 return NULL;
280 EXPORT_SYMBOL_GPL(acpi_pci_find_root);
282 struct acpi_handle_node {
283 struct list_head node;
284 acpi_handle handle;
288 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
289 * @handle: the handle in question
291 * Given an ACPI CA handle, the desired PCI device is located in the
292 * list of PCI devices.
294 * If the device is found, its reference count is increased and this
295 * function returns a pointer to its data structure. The caller must
296 * decrement the reference count by calling pci_dev_put().
297 * If no device is found, %NULL is returned.
299 struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
301 int dev, fn;
302 unsigned long long adr;
303 acpi_status status;
304 acpi_handle phandle;
305 struct pci_bus *pbus;
306 struct pci_dev *pdev = NULL;
307 struct acpi_handle_node *node, *tmp;
308 struct acpi_pci_root *root;
309 LIST_HEAD(device_list);
312 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
314 phandle = handle;
315 while (!acpi_is_root_bridge(phandle)) {
316 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
317 if (!node)
318 goto out;
320 INIT_LIST_HEAD(&node->node);
321 node->handle = phandle;
322 list_add(&node->node, &device_list);
324 status = acpi_get_parent(phandle, &phandle);
325 if (ACPI_FAILURE(status))
326 goto out;
329 root = acpi_pci_find_root(phandle);
330 if (!root)
331 goto out;
333 pbus = root->bus;
336 * Now, walk back down the PCI device tree until we return to our
337 * original handle. Assumes that everything between the PCI root
338 * bridge and the device we're looking for must be a P2P bridge.
340 list_for_each_entry(node, &device_list, node) {
341 acpi_handle hnd = node->handle;
342 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
343 if (ACPI_FAILURE(status))
344 goto out;
345 dev = (adr >> 16) & 0xffff;
346 fn = adr & 0xffff;
348 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
349 if (!pdev || hnd == handle)
350 break;
352 pbus = pdev->subordinate;
353 pci_dev_put(pdev);
356 * This function may be called for a non-PCI device that has a
357 * PCI parent (eg. a disk under a PCI SATA controller). In that
358 * case pdev->subordinate will be NULL for the parent.
360 if (!pbus) {
361 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
362 pdev = NULL;
363 break;
366 out:
367 list_for_each_entry_safe(node, tmp, &device_list, node)
368 kfree(node);
370 return pdev;
372 EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
375 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
376 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
377 * @mask: Mask of _OSC bits to request control of, place to store control mask.
378 * @req: Mask of _OSC bits the control of is essential to the caller.
380 * Run _OSC query for @mask and if that is successful, compare the returned
381 * mask of control bits with @req. If all of the @req bits are set in the
382 * returned mask, run _OSC request for it.
384 * The variable at the @mask address may be modified regardless of whether or
385 * not the function returns success. On success it will contain the mask of
386 * _OSC bits the BIOS has granted control of, but its contents are meaningless
387 * on failure.
389 acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
391 struct acpi_pci_root *root;
392 acpi_status status;
393 u32 ctrl, capbuf[3];
394 acpi_handle tmp;
396 if (!mask)
397 return AE_BAD_PARAMETER;
399 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
400 if ((ctrl & req) != req)
401 return AE_TYPE;
403 root = acpi_pci_find_root(handle);
404 if (!root)
405 return AE_NOT_EXIST;
407 status = acpi_get_handle(handle, "_OSC", &tmp);
408 if (ACPI_FAILURE(status))
409 return status;
411 mutex_lock(&osc_lock);
413 *mask = ctrl | root->osc_control_set;
414 /* No need to evaluate _OSC if the control was already granted. */
415 if ((root->osc_control_set & ctrl) == ctrl)
416 goto out;
418 /* Need to check the available controls bits before requesting them. */
419 while (*mask) {
420 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
421 if (ACPI_FAILURE(status))
422 goto out;
423 if (ctrl == *mask)
424 break;
425 ctrl = *mask;
428 if ((ctrl & req) != req) {
429 status = AE_SUPPORT;
430 goto out;
433 capbuf[OSC_QUERY_TYPE] = 0;
434 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
435 capbuf[OSC_CONTROL_TYPE] = ctrl;
436 status = acpi_pci_run_osc(handle, capbuf, mask);
437 if (ACPI_SUCCESS(status))
438 root->osc_control_set = *mask;
439 out:
440 mutex_unlock(&osc_lock);
441 return status;
443 EXPORT_SYMBOL(acpi_pci_osc_control_set);
445 static int __devinit acpi_pci_root_add(struct acpi_device *device)
447 unsigned long long segment, bus;
448 acpi_status status;
449 int result;
450 struct acpi_pci_root *root;
451 acpi_handle handle;
452 struct acpi_device *child;
453 u32 flags, base_flags;
455 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
456 if (!root)
457 return -ENOMEM;
459 segment = 0;
460 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
461 &segment);
462 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
463 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
464 result = -ENODEV;
465 goto end;
468 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
469 root->secondary.flags = IORESOURCE_BUS;
470 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
471 if (ACPI_FAILURE(status)) {
473 * We need both the start and end of the downstream bus range
474 * to interpret _CBA (MMCONFIG base address), so it really is
475 * supposed to be in _CRS. If we don't find it there, all we
476 * can do is assume [_BBN-0xFF] or [0-0xFF].
478 root->secondary.end = 0xFF;
479 printk(KERN_WARNING FW_BUG PREFIX
480 "no secondary bus range in _CRS\n");
481 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
482 NULL, &bus);
483 if (ACPI_SUCCESS(status))
484 root->secondary.start = bus;
485 else if (status == AE_NOT_FOUND)
486 root->secondary.start = 0;
487 else {
488 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
489 result = -ENODEV;
490 goto end;
494 INIT_LIST_HEAD(&root->node);
495 root->device = device;
496 root->segment = segment & 0xFFFF;
497 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
498 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
499 device->driver_data = root;
501 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
504 * All supported architectures that use ACPI have support for
505 * PCI domains, so we indicate this in _OSC support capabilities.
507 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
508 acpi_pci_osc_support(root, flags);
511 * TBD: Need PCI interface for enumeration/configuration of roots.
514 mutex_lock(&acpi_pci_root_lock);
515 list_add_tail(&root->node, &acpi_pci_roots);
516 mutex_unlock(&acpi_pci_root_lock);
518 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
519 acpi_device_name(device), acpi_device_bid(device),
520 root->segment, &root->secondary);
523 * Scan the Root Bridge
524 * --------------------
525 * Must do this prior to any attempt to bind the root device, as the
526 * PCI namespace does not get created until this call is made (and
527 * thus the root bridge's pci_dev does not exist).
529 root->bus = pci_acpi_scan_root(root);
530 if (!root->bus) {
531 printk(KERN_ERR PREFIX
532 "Bus %04x:%02x not present in PCI namespace\n",
533 root->segment, (unsigned int)root->secondary.start);
534 result = -ENODEV;
535 goto out_del_root;
539 * Attach ACPI-PCI Context
540 * -----------------------
541 * Thus binding the ACPI and PCI devices.
543 result = acpi_pci_bind_root(device);
544 if (result)
545 goto out_del_root;
548 * PCI Routing Table
549 * -----------------
550 * Evaluate and parse _PRT, if exists.
552 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
553 if (ACPI_SUCCESS(status))
554 result = acpi_pci_irq_add_prt(device->handle, root->bus);
557 * Scan and bind all _ADR-Based Devices
559 list_for_each_entry(child, &device->children, node)
560 acpi_pci_bridge_scan(child);
562 /* Indicate support for various _OSC capabilities. */
563 if (pci_ext_cfg_avail(root->bus->self))
564 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
565 if (pcie_aspm_support_enabled())
566 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
567 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
568 if (pci_msi_enabled())
569 flags |= OSC_MSI_SUPPORT;
570 if (flags != base_flags)
571 acpi_pci_osc_support(root, flags);
573 if (!pcie_ports_disabled
574 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
575 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
576 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
577 | OSC_PCI_EXPRESS_PME_CONTROL;
579 if (pci_aer_available()) {
580 if (aer_acpi_firmware_first())
581 dev_dbg(root->bus->bridge,
582 "PCIe errors handled by BIOS.\n");
583 else
584 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
587 dev_info(root->bus->bridge,
588 "Requesting ACPI _OSC control (0x%02x)\n", flags);
590 status = acpi_pci_osc_control_set(device->handle, &flags,
591 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
592 if (ACPI_SUCCESS(status)) {
593 dev_info(root->bus->bridge,
594 "ACPI _OSC control (0x%02x) granted\n", flags);
595 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
597 * We have ASPM control, but the FADT indicates
598 * that it's unsupported. Clear it.
600 pcie_clear_aspm(root->bus);
602 } else {
603 dev_info(root->bus->bridge,
604 "ACPI _OSC request failed (%s), "
605 "returned control mask: 0x%02x\n",
606 acpi_format_exception(status), flags);
607 pr_info("ACPI _OSC control for PCIe not granted, "
608 "disabling ASPM\n");
609 pcie_no_aspm();
611 } else {
612 dev_info(root->bus->bridge,
613 "Unable to request _OSC control "
614 "(_OSC support mask: 0x%02x)\n", flags);
617 pci_acpi_add_bus_pm_notifier(device, root->bus);
618 if (device->wakeup.flags.run_wake)
619 device_set_run_wake(root->bus->bridge, true);
621 return 0;
623 out_del_root:
624 mutex_lock(&acpi_pci_root_lock);
625 list_del(&root->node);
626 mutex_unlock(&acpi_pci_root_lock);
627 end:
628 kfree(root);
629 return result;
632 static int acpi_pci_root_start(struct acpi_device *device)
634 struct acpi_pci_root *root = acpi_driver_data(device);
635 struct acpi_pci_driver *driver;
637 mutex_lock(&acpi_pci_root_lock);
638 list_for_each_entry(driver, &acpi_pci_drivers, node)
639 if (driver->add)
640 driver->add(root);
641 mutex_unlock(&acpi_pci_root_lock);
643 pci_bus_add_devices(root->bus);
645 return 0;
648 static int acpi_pci_root_remove(struct acpi_device *device, int type)
650 struct acpi_pci_root *root = acpi_driver_data(device);
651 struct acpi_pci_driver *driver;
653 mutex_lock(&acpi_pci_root_lock);
654 list_for_each_entry(driver, &acpi_pci_drivers, node)
655 if (driver->remove)
656 driver->remove(root);
658 device_set_run_wake(root->bus->bridge, false);
659 pci_acpi_remove_bus_pm_notifier(device);
661 list_del(&root->node);
662 mutex_unlock(&acpi_pci_root_lock);
663 kfree(root);
664 return 0;
667 static int __init acpi_pci_root_init(void)
669 acpi_hest_init();
671 if (acpi_pci_disabled)
672 return 0;
674 pci_acpi_crs_quirks();
675 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
676 return -ENODEV;
678 return 0;
681 subsys_initcall(acpi_pci_root_init);