ACPI / hotplug / PCI: Scan root bus under the PCI rescan-remove lock
[deliverable/linux.git] / drivers / pci / hotplug / acpiphp_glue.c
CommitLineData
1da177e4
LT
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
42f49a6a
RS
7 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com)
8 * Copyright (C) 2003-2005 Hewlett Packard
8e7561cf
RS
9 * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com)
10 * Copyright (C) 2005 Intel Corporation
1da177e4
LT
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 *
998be20f 29 * Send feedback to <kristen.c.accardi@intel.com>
1da177e4
LT
30 *
31 */
32
42f49a6a
RS
33/*
34 * Lifetime rules for pci_dev:
42f49a6a
RS
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.
5d4a4b25
AC
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.
42f49a6a
RS
40 */
41
bd950799
LT
42#define pr_fmt(fmt) "acpiphp_glue: " fmt
43
1da177e4
LT
44#include <linux/init.h>
45#include <linux/module.h>
46
47#include <linux/kernel.h>
48#include <linux/pci.h>
7a54f25c 49#include <linux/pci_hotplug.h>
e8c331e9 50#include <linux/pci-acpi.h>
4ebe3450 51#include <linux/pm_runtime.h>
6aa4cdd0 52#include <linux/mutex.h>
5a0e3ad6 53#include <linux/slab.h>
6af8bef1 54#include <linux/acpi.h>
1da177e4
LT
55
56#include "../pci.h"
1da177e4
LT
57#include "acpiphp.h"
58
59static LIST_HEAD(bridge_list);
3d54a316 60static DEFINE_MUTEX(bridge_mutex);
cb7b8ced 61static DEFINE_MUTEX(acpiphp_context_lock);
1da177e4 62
87831273 63static void handle_hotplug_event(acpi_handle handle, u32 type, void *data);
8e5dce35 64static void acpiphp_sanitize_bus(struct pci_bus *bus);
fca6825a 65static void acpiphp_set_hpp_values(struct pci_bus *bus);
43e5c091 66static void hotplug_event(acpi_handle handle, u32 type, void *data);
3d54a316 67static void free_bridge(struct kref *kref);
8e5dce35 68
cb7b8ced
RW
69static 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 */
80static 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 */
105static 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 */
127static void acpiphp_put_context(struct acpiphp_context *context)
128{
129 if (--context->refcount)
130 return;
131
bd4674df 132 WARN_ON(context->bridge);
cb7b8ced
RW
133 acpi_detach_data(context->handle, acpiphp_context_handler);
134 kfree(context);
135}
136
3d54a316
JL
137static inline void get_bridge(struct acpiphp_bridge *bridge)
138{
139 kref_get(&bridge->ref);
140}
141
142static inline void put_bridge(struct acpiphp_bridge *bridge)
143{
144 kref_put(&bridge->ref, free_bridge);
145}
146
147static void free_bridge(struct kref *kref)
148{
cb7b8ced 149 struct acpiphp_context *context;
3d54a316
JL
150 struct acpiphp_bridge *bridge;
151 struct acpiphp_slot *slot, *next;
152 struct acpiphp_func *func, *tmp;
153
cb7b8ced
RW
154 mutex_lock(&acpiphp_context_lock);
155
3d54a316
JL
156 bridge = container_of(kref, struct acpiphp_bridge, ref);
157
158 list_for_each_entry_safe(slot, next, &bridge->slots, node) {
bd4674df
RW
159 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling)
160 acpiphp_put_context(func_to_context(func));
161
3d54a316
JL
162 kfree(slot);
163 }
164
87831273 165 context = bridge->context;
bbd34fcd
RW
166 /* Root bridges will not have hotplug context. */
167 if (context) {
168 /* Release the reference taken by acpiphp_enumerate_slots(). */
bda46dbb 169 put_bridge(context->func.parent);
bbd34fcd
RW
170 context->bridge = NULL;
171 acpiphp_put_context(context);
172 }
cb7b8ced 173
3d54a316
JL
174 put_device(&bridge->pci_bus->dev);
175 pci_dev_put(bridge->pci_dev);
176 kfree(bridge);
cb7b8ced
RW
177
178 mutex_unlock(&acpiphp_context_lock);
3d54a316
JL
179}
180
4e8662bb
KA
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 */
f09ce741 188static void post_dock_fixups(acpi_handle not_used, u32 event, void *data)
4e8662bb 189{
43e5c091 190 struct acpiphp_context *context = data;
bda46dbb 191 struct pci_bus *bus = context->func.slot->bus;
4e8662bb
KA
192 u32 buses;
193
194 if (!bus->self)
f09ce741 195 return;
4e8662bb
KA
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
b918c62e 204 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
4e8662bb 205 buses = (buses & 0xff000000)
2a9d3521 206 | ((unsigned int)(bus->primary) << 0)
b918c62e
YL
207 | ((unsigned int)(bus->busn_res.start) << 8)
208 | ((unsigned int)(bus->busn_res.end) << 16);
4e8662bb
KA
209 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
210 }
4e8662bb
KA
211}
212
213
9c8b04be 214static const struct acpi_dock_ops acpiphp_dock_ops = {
f09ce741 215 .fixup = post_dock_fixups,
43e5c091 216 .handler = hotplug_event,
1253f7aa 217};
1da177e4 218
5ba113f7
JL
219/* Check whether the PCI device is managed by native PCIe hotplug driver */
220static 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, &reg32))
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
21a31013
RW
248static void acpiphp_dock_init(void *data)
249{
43e5c091 250 struct acpiphp_context *context = data;
21a31013 251
bda46dbb 252 get_bridge(context->func.parent);
21a31013
RW
253}
254
255static void acpiphp_dock_release(void *data)
256{
43e5c091 257 struct acpiphp_context *context = data;
21a31013 258
bda46dbb 259 put_bridge(context->func.parent);
21a31013
RW
260}
261
1da177e4 262/* callback routine to register each ACPI PCI slot object */
cb7b8ced
RW
263static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data,
264 void **rv)
1da177e4 265{
cb7b8ced
RW
266 struct acpiphp_bridge *bridge = data;
267 struct acpiphp_context *context;
1da177e4
LT
268 struct acpiphp_slot *slot;
269 struct acpiphp_func *newfunc;
1da177e4 270 acpi_status status = AE_OK;
bbd34fcd
RW
271 unsigned long long adr;
272 int device, function;
e8c331e9 273 struct pci_bus *pbus = bridge->pci_bus;
bbd34fcd 274 struct pci_dev *pdev = bridge->pci_dev;
3b63aaa7 275 u32 val;
1da177e4 276
bbd34fcd 277 if (pdev && device_is_managed_by_native_pciehp(pdev))
1da177e4
LT
278 return AE_OK;
279
dfb117b3
BH
280 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
281 if (ACPI_FAILURE(status)) {
f26ca1d6
TK
282 if (status != AE_NOT_FOUND)
283 acpi_handle_warn(handle,
284 "can't evaluate _ADR (%#x)\n", status);
dfb117b3
BH
285 return AE_OK;
286 }
287
288 device = (adr >> 16) & 0xffff;
289 function = adr & 0xffff;
290
cb7b8ced
RW
291 mutex_lock(&acpiphp_context_lock);
292 context = acpiphp_init_context(handle);
293 if (!context) {
294 mutex_unlock(&acpiphp_context_lock);
295 acpi_handle_err(handle, "No hotplug context\n");
cb7b8ced
RW
296 return AE_NOT_EXIST;
297 }
bd4674df 298 newfunc = &context->func;
bd4674df 299 newfunc->function = function;
bda46dbb 300 newfunc->parent = bridge;
cb7b8ced
RW
301 mutex_unlock(&acpiphp_context_lock);
302
ecd046da 303 if (acpi_has_method(handle, "_EJ0"))
20416ea5 304 newfunc->flags = FUNC_HAS_EJ0;
1da177e4 305
ecd046da 306 if (acpi_has_method(handle, "_STA"))
1da177e4
LT
307 newfunc->flags |= FUNC_HAS_STA;
308
ecd046da 309 if (acpi_has_method(handle, "_DCK"))
20416ea5 310 newfunc->flags |= FUNC_HAS_DCK;
20416ea5 311
1da177e4 312 /* search for objects that share the same slot */
ad41dd9d 313 list_for_each_entry(slot, &bridge->slots, node)
bbd34fcd 314 if (slot->device == device)
ac372338 315 goto slot_found;
1da177e4 316
ac372338
RW
317 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
318 if (!slot) {
319 status = AE_NO_MEMORY;
320 goto err;
321 }
322
bda46dbb 323 slot->bus = bridge->pci_bus;
ac372338 324 slot->device = device;
ac372338
RW
325 INIT_LIST_HEAD(&slot->funcs);
326 mutex_init(&slot->crit_sect);
327
ac372338 328 list_add_tail(&slot->node, &bridge->slots);
1da177e4 329
f7625980 330 /* Register slots for ejectable functions only. */
bbd34fcd
RW
331 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) {
332 unsigned long long sun;
333 int retval;
ac372338 334
bbd34fcd
RW
335 bridge->nr_slots++;
336 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
337 if (ACPI_FAILURE(status))
338 sun = bridge->nr_slots;
339
bd950799 340 pr_debug("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
7342798d 341 sun, pci_domain_nr(pbus), pbus->number, device);
bbd34fcd 342
7342798d 343 retval = acpiphp_register_hotplug_slot(slot, sun);
bbd34fcd 344 if (retval) {
1aaac071 345 slot->slot = NULL;
bbd34fcd
RW
346 bridge->nr_slots--;
347 if (retval == -EBUSY)
bd950799 348 pr_warn("Slot %llu already registered by another "
7342798d 349 "hotplug driver\n", sun);
bbd34fcd 350 else
bd950799 351 pr_warn("acpiphp_register_hotplug_slot failed "
bbd34fcd
RW
352 "(err code = 0x%x)\n", retval);
353 }
354 /* Even if the slot registration fails, we can still use it. */
1da177e4
LT
355 }
356
ac372338 357 slot_found:
1da177e4
LT
358 newfunc->slot = slot;
359 list_add_tail(&newfunc->sibling, &slot->funcs);
360
3b63aaa7
JL
361 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
362 &val, 60*1000))
bc805a55 363 slot->flags |= SLOT_ENABLED;
1da177e4 364
4e8662bb
KA
365 if (is_dock_device(handle)) {
366 /* we don't want to call this device's _EJ0
367 * because we want the dock notify handler
368 * to call it after it calls _DCK
20416ea5
KA
369 */
370 newfunc->flags &= ~FUNC_HAS_EJ0;
4e8662bb 371 if (register_hotplug_dock_device(handle,
43e5c091 372 &acpiphp_dock_ops, context,
21a31013 373 acpiphp_dock_init, acpiphp_dock_release))
bd950799 374 pr_debug("failed to register dock device\n");
20416ea5
KA
375 }
376
1da177e4 377 /* install notify handler */
20416ea5 378 if (!(newfunc->flags & FUNC_HAS_DCK)) {
87831273
RW
379 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
380 handle_hotplug_event,
381 context);
bbd34fcd
RW
382 if (ACPI_FAILURE(status))
383 acpi_handle_err(handle,
384 "failed to install notify handler\n");
2e862c51 385 }
1da177e4 386
2e862c51 387 return AE_OK;
e27da381 388
cb7b8ced 389 err:
cb7b8ced 390 mutex_lock(&acpiphp_context_lock);
cb7b8ced
RW
391 acpiphp_put_context(context);
392 mutex_unlock(&acpiphp_context_lock);
cb7b8ced 393 return status;
1da177e4
LT
394}
395
42f49a6a
RS
396static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
397{
ed13febf
RW
398 struct acpiphp_context *context;
399 struct acpiphp_bridge *bridge = NULL;
58c08628 400
ed13febf
RW
401 mutex_lock(&acpiphp_context_lock);
402 context = acpiphp_get_context(handle);
403 if (context) {
404 bridge = context->bridge;
405 if (bridge)
3d54a316 406 get_bridge(bridge);
42f49a6a 407
ed13febf
RW
408 acpiphp_put_context(context);
409 }
410 mutex_unlock(&acpiphp_context_lock);
411 return bridge;
42f49a6a 412}
1da177e4 413
364d5094 414static void cleanup_bridge(struct acpiphp_bridge *bridge)
1da177e4 415{
3d54a316
JL
416 struct acpiphp_slot *slot;
417 struct acpiphp_func *func;
42f49a6a 418 acpi_status status;
42f49a6a 419
3d54a316
JL
420 list_for_each_entry(slot, &bridge->slots, node) {
421 list_for_each_entry(func, &slot->funcs, sibling) {
5a3bc573
RW
422 acpi_handle handle = func_to_handle(func);
423
424 if (is_dock_device(handle))
425 unregister_hotplug_dock_device(handle);
426
20416ea5 427 if (!(func->flags & FUNC_HAS_DCK)) {
5a3bc573 428 status = acpi_remove_notify_handler(handle,
87831273
RW
429 ACPI_SYSTEM_NOTIFY,
430 handle_hotplug_event);
20416ea5 431 if (ACPI_FAILURE(status))
bd950799 432 pr_err("failed to remove notify handler\n");
20416ea5 433 }
42f49a6a 434 }
9217a984 435 slot->flags |= SLOT_IS_GOING_AWAY;
1aaac071
RW
436 if (slot->slot)
437 acpiphp_unregister_hotplug_slot(slot);
42f49a6a
RS
438 }
439
3d54a316 440 mutex_lock(&bridge_mutex);
42f49a6a 441 list_del(&bridge->list);
3d54a316 442 mutex_unlock(&bridge_mutex);
9217a984
RW
443
444 bridge->is_going_away = true;
1da177e4
LT
445}
446
15a1ae74 447/**
26e6c66e 448 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
15a1ae74 449 * @bus: bus to start search with
15a1ae74
KA
450 */
451static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
452{
453 struct list_head *tmp;
454 unsigned char max, n;
455
456 /*
457 * pci_bus_max_busnr will return the highest
458 * reserved busnr for all these children.
459 * that is equivalent to the bus->subordinate
460 * value. We don't want to use the parent's
461 * bus->subordinate value because it could have
462 * padding in it.
463 */
b918c62e 464 max = bus->busn_res.start;
15a1ae74
KA
465
466 list_for_each(tmp, &bus->children) {
467 n = pci_bus_max_busnr(pci_bus_b(tmp));
468 if (n > max)
469 max = n;
470 }
471 return max;
472}
473
15a1ae74 474/**
236e2624
RW
475 * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree.
476 * @handle: ACPI device object handle to start from.
15a1ae74 477 */
236e2624 478static void acpiphp_bus_trim(acpi_handle handle)
15a1ae74 479{
236e2624 480 struct acpi_device *adev = NULL;
15a1ae74 481
236e2624
RW
482 acpi_bus_get_device(handle, &adev);
483 if (adev)
484 acpi_bus_trim(adev);
15a1ae74
KA
485}
486
92c9be95 487/**
236e2624
RW
488 * acpiphp_bus_add - Scan ACPI namespace subtree.
489 * @handle: ACPI object handle to start the scan from.
92c9be95 490 */
236e2624 491static void acpiphp_bus_add(acpi_handle handle)
92c9be95 492{
bc805a55
RW
493 struct acpi_device *adev = NULL;
494
236e2624 495 acpi_bus_scan(handle);
bc805a55 496 acpi_bus_get_device(handle, &adev);
202317a5 497 if (acpi_device_enumerated(adev))
bc805a55 498 acpi_device_set_power(adev, ACPI_STATE_D0);
92c9be95 499}
15a1ae74 500
d0607050
SL
501static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
502{
503 struct acpiphp_func *func;
504 union acpi_object params[2];
505 struct acpi_object_list arg_list;
506
507 list_for_each_entry(func, &slot->funcs, sibling) {
508 arg_list.count = 2;
509 arg_list.pointer = params;
510 params[0].type = ACPI_TYPE_INTEGER;
511 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
512 params[1].type = ACPI_TYPE_INTEGER;
513 params[1].integer.value = 1;
514 /* _REG is optional, we don't care about if there is failure */
5a3bc573
RW
515 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
516 NULL);
d0607050
SL
517 }
518}
519
1f96a965
YL
520static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
521{
522 struct acpiphp_func *func;
523
1f96a965
YL
524 /* quirk, or pcie could set it already */
525 if (dev->is_hotplug_bridge)
526 return;
527
1f96a965
YL
528 list_for_each_entry(func, &slot->funcs, sibling) {
529 if (PCI_FUNC(dev->devfn) == func->function) {
bbd34fcd 530 dev->is_hotplug_bridge = 1;
1f96a965
YL
531 break;
532 }
533 }
534}
3b63aaa7 535
a47d8c8e
RW
536static int acpiphp_rescan_slot(struct acpiphp_slot *slot)
537{
538 struct acpiphp_func *func;
539
540 list_for_each_entry(func, &slot->funcs, sibling)
541 acpiphp_bus_add(func_to_handle(func));
542
543 return pci_scan_slot(slot->bus, PCI_DEVFN(slot->device, 0));
544}
545
1da177e4 546/**
a1d0abce 547 * enable_slot - enable, configure a slot
1da177e4
LT
548 * @slot: slot to be enabled
549 *
550 * This function should be called per *physical slot*,
551 * not per each slot object in ACPI namespace.
1da177e4 552 */
a1d0abce 553static void __ref enable_slot(struct acpiphp_slot *slot)
1da177e4 554{
1da177e4 555 struct pci_dev *dev;
bda46dbb 556 struct pci_bus *bus = slot->bus;
1da177e4 557 struct acpiphp_func *func;
b91182a6 558 int max, pass;
d66ecb72 559 LIST_HEAD(add_list);
1da177e4 560
ab122590 561 acpiphp_rescan_slot(slot);
15a1ae74 562 max = acpiphp_max_busnr(bus);
42f49a6a
RS
563 for (pass = 0; pass < 2; pass++) {
564 list_for_each_entry(dev, &bus->devices, bus_list) {
565 if (PCI_SLOT(dev->devfn) != slot->device)
566 continue;
a1d0abce 567
42f49a6a 568 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
c64b5eea 569 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
42f49a6a 570 max = pci_scan_bridge(bus, dev, max, pass);
1f96a965
YL
571 if (pass && dev->subordinate) {
572 check_hotplug_bridge(slot, dev);
d66ecb72
JL
573 pcibios_resource_survey_bus(dev->subordinate);
574 __pci_bus_size_bridges(dev->subordinate,
575 &add_list);
1f96a965 576 }
c64b5eea 577 }
42f49a6a 578 }
1da177e4 579 }
d66ecb72 580 __pci_bus_assign_resources(bus, &add_list, NULL);
2dc41281 581
8e5dce35 582 acpiphp_sanitize_bus(bus);
fca6825a 583 acpiphp_set_hpp_values(bus);
d0607050 584 acpiphp_set_acpi_region(slot);
69643e48
IC
585
586 list_for_each_entry(dev, &bus->devices, bus_list) {
587 /* Assume that newly added devices are powered on already. */
588 if (!dev->is_added)
589 dev->current_state = PCI_D0;
590 }
591
42f49a6a
RS
592 pci_bus_add_devices(bus);
593
f382a086 594 slot->flags |= SLOT_ENABLED;
58c08628 595 list_for_each_entry(func, &slot->funcs, sibling) {
9d911d79
AC
596 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
597 func->function));
f382a086
AK
598 if (!dev) {
599 /* Do not set SLOT_ENABLED flag if some funcs
600 are not added. */
601 slot->flags &= (~SLOT_ENABLED);
551bcb75 602 continue;
f382a086 603 }
1da177e4 604 }
1da177e4
LT
605}
606
ce29ca3e
AK
607/* return first device in slot, acquiring a reference on it */
608static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
609{
bda46dbb 610 struct pci_bus *bus = slot->bus;
ce29ca3e
AK
611 struct pci_dev *dev;
612 struct pci_dev *ret = NULL;
613
614 down_read(&pci_bus_sem);
615 list_for_each_entry(dev, &bus->devices, bus_list)
616 if (PCI_SLOT(dev->devfn) == slot->device) {
617 ret = pci_dev_get(dev);
618 break;
619 }
620 up_read(&pci_bus_sem);
621
622 return ret;
623}
624
1da177e4 625/**
a1d0abce 626 * disable_slot - disable a slot
26e6c66e 627 * @slot: ACPI PHP slot
1da177e4 628 */
a1d0abce 629static void disable_slot(struct acpiphp_slot *slot)
1da177e4 630{
1da177e4 631 struct acpiphp_func *func;
9d911d79 632 struct pci_dev *pdev;
551bcb75 633
ce29ca3e 634 /*
a1d0abce 635 * enable_slot() enumerates all functions in this device via
ce29ca3e
AK
636 * pci_scan_slot(), whether they have associated ACPI hotplug
637 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
638 * here.
639 */
640 while ((pdev = dev_in_slot(slot))) {
34e54843 641 pci_stop_and_remove_bus_device(pdev);
ce29ca3e 642 pci_dev_put(pdev);
600812ec
ST
643 }
644
5a3bc573
RW
645 list_for_each_entry(func, &slot->funcs, sibling)
646 acpiphp_bus_trim(func_to_handle(func));
1da177e4
LT
647
648 slot->flags &= (~SLOT_ENABLED);
1da177e4
LT
649}
650
f244d8b6
RW
651static bool acpiphp_no_hotplug(acpi_handle handle)
652{
653 struct acpi_device *adev = NULL;
654
655 acpi_bus_get_device(handle, &adev);
656 return adev && adev->flags.no_hotplug;
657}
658
659static bool slot_no_hotplug(struct acpiphp_slot *slot)
660{
661 struct acpiphp_func *func;
662
663 list_for_each_entry(func, &slot->funcs, sibling)
664 if (acpiphp_no_hotplug(func_to_handle(func)))
665 return true;
666
667 return false;
668}
1da177e4
LT
669
670/**
671 * get_slot_status - get ACPI slot status
26e6c66e 672 * @slot: ACPI PHP slot
1da177e4 673 *
26e6c66e
RD
674 * If a slot has _STA for each function and if any one of them
675 * returned non-zero status, return it.
1da177e4 676 *
26e6c66e
RD
677 * If a slot doesn't have _STA and if any one of its functions'
678 * configuration space is configured, return 0x0f as a _STA.
1da177e4 679 *
26e6c66e 680 * Otherwise return 0.
1da177e4
LT
681 */
682static unsigned int get_slot_status(struct acpiphp_slot *slot)
683{
27663c58 684 unsigned long long sta = 0;
1da177e4
LT
685 struct acpiphp_func *func;
686
58c08628 687 list_for_each_entry(func, &slot->funcs, sibling) {
1da177e4 688 if (func->flags & FUNC_HAS_STA) {
5a3bc573
RW
689 acpi_status status;
690
691 status = acpi_evaluate_integer(func_to_handle(func),
692 "_STA", NULL, &sta);
1da177e4
LT
693 if (ACPI_SUCCESS(status) && sta)
694 break;
695 } else {
5a3bc573
RW
696 u32 dvid;
697
bda46dbb 698 pci_bus_read_config_dword(slot->bus,
1da177e4
LT
699 PCI_DEVFN(slot->device,
700 func->function),
701 PCI_VENDOR_ID, &dvid);
702 if (dvid != 0xffffffff) {
703 sta = ACPI_STA_ALL;
704 break;
705 }
706 }
707 }
708
709 return (unsigned int)sta;
710}
711
4ebe3450
RW
712/**
713 * trim_stale_devices - remove PCI devices that are not responding.
714 * @dev: PCI device to start walking the hierarchy from.
715 */
716static void trim_stale_devices(struct pci_dev *dev)
717{
718 acpi_handle handle = ACPI_HANDLE(&dev->dev);
719 struct pci_bus *bus = dev->subordinate;
720 bool alive = false;
721
722 if (handle) {
723 acpi_status status;
724 unsigned long long sta;
725
726 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
f244d8b6
RW
727 alive = (ACPI_SUCCESS(status) && sta == ACPI_STA_ALL)
728 || acpiphp_no_hotplug(handle);
4ebe3450
RW
729 }
730 if (!alive) {
731 u32 v;
732
733 /* Check if the device responds. */
734 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0);
735 }
736 if (!alive) {
737 pci_stop_and_remove_bus_device(dev);
738 if (handle)
739 acpiphp_bus_trim(handle);
740 } else if (bus) {
741 struct pci_dev *child, *tmp;
742
743 /* The device is a bridge. so check the bus below it. */
744 pm_runtime_get_sync(&dev->dev);
2d7c1b77 745 list_for_each_entry_safe_reverse(child, tmp, &bus->devices, bus_list)
4ebe3450
RW
746 trim_stale_devices(child);
747
748 pm_runtime_put(&dev->dev);
749 }
750}
751
1da177e4
LT
752/**
753 * acpiphp_check_bridge - re-enumerate devices
26e6c66e 754 * @bridge: where to begin re-enumeration
1da177e4
LT
755 *
756 * Iterate over all slots under this bridge and make sure that if a
757 * card is present they are enabled, and if not they are disabled.
758 */
4ebe3450 759static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
1da177e4
LT
760{
761 struct acpiphp_slot *slot;
1da177e4 762
9217a984
RW
763 /* Bail out if the bridge is going away. */
764 if (bridge->is_going_away)
765 return;
766
ad41dd9d 767 list_for_each_entry(slot, &bridge->slots, node) {
4ebe3450
RW
768 struct pci_bus *bus = slot->bus;
769 struct pci_dev *dev, *tmp;
770
771 mutex_lock(&slot->crit_sect);
f244d8b6
RW
772 if (slot_no_hotplug(slot)) {
773 ; /* do nothing */
774 } else if (get_slot_status(slot) == ACPI_STA_ALL) {
4ebe3450 775 /* remove stale devices if any */
2d7c1b77
RW
776 list_for_each_entry_safe_reverse(dev, tmp,
777 &bus->devices, bus_list)
4ebe3450
RW
778 if (PCI_SLOT(dev->devfn) == slot->device)
779 trim_stale_devices(dev);
780
781 /* configure all functions */
a1d0abce 782 enable_slot(slot);
1da177e4 783 } else {
a1d0abce 784 disable_slot(slot);
1da177e4 785 }
4ebe3450 786 mutex_unlock(&slot->crit_sect);
1da177e4 787 }
1da177e4
LT
788}
789
fca6825a 790static void acpiphp_set_hpp_values(struct pci_bus *bus)
8e7561cf 791{
8e7561cf
RS
792 struct pci_dev *dev;
793
e81995bb
BH
794 list_for_each_entry(dev, &bus->devices, bus_list)
795 pci_configure_slot(dev);
8e7561cf
RS
796}
797
798/*
799 * Remove devices for which we could not assign resources, call
800 * arch specific code to fix-up the bus
801 */
802static void acpiphp_sanitize_bus(struct pci_bus *bus)
803{
d65eba6a 804 struct pci_dev *dev, *tmp;
8e7561cf
RS
805 int i;
806 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
807
2d7c1b77 808 list_for_each_entry_safe_reverse(dev, tmp, &bus->devices, bus_list) {
8e7561cf
RS
809 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
810 struct resource *res = &dev->resource[i];
811 if ((res->flags & type_mask) && !res->start &&
812 res->end) {
813 /* Could not assign a required resources
814 * for this device, remove it */
210647af 815 pci_stop_and_remove_bus_device(dev);
8e7561cf
RS
816 break;
817 }
818 }
819 }
820}
821
1da177e4
LT
822/*
823 * ACPI event handlers
824 */
825
3f327e39
YL
826void acpiphp_check_host_bridge(acpi_handle handle)
827{
828 struct acpiphp_bridge *bridge;
829
830 bridge = acpiphp_handle_to_bridge(handle);
831 if (bridge) {
d42f5da2
RW
832 pci_lock_rescan_remove();
833
3f327e39 834 acpiphp_check_bridge(bridge);
d42f5da2
RW
835
836 pci_unlock_rescan_remove();
3f327e39
YL
837 put_bridge(bridge);
838 }
3f327e39
YL
839}
840
9217a984
RW
841static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot);
842
43e5c091 843static void hotplug_event(acpi_handle handle, u32 type, void *data)
1da177e4 844{
43e5c091 845 struct acpiphp_context *context = data;
bd4674df 846 struct acpiphp_func *func = &context->func;
1da177e4
LT
847 struct acpiphp_bridge *bridge;
848 char objname[64];
849 struct acpi_buffer buffer = { .length = sizeof(objname),
850 .pointer = objname };
6af8bef1 851
43e5c091 852 mutex_lock(&acpiphp_context_lock);
c8ebcf1f 853 bridge = context->bridge;
43e5c091
RW
854 if (bridge)
855 get_bridge(bridge);
1da177e4 856
43e5c091 857 mutex_unlock(&acpiphp_context_lock);
3757b948 858
f41b3261 859 pci_lock_rescan_remove();
1da177e4
LT
860 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
861
862 switch (type) {
863 case ACPI_NOTIFY_BUS_CHECK:
864 /* bus re-enumerate */
bd950799
LT
865 pr_debug("%s: Bus check notify on %s\n", __func__, objname);
866 pr_debug("%s: re-enumerating slots under %s\n",
867 __func__, objname);
43e5c091
RW
868 if (bridge) {
869 acpiphp_check_bridge(bridge);
43e5c091 870 } else {
4ebe3450
RW
871 struct acpiphp_slot *slot = func->slot;
872
9217a984
RW
873 if (slot->flags & SLOT_IS_GOING_AWAY)
874 break;
875
4ebe3450 876 mutex_lock(&slot->crit_sect);
a1d0abce 877 enable_slot(slot);
4ebe3450 878 mutex_unlock(&slot->crit_sect);
43e5c091 879 }
1da177e4
LT
880 break;
881
882 case ACPI_NOTIFY_DEVICE_CHECK:
883 /* device check */
bd950799 884 pr_debug("%s: Device check notify on %s\n", __func__, objname);
a47d8c8e 885 if (bridge) {
43e5c091 886 acpiphp_check_bridge(bridge);
a47d8c8e
RW
887 } else {
888 struct acpiphp_slot *slot = func->slot;
889 int ret;
43e5c091 890
9217a984
RW
891 if (slot->flags & SLOT_IS_GOING_AWAY)
892 break;
893
a47d8c8e
RW
894 /*
895 * Check if anything has changed in the slot and rescan
896 * from the parent if that's the case.
897 */
898 mutex_lock(&slot->crit_sect);
899 ret = acpiphp_rescan_slot(slot);
900 mutex_unlock(&slot->crit_sect);
901 if (ret)
902 acpiphp_check_bridge(func->parent);
903 }
1da177e4
LT
904 break;
905
1da177e4
LT
906 case ACPI_NOTIFY_EJECT_REQUEST:
907 /* request device eject */
bd950799 908 pr_debug("%s: Device eject notify on %s\n", __func__, objname);
ad21d2d0 909 acpiphp_disable_and_eject_slot(func->slot);
1da177e4 910 break;
1da177e4 911 }
6af8bef1 912
f41b3261 913 pci_unlock_rescan_remove();
43e5c091
RW
914 if (bridge)
915 put_bridge(bridge);
21a31013
RW
916}
917
7b98118a 918static void hotplug_event_work(void *data, u32 type)
21a31013 919{
7b98118a
RW
920 struct acpiphp_context *context = data;
921 acpi_handle handle = context->handle;
21a31013 922
21a31013
RW
923 acpi_scan_lock_acquire();
924
7b98118a 925 hotplug_event(handle, type, context);
6af8bef1 926
3757b948 927 acpi_scan_lock_release();
7b98118a 928 acpi_evaluate_hotplug_ost(handle, type, ACPI_OST_SC_SUCCESS, NULL);
bda46dbb 929 put_bridge(context->func.parent);
1da177e4
LT
930}
931
6af8bef1 932/**
87831273 933 * handle_hotplug_event - handle ACPI hotplug event
6af8bef1
PB
934 * @handle: Notify()'ed acpi_handle
935 * @type: Notify code
87831273 936 * @data: pointer to acpiphp_context structure
6af8bef1
PB
937 *
938 * Handles ACPI event notification on slots.
939 */
87831273 940static void handle_hotplug_event(acpi_handle handle, u32 type, void *data)
6af8bef1 941{
87831273 942 struct acpiphp_context *context;
e532e84e 943 u32 ost_code = ACPI_OST_SC_SUCCESS;
87831273 944
5c8d0e1d
RW
945 switch (type) {
946 case ACPI_NOTIFY_BUS_CHECK:
947 case ACPI_NOTIFY_DEVICE_CHECK:
e532e84e 948 break;
5c8d0e1d 949 case ACPI_NOTIFY_EJECT_REQUEST:
e532e84e
RW
950 ost_code = ACPI_OST_SC_EJECT_IN_PROGRESS;
951 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
5c8d0e1d
RW
952 break;
953
954 case ACPI_NOTIFY_DEVICE_WAKE:
955 return;
956
957 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
958 acpi_handle_err(handle, "Device cannot be configured due "
959 "to a frequency mismatch\n");
e532e84e 960 goto out;
5c8d0e1d
RW
961
962 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
963 acpi_handle_err(handle, "Device cannot be configured due "
964 "to a bus mode mismatch\n");
e532e84e 965 goto out;
5c8d0e1d
RW
966
967 case ACPI_NOTIFY_POWER_FAULT:
968 acpi_handle_err(handle, "Device has suffered a power fault\n");
e532e84e 969 goto out;
5c8d0e1d
RW
970
971 default:
972 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type);
e532e84e
RW
973 ost_code = ACPI_OST_SC_UNRECOGNIZED_NOTIFY;
974 goto out;
5c8d0e1d
RW
975 }
976
87831273
RW
977 mutex_lock(&acpiphp_context_lock);
978 context = acpiphp_get_context(handle);
7b98118a 979 if (context && !WARN_ON(context->handle != handle)) {
bda46dbb 980 get_bridge(context->func.parent);
bbd34fcd 981 acpiphp_put_context(context);
7b98118a 982 acpi_hotplug_execute(hotplug_event_work, context, type);
e532e84e
RW
983 mutex_unlock(&acpiphp_context_lock);
984 return;
87831273
RW
985 }
986 mutex_unlock(&acpiphp_context_lock);
e532e84e
RW
987 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
988
989 out:
990 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
8e7561cf 991}
1da177e4 992
3b63aaa7
JL
993/*
994 * Create hotplug slots for the PCI bus.
995 * It should always return 0 to avoid skipping following notifiers.
1da177e4 996 */
be1c9de9 997void acpiphp_enumerate_slots(struct pci_bus *bus)
1da177e4 998{
3b63aaa7 999 struct acpiphp_bridge *bridge;
2552002a
RW
1000 acpi_handle handle;
1001 acpi_status status;
1da177e4 1002
3b63aaa7
JL
1003 if (acpiphp_disabled)
1004 return;
1da177e4 1005
be1c9de9 1006 handle = ACPI_HANDLE(bus->bridge);
bbd34fcd 1007 if (!handle)
3b63aaa7 1008 return;
1da177e4 1009
3b63aaa7 1010 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
cb7b8ced
RW
1011 if (!bridge) {
1012 acpi_handle_err(handle, "No memory for bridge object\n");
3b63aaa7
JL
1013 return;
1014 }
1015
ad41dd9d 1016 INIT_LIST_HEAD(&bridge->slots);
3d54a316 1017 kref_init(&bridge->ref);
3b63aaa7
JL
1018 bridge->pci_dev = pci_dev_get(bus->self);
1019 bridge->pci_bus = bus;
1020
1021 /*
1022 * Grab a ref to the subordinate PCI bus in case the bus is
1023 * removed via PCI core logical hotplug. The ref pins the bus
1024 * (which we access during module unload).
1025 */
1026 get_device(&bus->dev);
1027
bbd34fcd
RW
1028 if (!pci_is_root_bus(bridge->pci_bus)) {
1029 struct acpiphp_context *context;
1030
1031 /*
1032 * This bridge should have been registered as a hotplug function
fd3cfebe
RW
1033 * under its parent, so the context should be there, unless the
1034 * parent is going to be handled by pciehp, in which case this
1035 * bridge is not interesting to us either.
bbd34fcd
RW
1036 */
1037 mutex_lock(&acpiphp_context_lock);
1038 context = acpiphp_get_context(handle);
fd3cfebe 1039 if (!context) {
bbd34fcd
RW
1040 mutex_unlock(&acpiphp_context_lock);
1041 put_device(&bus->dev);
5d449457 1042 pci_dev_put(bridge->pci_dev);
bbd34fcd
RW
1043 kfree(bridge);
1044 return;
1045 }
1046 bridge->context = context;
1047 context->bridge = bridge;
1048 /* Get a reference to the parent bridge. */
bda46dbb 1049 get_bridge(context->func.parent);
bbd34fcd
RW
1050 mutex_unlock(&acpiphp_context_lock);
1051 }
1052
2552002a
RW
1053 /* must be added to the list prior to calling register_slot */
1054 mutex_lock(&bridge_mutex);
1055 list_add(&bridge->list, &bridge_list);
1056 mutex_unlock(&bridge_mutex);
1057
1058 /* register all slot objects under this bridge */
89373a55 1059 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
2552002a
RW
1060 register_slot, NULL, bridge, NULL);
1061 if (ACPI_FAILURE(status)) {
89373a55 1062 acpi_handle_err(handle, "failed to register slots\n");
bbd34fcd
RW
1063 cleanup_bridge(bridge);
1064 put_bridge(bridge);
2552002a 1065 }
3b63aaa7
JL
1066}
1067
1068/* Destroy hotplug slots associated with the PCI bus */
1069void acpiphp_remove_slots(struct pci_bus *bus)
1da177e4 1070{
ff181e5a 1071 struct acpiphp_bridge *bridge;
3b63aaa7
JL
1072
1073 if (acpiphp_disabled)
1074 return;
1075
ff181e5a
RW
1076 mutex_lock(&bridge_mutex);
1077 list_for_each_entry(bridge, &bridge_list, list)
3b63aaa7 1078 if (bridge->pci_bus == bus) {
ff181e5a 1079 mutex_unlock(&bridge_mutex);
3b63aaa7 1080 cleanup_bridge(bridge);
3d54a316 1081 put_bridge(bridge);
ff181e5a 1082 return;
3b63aaa7 1083 }
ff181e5a
RW
1084
1085 mutex_unlock(&bridge_mutex);
1da177e4
LT
1086}
1087
1da177e4
LT
1088/**
1089 * acpiphp_enable_slot - power on slot
26e6c66e 1090 * @slot: ACPI PHP slot
1da177e4
LT
1091 */
1092int acpiphp_enable_slot(struct acpiphp_slot *slot)
1093{
9217a984
RW
1094 pci_lock_rescan_remove();
1095
1096 if (slot->flags & SLOT_IS_GOING_AWAY)
1097 return -ENODEV;
1098
6aa4cdd0 1099 mutex_lock(&slot->crit_sect);
bc805a55 1100 /* configure all functions */
55502ddb 1101 if (!(slot->flags & SLOT_ENABLED))
a1d0abce 1102 enable_slot(slot);
55502ddb 1103
6aa4cdd0 1104 mutex_unlock(&slot->crit_sect);
9217a984
RW
1105
1106 pci_unlock_rescan_remove();
a1d0abce 1107 return 0;
1da177e4
LT
1108}
1109
1da177e4 1110/**
ad21d2d0 1111 * acpiphp_disable_and_eject_slot - power off and eject slot
26e6c66e 1112 * @slot: ACPI PHP slot
1da177e4 1113 */
9217a984 1114static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
1da177e4 1115{
ad21d2d0 1116 struct acpiphp_func *func;
9217a984
RW
1117
1118 if (slot->flags & SLOT_IS_GOING_AWAY)
1119 return -ENODEV;
1da177e4 1120
6aa4cdd0 1121 mutex_lock(&slot->crit_sect);
1da177e4
LT
1122
1123 /* unconfigure all functions */
a1d0abce 1124 disable_slot(slot);
1da177e4 1125
ad21d2d0
MW
1126 list_for_each_entry(func, &slot->funcs, sibling)
1127 if (func->flags & FUNC_HAS_EJ0) {
1128 acpi_handle handle = func_to_handle(func);
1129
1130 if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
1131 acpi_handle_err(handle, "_EJ0 failed\n");
1132
1133 break;
1134 }
1135
6aa4cdd0 1136 mutex_unlock(&slot->crit_sect);
9217a984 1137 return 0;
1da177e4
LT
1138}
1139
9217a984
RW
1140int acpiphp_disable_slot(struct acpiphp_slot *slot)
1141{
1142 int ret;
1143
1144 pci_lock_rescan_remove();
1145 ret = acpiphp_disable_and_eject_slot(slot);
1146 pci_unlock_rescan_remove();
1147 return ret;
1148}
1da177e4
LT
1149
1150/*
1151 * slot enabled: 1
1152 * slot disabled: 0
1153 */
1154u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1155{
bc805a55 1156 return (slot->flags & SLOT_ENABLED);
1da177e4
LT
1157}
1158
1da177e4 1159/*
35ae61a0
MT
1160 * latch open: 1
1161 * latch closed: 0
1da177e4
LT
1162 */
1163u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1164{
1ad3790a 1165 return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI);
1da177e4
LT
1166}
1167
1da177e4
LT
1168/*
1169 * adapter presence : 1
1170 * absence : 0
1171 */
1172u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1173{
1ad3790a 1174 return !!get_slot_status(slot);
1da177e4 1175}
This page took 0.833304 seconds and 5 git commands to generate.