1 /* 2 * ACPI PCI HotPlug glue functions to ACPI CA subsystem 3 * 4 * Copyright (C) 2002,2003 Takayoshi Kochi (t-kochi@bq.jp.nec.com) 5 * Copyright (C) 2002 Hiroshi Aono (h-aono@ap.jp.nec.com) 6 * Copyright (C) 2002,2003 NEC Corporation 7 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com) 8 * Copyright (C) 2003-2005 Hewlett Packard 9 * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com) 10 * Copyright (C) 2005 Intel Corporation 11 * 12 * All rights reserved. 13 * 14 * This program is free software; you can redistribute it and/or modify 15 * it under the terms of the GNU General Public License as published by 16 * the Free Software Foundation; either version 2 of the License, or (at 17 * your option) any later version. 18 * 19 * This program is distributed in the hope that it will be useful, but 20 * WITHOUT ANY WARRANTY; without even the implied warranty of 21 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or 22 * NON INFRINGEMENT. See the GNU General Public License for more 23 * details. 24 * 25 * You should have received a copy of the GNU General Public License 26 * along with this program; if not, write to the Free Software 27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 28 * 29 * Send feedback to <kristen.c.accardi@intel.com> 30 * 31 */ 32 33 /* 34 * Lifetime rules for pci_dev: 35 * - The one in acpiphp_bridge has its refcount elevated by pci_get_slot() 36 * when the bridge is scanned and it loses a refcount when the bridge 37 * is removed. 38 * - When a P2P bridge is present, we elevate the refcount on the subordinate 39 * bus. It loses the refcount when the the driver unloads. 40 */ 41 42 #include <linux/init.h> 43 #include <linux/module.h> 44 45 #include <linux/kernel.h> 46 #include <linux/pci.h> 47 #include <linux/pci_hotplug.h> 48 #include <linux/pci-acpi.h> 49 #include <linux/pm_runtime.h> 50 #include <linux/mutex.h> 51 #include <linux/slab.h> 52 #include <linux/acpi.h> 53 54 #include "../pci.h" 55 #include "acpiphp.h" 56 57 static LIST_HEAD(bridge_list); 58 static DEFINE_MUTEX(bridge_mutex); 59 static DEFINE_MUTEX(acpiphp_context_lock); 60 61 #define MY_NAME "acpiphp_glue" 62 63 static void handle_hotplug_event(acpi_handle handle, u32 type, void *data); 64 static void acpiphp_sanitize_bus(struct pci_bus *bus); 65 static void acpiphp_set_hpp_values(struct pci_bus *bus); 66 static void hotplug_event(acpi_handle handle, u32 type, void *data); 67 static void free_bridge(struct kref *kref); 68 69 static void acpiphp_context_handler(acpi_handle handle, void *context) 70 { 71 /* Intentionally empty. */ 72 } 73 74 /** 75 * acpiphp_init_context - Create hotplug context and grab a reference to it. 76 * @handle: ACPI object handle to create the context for. 77 * 78 * Call under acpiphp_context_lock. 79 */ 80 static struct acpiphp_context *acpiphp_init_context(acpi_handle handle) 81 { 82 struct acpiphp_context *context; 83 acpi_status status; 84 85 context = kzalloc(sizeof(*context), GFP_KERNEL); 86 if (!context) 87 return NULL; 88 89 context->handle = handle; 90 context->refcount = 1; 91 status = acpi_attach_data(handle, acpiphp_context_handler, context); 92 if (ACPI_FAILURE(status)) { 93 kfree(context); 94 return NULL; 95 } 96 return context; 97 } 98 99 /** 100 * acpiphp_get_context - Get hotplug context and grab a reference to it. 101 * @handle: ACPI object handle to get the context for. 102 * 103 * Call under acpiphp_context_lock. 104 */ 105 static struct acpiphp_context *acpiphp_get_context(acpi_handle handle) 106 { 107 struct acpiphp_context *context = NULL; 108 acpi_status status; 109 void *data; 110 111 status = acpi_get_data(handle, acpiphp_context_handler, &data); 112 if (ACPI_SUCCESS(status)) { 113 context = data; 114 context->refcount++; 115 } 116 return context; 117 } 118 119 /** 120 * acpiphp_put_context - Drop a reference to ACPI hotplug context. 121 * @handle: ACPI object handle to put the context for. 122 * 123 * The context object is removed if there are no more references to it. 124 * 125 * Call under acpiphp_context_lock. 126 */ 127 static void acpiphp_put_context(struct acpiphp_context *context) 128 { 129 if (--context->refcount) 130 return; 131 132 WARN_ON(context->bridge); 133 acpi_detach_data(context->handle, acpiphp_context_handler); 134 kfree(context); 135 } 136 137 static inline void get_bridge(struct acpiphp_bridge *bridge) 138 { 139 kref_get(&bridge->ref); 140 } 141 142 static inline void put_bridge(struct acpiphp_bridge *bridge) 143 { 144 kref_put(&bridge->ref, free_bridge); 145 } 146 147 static void free_bridge(struct kref *kref) 148 { 149 struct acpiphp_context *context; 150 struct acpiphp_bridge *bridge; 151 struct acpiphp_slot *slot, *next; 152 struct acpiphp_func *func, *tmp; 153 154 mutex_lock(&acpiphp_context_lock); 155 156 bridge = container_of(kref, struct acpiphp_bridge, ref); 157 158 list_for_each_entry_safe(slot, next, &bridge->slots, node) { 159 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) 160 acpiphp_put_context(func_to_context(func)); 161 162 kfree(slot); 163 } 164 165 context = bridge->context; 166 /* Root bridges will not have hotplug context. */ 167 if (context) { 168 /* Release the reference taken by acpiphp_enumerate_slots(). */ 169 put_bridge(context->func.parent); 170 context->bridge = NULL; 171 acpiphp_put_context(context); 172 } 173 174 put_device(&bridge->pci_bus->dev); 175 pci_dev_put(bridge->pci_dev); 176 kfree(bridge); 177 178 mutex_unlock(&acpiphp_context_lock); 179 } 180 181 /* 182 * the _DCK method can do funny things... and sometimes not 183 * hah-hah funny. 184 * 185 * TBD - figure out a way to only call fixups for 186 * systems that require them. 187 */ 188 static void post_dock_fixups(acpi_handle not_used, u32 event, void *data) 189 { 190 struct acpiphp_context *context = data; 191 struct pci_bus *bus = context->func.slot->bus; 192 u32 buses; 193 194 if (!bus->self) 195 return; 196 197 /* fixup bad _DCK function that rewrites 198 * secondary bridge on slot 199 */ 200 pci_read_config_dword(bus->self, 201 PCI_PRIMARY_BUS, 202 &buses); 203 204 if (((buses >> 8) & 0xff) != bus->busn_res.start) { 205 buses = (buses & 0xff000000) 206 | ((unsigned int)(bus->primary) << 0) 207 | ((unsigned int)(bus->busn_res.start) << 8) 208 | ((unsigned int)(bus->busn_res.end) << 16); 209 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses); 210 } 211 } 212 213 214 static const struct acpi_dock_ops acpiphp_dock_ops = { 215 .fixup = post_dock_fixups, 216 .handler = hotplug_event, 217 }; 218 219 /* Check whether the PCI device is managed by native PCIe hotplug driver */ 220 static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev) 221 { 222 u32 reg32; 223 acpi_handle tmp; 224 struct acpi_pci_root *root; 225 226 /* Check whether the PCIe port supports native PCIe hotplug */ 227 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, ®32)) 228 return false; 229 if (!(reg32 & PCI_EXP_SLTCAP_HPC)) 230 return false; 231 232 /* 233 * Check whether native PCIe hotplug has been enabled for 234 * this PCIe hierarchy. 235 */ 236 tmp = acpi_find_root_bridge_handle(pdev); 237 if (!tmp) 238 return false; 239 root = acpi_pci_find_root(tmp); 240 if (!root) 241 return false; 242 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL)) 243 return false; 244 245 return true; 246 } 247 248 static void acpiphp_dock_init(void *data) 249 { 250 struct acpiphp_context *context = data; 251 252 get_bridge(context->func.parent); 253 } 254 255 static void acpiphp_dock_release(void *data) 256 { 257 struct acpiphp_context *context = data; 258 259 put_bridge(context->func.parent); 260 } 261 262 /* callback routine to register each ACPI PCI slot object */ 263 static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data, 264 void **rv) 265 { 266 struct acpiphp_bridge *bridge = data; 267 struct acpiphp_context *context; 268 struct acpiphp_slot *slot; 269 struct acpiphp_func *newfunc; 270 acpi_status status = AE_OK; 271 unsigned long long adr; 272 int device, function; 273 struct pci_bus *pbus = bridge->pci_bus; 274 struct pci_dev *pdev = bridge->pci_dev; 275 u32 val; 276 277 if (pdev && device_is_managed_by_native_pciehp(pdev)) 278 return AE_OK; 279 280 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); 281 if (ACPI_FAILURE(status)) { 282 acpi_handle_warn(handle, "can't evaluate _ADR (%#x)\n", status); 283 return AE_OK; 284 } 285 286 device = (adr >> 16) & 0xffff; 287 function = adr & 0xffff; 288 289 mutex_lock(&acpiphp_context_lock); 290 context = acpiphp_init_context(handle); 291 if (!context) { 292 mutex_unlock(&acpiphp_context_lock); 293 acpi_handle_err(handle, "No hotplug context\n"); 294 return AE_NOT_EXIST; 295 } 296 newfunc = &context->func; 297 newfunc->function = function; 298 newfunc->parent = bridge; 299 mutex_unlock(&acpiphp_context_lock); 300 301 if (acpi_has_method(handle, "_EJ0")) 302 newfunc->flags = FUNC_HAS_EJ0; 303 304 if (acpi_has_method(handle, "_STA")) 305 newfunc->flags |= FUNC_HAS_STA; 306 307 if (acpi_has_method(handle, "_DCK")) 308 newfunc->flags |= FUNC_HAS_DCK; 309 310 /* search for objects that share the same slot */ 311 list_for_each_entry(slot, &bridge->slots, node) 312 if (slot->device == device) 313 goto slot_found; 314 315 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL); 316 if (!slot) { 317 status = AE_NO_MEMORY; 318 goto err; 319 } 320 321 slot->bus = bridge->pci_bus; 322 slot->device = device; 323 INIT_LIST_HEAD(&slot->funcs); 324 mutex_init(&slot->crit_sect); 325 326 list_add_tail(&slot->node, &bridge->slots); 327 328 /* Register slots for ejectable funtions only. */ 329 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) { 330 unsigned long long sun; 331 int retval; 332 333 bridge->nr_slots++; 334 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun); 335 if (ACPI_FAILURE(status)) 336 sun = bridge->nr_slots; 337 338 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n", 339 sun, pci_domain_nr(pbus), pbus->number, device); 340 341 retval = acpiphp_register_hotplug_slot(slot, sun); 342 if (retval) { 343 slot->slot = NULL; 344 bridge->nr_slots--; 345 if (retval == -EBUSY) 346 warn("Slot %llu already registered by another " 347 "hotplug driver\n", sun); 348 else 349 warn("acpiphp_register_hotplug_slot failed " 350 "(err code = 0x%x)\n", retval); 351 } 352 /* Even if the slot registration fails, we can still use it. */ 353 } 354 355 slot_found: 356 newfunc->slot = slot; 357 list_add_tail(&newfunc->sibling, &slot->funcs); 358 359 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function), 360 &val, 60*1000)) 361 slot->flags |= SLOT_ENABLED; 362 363 if (is_dock_device(handle)) { 364 /* we don't want to call this device's _EJ0 365 * because we want the dock notify handler 366 * to call it after it calls _DCK 367 */ 368 newfunc->flags &= ~FUNC_HAS_EJ0; 369 if (register_hotplug_dock_device(handle, 370 &acpiphp_dock_ops, context, 371 acpiphp_dock_init, acpiphp_dock_release)) 372 dbg("failed to register dock device\n"); 373 } 374 375 /* install notify handler */ 376 if (!(newfunc->flags & FUNC_HAS_DCK)) { 377 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, 378 handle_hotplug_event, 379 context); 380 if (ACPI_FAILURE(status)) 381 acpi_handle_err(handle, 382 "failed to install notify handler\n"); 383 } 384 385 return AE_OK; 386 387 err: 388 mutex_lock(&acpiphp_context_lock); 389 acpiphp_put_context(context); 390 mutex_unlock(&acpiphp_context_lock); 391 return status; 392 } 393 394 static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle) 395 { 396 struct acpiphp_context *context; 397 struct acpiphp_bridge *bridge = NULL; 398 399 mutex_lock(&acpiphp_context_lock); 400 context = acpiphp_get_context(handle); 401 if (context) { 402 bridge = context->bridge; 403 if (bridge) 404 get_bridge(bridge); 405 406 acpiphp_put_context(context); 407 } 408 mutex_unlock(&acpiphp_context_lock); 409 return bridge; 410 } 411 412 static void cleanup_bridge(struct acpiphp_bridge *bridge) 413 { 414 struct acpiphp_slot *slot; 415 struct acpiphp_func *func; 416 acpi_status status; 417 418 list_for_each_entry(slot, &bridge->slots, node) { 419 list_for_each_entry(func, &slot->funcs, sibling) { 420 acpi_handle handle = func_to_handle(func); 421 422 if (is_dock_device(handle)) 423 unregister_hotplug_dock_device(handle); 424 425 if (!(func->flags & FUNC_HAS_DCK)) { 426 status = acpi_remove_notify_handler(handle, 427 ACPI_SYSTEM_NOTIFY, 428 handle_hotplug_event); 429 if (ACPI_FAILURE(status)) 430 err("failed to remove notify handler\n"); 431 } 432 } 433 if (slot->slot) 434 acpiphp_unregister_hotplug_slot(slot); 435 } 436 437 mutex_lock(&bridge_mutex); 438 list_del(&bridge->list); 439 mutex_unlock(&bridge_mutex); 440 } 441 442 /** 443 * acpiphp_max_busnr - return the highest reserved bus number under the given bus. 444 * @bus: bus to start search with 445 */ 446 static unsigned char acpiphp_max_busnr(struct pci_bus *bus) 447 { 448 struct list_head *tmp; 449 unsigned char max, n; 450 451 /* 452 * pci_bus_max_busnr will return the highest 453 * reserved busnr for all these children. 454 * that is equivalent to the bus->subordinate 455 * value. We don't want to use the parent's 456 * bus->subordinate value because it could have 457 * padding in it. 458 */ 459 max = bus->busn_res.start; 460 461 list_for_each(tmp, &bus->children) { 462 n = pci_bus_max_busnr(pci_bus_b(tmp)); 463 if (n > max) 464 max = n; 465 } 466 return max; 467 } 468 469 /** 470 * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree. 471 * @handle: ACPI device object handle to start from. 472 */ 473 static void acpiphp_bus_trim(acpi_handle handle) 474 { 475 struct acpi_device *adev = NULL; 476 477 acpi_bus_get_device(handle, &adev); 478 if (adev) 479 acpi_bus_trim(adev); 480 } 481 482 /** 483 * acpiphp_bus_add - Scan ACPI namespace subtree. 484 * @handle: ACPI object handle to start the scan from. 485 */ 486 static void acpiphp_bus_add(acpi_handle handle) 487 { 488 struct acpi_device *adev = NULL; 489 490 acpiphp_bus_trim(handle); 491 acpi_bus_scan(handle); 492 acpi_bus_get_device(handle, &adev); 493 if (adev) 494 acpi_device_set_power(adev, ACPI_STATE_D0); 495 } 496 497 static void acpiphp_set_acpi_region(struct acpiphp_slot *slot) 498 { 499 struct acpiphp_func *func; 500 union acpi_object params[2]; 501 struct acpi_object_list arg_list; 502 503 list_for_each_entry(func, &slot->funcs, sibling) { 504 arg_list.count = 2; 505 arg_list.pointer = params; 506 params[0].type = ACPI_TYPE_INTEGER; 507 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG; 508 params[1].type = ACPI_TYPE_INTEGER; 509 params[1].integer.value = 1; 510 /* _REG is optional, we don't care about if there is failure */ 511 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list, 512 NULL); 513 } 514 } 515 516 static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev) 517 { 518 struct acpiphp_func *func; 519 520 /* quirk, or pcie could set it already */ 521 if (dev->is_hotplug_bridge) 522 return; 523 524 list_for_each_entry(func, &slot->funcs, sibling) { 525 if (PCI_FUNC(dev->devfn) == func->function) { 526 dev->is_hotplug_bridge = 1; 527 break; 528 } 529 } 530 } 531 532 /** 533 * enable_slot - enable, configure a slot 534 * @slot: slot to be enabled 535 * 536 * This function should be called per *physical slot*, 537 * not per each slot object in ACPI namespace. 538 */ 539 static void __ref enable_slot(struct acpiphp_slot *slot) 540 { 541 struct pci_dev *dev; 542 struct pci_bus *bus = slot->bus; 543 struct acpiphp_func *func; 544 int max, pass; 545 LIST_HEAD(add_list); 546 547 list_for_each_entry(func, &slot->funcs, sibling) 548 acpiphp_bus_add(func_to_handle(func)); 549 550 pci_scan_slot(bus, PCI_DEVFN(slot->device, 0)); 551 552 max = acpiphp_max_busnr(bus); 553 for (pass = 0; pass < 2; pass++) { 554 list_for_each_entry(dev, &bus->devices, bus_list) { 555 if (PCI_SLOT(dev->devfn) != slot->device) 556 continue; 557 558 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || 559 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { 560 max = pci_scan_bridge(bus, dev, max, pass); 561 if (pass && dev->subordinate) { 562 check_hotplug_bridge(slot, dev); 563 pcibios_resource_survey_bus(dev->subordinate); 564 __pci_bus_size_bridges(dev->subordinate, 565 &add_list); 566 } 567 } 568 } 569 } 570 571 __pci_bus_assign_resources(bus, &add_list, NULL); 572 acpiphp_sanitize_bus(bus); 573 acpiphp_set_hpp_values(bus); 574 acpiphp_set_acpi_region(slot); 575 576 list_for_each_entry(dev, &bus->devices, bus_list) { 577 /* Assume that newly added devices are powered on already. */ 578 if (!dev->is_added) 579 dev->current_state = PCI_D0; 580 } 581 582 pci_bus_add_devices(bus); 583 584 slot->flags |= SLOT_ENABLED; 585 list_for_each_entry(func, &slot->funcs, sibling) { 586 dev = pci_get_slot(bus, PCI_DEVFN(slot->device, 587 func->function)); 588 if (!dev) { 589 /* Do not set SLOT_ENABLED flag if some funcs 590 are not added. */ 591 slot->flags &= (~SLOT_ENABLED); 592 continue; 593 } 594 } 595 } 596 597 /* return first device in slot, acquiring a reference on it */ 598 static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot) 599 { 600 struct pci_bus *bus = slot->bus; 601 struct pci_dev *dev; 602 struct pci_dev *ret = NULL; 603 604 down_read(&pci_bus_sem); 605 list_for_each_entry(dev, &bus->devices, bus_list) 606 if (PCI_SLOT(dev->devfn) == slot->device) { 607 ret = pci_dev_get(dev); 608 break; 609 } 610 up_read(&pci_bus_sem); 611 612 return ret; 613 } 614 615 /** 616 * disable_slot - disable a slot 617 * @slot: ACPI PHP slot 618 */ 619 static void disable_slot(struct acpiphp_slot *slot) 620 { 621 struct acpiphp_func *func; 622 struct pci_dev *pdev; 623 624 /* 625 * enable_slot() enumerates all functions in this device via 626 * pci_scan_slot(), whether they have associated ACPI hotplug 627 * methods (_EJ0, etc.) or not. Therefore, we remove all functions 628 * here. 629 */ 630 while ((pdev = dev_in_slot(slot))) { 631 pci_stop_and_remove_bus_device(pdev); 632 pci_dev_put(pdev); 633 } 634 635 list_for_each_entry(func, &slot->funcs, sibling) 636 acpiphp_bus_trim(func_to_handle(func)); 637 638 slot->flags &= (~SLOT_ENABLED); 639 } 640 641 642 /** 643 * get_slot_status - get ACPI slot status 644 * @slot: ACPI PHP slot 645 * 646 * If a slot has _STA for each function and if any one of them 647 * returned non-zero status, return it. 648 * 649 * If a slot doesn't have _STA and if any one of its functions' 650 * configuration space is configured, return 0x0f as a _STA. 651 * 652 * Otherwise return 0. 653 */ 654 static unsigned int get_slot_status(struct acpiphp_slot *slot) 655 { 656 unsigned long long sta = 0; 657 struct acpiphp_func *func; 658 659 list_for_each_entry(func, &slot->funcs, sibling) { 660 if (func->flags & FUNC_HAS_STA) { 661 acpi_status status; 662 663 status = acpi_evaluate_integer(func_to_handle(func), 664 "_STA", NULL, &sta); 665 if (ACPI_SUCCESS(status) && sta) 666 break; 667 } else { 668 u32 dvid; 669 670 pci_bus_read_config_dword(slot->bus, 671 PCI_DEVFN(slot->device, 672 func->function), 673 PCI_VENDOR_ID, &dvid); 674 if (dvid != 0xffffffff) { 675 sta = ACPI_STA_ALL; 676 break; 677 } 678 } 679 } 680 681 return (unsigned int)sta; 682 } 683 684 /** 685 * trim_stale_devices - remove PCI devices that are not responding. 686 * @dev: PCI device to start walking the hierarchy from. 687 */ 688 static void trim_stale_devices(struct pci_dev *dev) 689 { 690 acpi_handle handle = ACPI_HANDLE(&dev->dev); 691 struct pci_bus *bus = dev->subordinate; 692 bool alive = false; 693 694 if (handle) { 695 acpi_status status; 696 unsigned long long sta; 697 698 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); 699 alive = ACPI_SUCCESS(status) && sta == ACPI_STA_ALL; 700 } 701 if (!alive) { 702 u32 v; 703 704 /* Check if the device responds. */ 705 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0); 706 } 707 if (!alive) { 708 pci_stop_and_remove_bus_device(dev); 709 if (handle) 710 acpiphp_bus_trim(handle); 711 } else if (bus) { 712 struct pci_dev *child, *tmp; 713 714 /* The device is a bridge. so check the bus below it. */ 715 pm_runtime_get_sync(&dev->dev); 716 list_for_each_entry_safe(child, tmp, &bus->devices, bus_list) 717 trim_stale_devices(child); 718 719 pm_runtime_put(&dev->dev); 720 } 721 } 722 723 /** 724 * acpiphp_check_bridge - re-enumerate devices 725 * @bridge: where to begin re-enumeration 726 * 727 * Iterate over all slots under this bridge and make sure that if a 728 * card is present they are enabled, and if not they are disabled. 729 */ 730 static void acpiphp_check_bridge(struct acpiphp_bridge *bridge) 731 { 732 struct acpiphp_slot *slot; 733 734 list_for_each_entry(slot, &bridge->slots, node) { 735 struct pci_bus *bus = slot->bus; 736 struct pci_dev *dev, *tmp; 737 738 mutex_lock(&slot->crit_sect); 739 /* wake up all functions */ 740 if (get_slot_status(slot) == ACPI_STA_ALL) { 741 /* remove stale devices if any */ 742 list_for_each_entry_safe(dev, tmp, &bus->devices, 743 bus_list) 744 if (PCI_SLOT(dev->devfn) == slot->device) 745 trim_stale_devices(dev); 746 747 /* configure all functions */ 748 enable_slot(slot); 749 } else { 750 disable_slot(slot); 751 } 752 mutex_unlock(&slot->crit_sect); 753 } 754 } 755 756 static void acpiphp_set_hpp_values(struct pci_bus *bus) 757 { 758 struct pci_dev *dev; 759 760 list_for_each_entry(dev, &bus->devices, bus_list) 761 pci_configure_slot(dev); 762 } 763 764 /* 765 * Remove devices for which we could not assign resources, call 766 * arch specific code to fix-up the bus 767 */ 768 static void acpiphp_sanitize_bus(struct pci_bus *bus) 769 { 770 struct pci_dev *dev, *tmp; 771 int i; 772 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM; 773 774 list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) { 775 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) { 776 struct resource *res = &dev->resource[i]; 777 if ((res->flags & type_mask) && !res->start && 778 res->end) { 779 /* Could not assign a required resources 780 * for this device, remove it */ 781 pci_stop_and_remove_bus_device(dev); 782 break; 783 } 784 } 785 } 786 } 787 788 /* 789 * ACPI event handlers 790 */ 791 792 void acpiphp_check_host_bridge(acpi_handle handle) 793 { 794 struct acpiphp_bridge *bridge; 795 796 bridge = acpiphp_handle_to_bridge(handle); 797 if (bridge) { 798 acpiphp_check_bridge(bridge); 799 put_bridge(bridge); 800 } 801 } 802 803 static void hotplug_event(acpi_handle handle, u32 type, void *data) 804 { 805 struct acpiphp_context *context = data; 806 struct acpiphp_func *func = &context->func; 807 struct acpiphp_bridge *bridge; 808 char objname[64]; 809 struct acpi_buffer buffer = { .length = sizeof(objname), 810 .pointer = objname }; 811 812 mutex_lock(&acpiphp_context_lock); 813 bridge = context->bridge; 814 if (bridge) 815 get_bridge(bridge); 816 817 mutex_unlock(&acpiphp_context_lock); 818 819 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); 820 821 switch (type) { 822 case ACPI_NOTIFY_BUS_CHECK: 823 /* bus re-enumerate */ 824 dbg("%s: Bus check notify on %s\n", __func__, objname); 825 dbg("%s: re-enumerating slots under %s\n", __func__, objname); 826 if (bridge) { 827 acpiphp_check_bridge(bridge); 828 } else { 829 struct acpiphp_slot *slot = func->slot; 830 831 mutex_lock(&slot->crit_sect); 832 enable_slot(slot); 833 mutex_unlock(&slot->crit_sect); 834 } 835 break; 836 837 case ACPI_NOTIFY_DEVICE_CHECK: 838 /* device check */ 839 dbg("%s: Device check notify on %s\n", __func__, objname); 840 if (bridge) 841 acpiphp_check_bridge(bridge); 842 else 843 acpiphp_check_bridge(func->parent); 844 845 break; 846 847 case ACPI_NOTIFY_EJECT_REQUEST: 848 /* request device eject */ 849 dbg("%s: Device eject notify on %s\n", __func__, objname); 850 acpiphp_disable_and_eject_slot(func->slot); 851 break; 852 } 853 854 if (bridge) 855 put_bridge(bridge); 856 } 857 858 static void hotplug_event_work(struct work_struct *work) 859 { 860 struct acpiphp_context *context; 861 struct acpi_hp_work *hp_work; 862 863 hp_work = container_of(work, struct acpi_hp_work, work); 864 context = hp_work->context; 865 acpi_scan_lock_acquire(); 866 867 hotplug_event(hp_work->handle, hp_work->type, context); 868 869 acpi_scan_lock_release(); 870 kfree(hp_work); /* allocated in handle_hotplug_event() */ 871 put_bridge(context->func.parent); 872 } 873 874 /** 875 * handle_hotplug_event - handle ACPI hotplug event 876 * @handle: Notify()'ed acpi_handle 877 * @type: Notify code 878 * @data: pointer to acpiphp_context structure 879 * 880 * Handles ACPI event notification on slots. 881 */ 882 static void handle_hotplug_event(acpi_handle handle, u32 type, void *data) 883 { 884 struct acpiphp_context *context; 885 886 switch (type) { 887 case ACPI_NOTIFY_BUS_CHECK: 888 case ACPI_NOTIFY_DEVICE_CHECK: 889 case ACPI_NOTIFY_EJECT_REQUEST: 890 break; 891 892 case ACPI_NOTIFY_DEVICE_WAKE: 893 return; 894 895 case ACPI_NOTIFY_FREQUENCY_MISMATCH: 896 acpi_handle_err(handle, "Device cannot be configured due " 897 "to a frequency mismatch\n"); 898 return; 899 900 case ACPI_NOTIFY_BUS_MODE_MISMATCH: 901 acpi_handle_err(handle, "Device cannot be configured due " 902 "to a bus mode mismatch\n"); 903 return; 904 905 case ACPI_NOTIFY_POWER_FAULT: 906 acpi_handle_err(handle, "Device has suffered a power fault\n"); 907 return; 908 909 default: 910 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type); 911 return; 912 } 913 914 mutex_lock(&acpiphp_context_lock); 915 context = acpiphp_get_context(handle); 916 if (context) { 917 get_bridge(context->func.parent); 918 acpiphp_put_context(context); 919 alloc_acpi_hp_work(handle, type, context, hotplug_event_work); 920 } 921 mutex_unlock(&acpiphp_context_lock); 922 } 923 924 /* 925 * Create hotplug slots for the PCI bus. 926 * It should always return 0 to avoid skipping following notifiers. 927 */ 928 void acpiphp_enumerate_slots(struct pci_bus *bus) 929 { 930 struct acpiphp_bridge *bridge; 931 acpi_handle handle; 932 acpi_status status; 933 934 if (acpiphp_disabled) 935 return; 936 937 handle = ACPI_HANDLE(bus->bridge); 938 if (!handle) 939 return; 940 941 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL); 942 if (!bridge) { 943 acpi_handle_err(handle, "No memory for bridge object\n"); 944 return; 945 } 946 947 INIT_LIST_HEAD(&bridge->slots); 948 kref_init(&bridge->ref); 949 bridge->pci_dev = pci_dev_get(bus->self); 950 bridge->pci_bus = bus; 951 952 /* 953 * Grab a ref to the subordinate PCI bus in case the bus is 954 * removed via PCI core logical hotplug. The ref pins the bus 955 * (which we access during module unload). 956 */ 957 get_device(&bus->dev); 958 959 if (!pci_is_root_bus(bridge->pci_bus)) { 960 struct acpiphp_context *context; 961 962 /* 963 * This bridge should have been registered as a hotplug function 964 * under its parent, so the context has to be there. If not, we 965 * are in deep goo. 966 */ 967 mutex_lock(&acpiphp_context_lock); 968 context = acpiphp_get_context(handle); 969 if (WARN_ON(!context)) { 970 mutex_unlock(&acpiphp_context_lock); 971 put_device(&bus->dev); 972 kfree(bridge); 973 return; 974 } 975 bridge->context = context; 976 context->bridge = bridge; 977 /* Get a reference to the parent bridge. */ 978 get_bridge(context->func.parent); 979 mutex_unlock(&acpiphp_context_lock); 980 } 981 982 /* must be added to the list prior to calling register_slot */ 983 mutex_lock(&bridge_mutex); 984 list_add(&bridge->list, &bridge_list); 985 mutex_unlock(&bridge_mutex); 986 987 /* register all slot objects under this bridge */ 988 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1, 989 register_slot, NULL, bridge, NULL); 990 if (ACPI_FAILURE(status)) { 991 acpi_handle_err(handle, "failed to register slots\n"); 992 cleanup_bridge(bridge); 993 put_bridge(bridge); 994 } 995 } 996 997 /* Destroy hotplug slots associated with the PCI bus */ 998 void acpiphp_remove_slots(struct pci_bus *bus) 999 { 1000 struct acpiphp_bridge *bridge; 1001 1002 if (acpiphp_disabled) 1003 return; 1004 1005 mutex_lock(&bridge_mutex); 1006 list_for_each_entry(bridge, &bridge_list, list) 1007 if (bridge->pci_bus == bus) { 1008 mutex_unlock(&bridge_mutex); 1009 cleanup_bridge(bridge); 1010 put_bridge(bridge); 1011 return; 1012 } 1013 1014 mutex_unlock(&bridge_mutex); 1015 } 1016 1017 /** 1018 * acpiphp_enable_slot - power on slot 1019 * @slot: ACPI PHP slot 1020 */ 1021 int acpiphp_enable_slot(struct acpiphp_slot *slot) 1022 { 1023 mutex_lock(&slot->crit_sect); 1024 /* configure all functions */ 1025 if (!(slot->flags & SLOT_ENABLED)) 1026 enable_slot(slot); 1027 1028 mutex_unlock(&slot->crit_sect); 1029 return 0; 1030 } 1031 1032 /** 1033 * acpiphp_disable_and_eject_slot - power off and eject slot 1034 * @slot: ACPI PHP slot 1035 */ 1036 int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot) 1037 { 1038 struct acpiphp_func *func; 1039 int retval = 0; 1040 1041 mutex_lock(&slot->crit_sect); 1042 1043 /* unconfigure all functions */ 1044 disable_slot(slot); 1045 1046 list_for_each_entry(func, &slot->funcs, sibling) 1047 if (func->flags & FUNC_HAS_EJ0) { 1048 acpi_handle handle = func_to_handle(func); 1049 1050 if (ACPI_FAILURE(acpi_evaluate_ej0(handle))) 1051 acpi_handle_err(handle, "_EJ0 failed\n"); 1052 1053 break; 1054 } 1055 1056 mutex_unlock(&slot->crit_sect); 1057 return retval; 1058 } 1059 1060 1061 /* 1062 * slot enabled: 1 1063 * slot disabled: 0 1064 */ 1065 u8 acpiphp_get_power_status(struct acpiphp_slot *slot) 1066 { 1067 return (slot->flags & SLOT_ENABLED); 1068 } 1069 1070 1071 /* 1072 * latch open: 1 1073 * latch closed: 0 1074 */ 1075 u8 acpiphp_get_latch_status(struct acpiphp_slot *slot) 1076 { 1077 return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI); 1078 } 1079 1080 1081 /* 1082 * adapter presence : 1 1083 * absence : 0 1084 */ 1085 u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot) 1086 { 1087 return !!get_slot_status(slot); 1088 } 1089