rtl8192e: Use PCI Express Capability accessors
[linux-2.6-block.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
1da177e4
LT
42#include <linux/init.h>
43#include <linux/module.h>
44
45#include <linux/kernel.h>
46#include <linux/pci.h>
7a54f25c 47#include <linux/pci_hotplug.h>
e8c331e9 48#include <linux/pci-acpi.h>
6aa4cdd0 49#include <linux/mutex.h>
5a0e3ad6 50#include <linux/slab.h>
6af8bef1 51#include <linux/acpi.h>
1da177e4
LT
52
53#include "../pci.h"
1da177e4
LT
54#include "acpiphp.h"
55
56static LIST_HEAD(bridge_list);
57
58#define MY_NAME "acpiphp_glue"
59
60static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
8e5dce35 61static void acpiphp_sanitize_bus(struct pci_bus *bus);
fca6825a 62static void acpiphp_set_hpp_values(struct pci_bus *bus);
2b85e130 63static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
8e5dce35 64
5a340ed8 65/* callback routine to check for the existence of a pci dock device */
4e8662bb
KA
66static acpi_status
67is_pci_dock_device(acpi_handle handle, u32 lvl, void *context, void **rv)
68{
69 int *count = (int *)context;
70
71 if (is_dock_device(handle)) {
72 (*count)++;
73 return AE_CTRL_TERMINATE;
74 } else {
75 return AE_OK;
76 }
77}
78
4e8662bb
KA
79/*
80 * the _DCK method can do funny things... and sometimes not
81 * hah-hah funny.
82 *
83 * TBD - figure out a way to only call fixups for
84 * systems that require them.
85 */
86static int post_dock_fixups(struct notifier_block *nb, unsigned long val,
87 void *v)
88{
89 struct acpiphp_func *func = container_of(nb, struct acpiphp_func, nb);
90 struct pci_bus *bus = func->slot->bridge->pci_bus;
91 u32 buses;
92
93 if (!bus->self)
94 return NOTIFY_OK;
95
96 /* fixup bad _DCK function that rewrites
97 * secondary bridge on slot
98 */
99 pci_read_config_dword(bus->self,
100 PCI_PRIMARY_BUS,
101 &buses);
102
b918c62e 103 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
4e8662bb 104 buses = (buses & 0xff000000)
2a9d3521 105 | ((unsigned int)(bus->primary) << 0)
b918c62e
YL
106 | ((unsigned int)(bus->busn_res.start) << 8)
107 | ((unsigned int)(bus->busn_res.end) << 16);
4e8662bb
KA
108 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
109 }
110 return NOTIFY_OK;
111}
112
113
9c8b04be 114static const struct acpi_dock_ops acpiphp_dock_ops = {
1253f7aa
SL
115 .handler = handle_hotplug_event_func,
116};
1da177e4
LT
117
118/* callback routine to register each ACPI PCI slot object */
119static acpi_status
120register_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
121{
122 struct acpiphp_bridge *bridge = (struct acpiphp_bridge *)context;
123 struct acpiphp_slot *slot;
124 struct acpiphp_func *newfunc;
125 acpi_handle tmp;
126 acpi_status status = AE_OK;
27663c58 127 unsigned long long adr, sun;
e27da381 128 int device, function, retval;
e8c331e9 129 struct pci_bus *pbus = bridge->pci_bus;
9d911d79 130 struct pci_dev *pdev;
1da177e4 131
e8c331e9 132 if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle))
1da177e4
LT
133 return AE_OK;
134
dfb117b3
BH
135 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
136 if (ACPI_FAILURE(status)) {
137 warn("can't evaluate _ADR (%#x)\n", status);
138 return AE_OK;
139 }
140
141 device = (adr >> 16) & 0xffff;
142 function = adr & 0xffff;
143
619a5182
RW
144 pdev = pbus->self;
145 if (pdev && pci_is_pcie(pdev)) {
146 tmp = acpi_find_root_bridge_handle(pdev);
147 if (tmp) {
148 struct acpi_pci_root *root = acpi_pci_find_root(tmp);
149
150 if (root && (root->osc_control_set &
151 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
152 return AE_OK;
153 }
154 }
155
f5afe806 156 newfunc = kzalloc(sizeof(struct acpiphp_func), GFP_KERNEL);
1da177e4
LT
157 if (!newfunc)
158 return AE_NO_MEMORY;
1da177e4
LT
159
160 INIT_LIST_HEAD(&newfunc->sibling);
161 newfunc->handle = handle;
162 newfunc->function = function;
56ee325e
MG
163
164 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
20416ea5 165 newfunc->flags = FUNC_HAS_EJ0;
1da177e4
LT
166
167 if (ACPI_SUCCESS(acpi_get_handle(handle, "_STA", &tmp)))
168 newfunc->flags |= FUNC_HAS_STA;
169
170 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS0", &tmp)))
171 newfunc->flags |= FUNC_HAS_PS0;
172
173 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS3", &tmp)))
174 newfunc->flags |= FUNC_HAS_PS3;
175
4e8662bb 176 if (ACPI_SUCCESS(acpi_get_handle(handle, "_DCK", &tmp)))
20416ea5 177 newfunc->flags |= FUNC_HAS_DCK;
20416ea5 178
1da177e4 179 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
95b38b3f
KA
180 if (ACPI_FAILURE(status)) {
181 /*
182 * use the count of the number of slots we've found
183 * for the number of the slot
184 */
185 sun = bridge->nr_slots+1;
186 }
1da177e4
LT
187
188 /* search for objects that share the same slot */
189 for (slot = bridge->slots; slot; slot = slot->next)
190 if (slot->device == device) {
191 if (slot->sun != sun)
192 warn("sibling found, but _SUN doesn't match!\n");
193 break;
194 }
195
196 if (!slot) {
f5afe806 197 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
1da177e4
LT
198 if (!slot) {
199 kfree(newfunc);
200 return AE_NO_MEMORY;
201 }
202
1da177e4 203 slot->bridge = bridge;
1da177e4
LT
204 slot->device = device;
205 slot->sun = sun;
206 INIT_LIST_HEAD(&slot->funcs);
6aa4cdd0 207 mutex_init(&slot->crit_sect);
1da177e4
LT
208
209 slot->next = bridge->slots;
210 bridge->slots = slot;
211
212 bridge->nr_slots++;
213
b6adc195 214 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
e8c331e9 215 slot->sun, pci_domain_nr(pbus), pbus->number, device);
e27da381
MT
216 retval = acpiphp_register_hotplug_slot(slot);
217 if (retval) {
f46753c5 218 if (retval == -EBUSY)
b6adc195 219 warn("Slot %llu already registered by another "
f46753c5
AC
220 "hotplug driver\n", slot->sun);
221 else
222 warn("acpiphp_register_hotplug_slot failed "
223 "(err code = 0x%x)\n", retval);
e27da381
MT
224 goto err_exit;
225 }
1da177e4
LT
226 }
227
228 newfunc->slot = slot;
229 list_add_tail(&newfunc->sibling, &slot->funcs);
230
9d911d79
AC
231 pdev = pci_get_slot(pbus, PCI_DEVFN(device, function));
232 if (pdev) {
1da177e4 233 slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON);
9d911d79 234 pci_dev_put(pdev);
1da177e4
LT
235 }
236
4e8662bb
KA
237 if (is_dock_device(handle)) {
238 /* we don't want to call this device's _EJ0
239 * because we want the dock notify handler
240 * to call it after it calls _DCK
20416ea5
KA
241 */
242 newfunc->flags &= ~FUNC_HAS_EJ0;
4e8662bb 243 if (register_hotplug_dock_device(handle,
1253f7aa 244 &acpiphp_dock_ops, newfunc))
4e8662bb
KA
245 dbg("failed to register dock device\n");
246
247 /* we need to be notified when dock events happen
248 * outside of the hotplug operation, since we may
249 * need to do fixups before we can hotplug.
250 */
251 newfunc->nb.notifier_call = post_dock_fixups;
252 if (register_dock_notifier(&newfunc->nb))
253 dbg("failed to register a dock notifier");
20416ea5
KA
254 }
255
1da177e4 256 /* install notify handler */
20416ea5
KA
257 if (!(newfunc->flags & FUNC_HAS_DCK)) {
258 status = acpi_install_notify_handler(handle,
1da177e4
LT
259 ACPI_SYSTEM_NOTIFY,
260 handle_hotplug_event_func,
261 newfunc);
262
20416ea5
KA
263 if (ACPI_FAILURE(status))
264 err("failed to register interrupt notify handler\n");
265 } else
266 status = AE_OK;
1da177e4 267
20416ea5 268 return status;
e27da381
MT
269
270 err_exit:
271 bridge->nr_slots--;
272 bridge->slots = slot->next;
273 kfree(slot);
274 kfree(newfunc);
275
276 return AE_OK;
1da177e4
LT
277}
278
279
280/* see if it's worth looking at this bridge */
6edd7679 281static int detect_ejectable_slots(acpi_handle handle)
1da177e4 282{
7f538669 283 int found = acpi_pci_detect_ejectable(handle);
e8c331e9 284 if (!found) {
6edd7679 285 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
2263576c 286 is_pci_dock_device, NULL, (void *)&found, NULL);
e8c331e9
KK
287 }
288 return found;
1da177e4
LT
289}
290
1da177e4
LT
291/* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
292static void init_bridge_misc(struct acpiphp_bridge *bridge)
293{
294 acpi_status status;
295
e27da381
MT
296 /* must be added to the list prior to calling register_slot */
297 list_add(&bridge->list, &bridge_list);
298
1da177e4
LT
299 /* register all slot objects under this bridge */
300 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, (u32)1,
2263576c 301 register_slot, NULL, bridge, NULL);
e27da381
MT
302 if (ACPI_FAILURE(status)) {
303 list_del(&bridge->list);
304 return;
305 }
1da177e4
LT
306
307 /* install notify handler */
8e7561cf 308 if (bridge->type != BRIDGE_TYPE_HOST) {
551bcb75
MT
309 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
310 status = acpi_remove_notify_handler(bridge->func->handle,
311 ACPI_SYSTEM_NOTIFY,
312 handle_hotplug_event_func);
313 if (ACPI_FAILURE(status))
314 err("failed to remove notify handler\n");
315 }
8e7561cf 316 status = acpi_install_notify_handler(bridge->handle,
1da177e4
LT
317 ACPI_SYSTEM_NOTIFY,
318 handle_hotplug_event_bridge,
319 bridge);
320
8e7561cf
RS
321 if (ACPI_FAILURE(status)) {
322 err("failed to register interrupt notify handler\n");
323 }
1da177e4 324 }
1da177e4
LT
325}
326
327
551bcb75
MT
328/* find acpiphp_func from acpiphp_bridge */
329static struct acpiphp_func *acpiphp_bridge_handle_to_function(acpi_handle handle)
330{
551bcb75
MT
331 struct acpiphp_bridge *bridge;
332 struct acpiphp_slot *slot;
333 struct acpiphp_func *func;
334
58c08628 335 list_for_each_entry(bridge, &bridge_list, list) {
551bcb75 336 for (slot = bridge->slots; slot; slot = slot->next) {
58c08628 337 list_for_each_entry(func, &slot->funcs, sibling) {
551bcb75
MT
338 if (func->handle == handle)
339 return func;
340 }
341 }
342 }
343
344 return NULL;
345}
346
347
348static inline void config_p2p_bridge_flags(struct acpiphp_bridge *bridge)
349{
350 acpi_handle dummy_handle;
351
352 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
353 "_STA", &dummy_handle)))
354 bridge->flags |= BRIDGE_HAS_STA;
355
356 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
357 "_EJ0", &dummy_handle)))
358 bridge->flags |= BRIDGE_HAS_EJ0;
359
360 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
361 "_PS0", &dummy_handle)))
362 bridge->flags |= BRIDGE_HAS_PS0;
363
364 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
365 "_PS3", &dummy_handle)))
366 bridge->flags |= BRIDGE_HAS_PS3;
367
368 /* is this ejectable p2p bridge? */
369 if (bridge->flags & BRIDGE_HAS_EJ0) {
370 struct acpiphp_func *func;
371
372 dbg("found ejectable p2p bridge\n");
373
374 /* make link between PCI bridge and PCI function */
375 func = acpiphp_bridge_handle_to_function(bridge->handle);
376 if (!func)
377 return;
378 bridge->func = func;
379 func->bridge = bridge;
380 }
381}
382
383
1da177e4 384/* allocate and initialize host bridge data structure */
6edd7679 385static void add_host_bridge(acpi_handle *handle)
1da177e4 386{
1da177e4 387 struct acpiphp_bridge *bridge;
6edd7679 388 struct acpi_pci_root *root = acpi_pci_find_root(handle);
1da177e4 389
f5afe806 390 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
1da177e4
LT
391 if (bridge == NULL)
392 return;
393
1da177e4
LT
394 bridge->type = BRIDGE_TYPE_HOST;
395 bridge->handle = handle;
1da177e4 396
6edd7679 397 bridge->pci_bus = root->bus;
1da177e4 398
1da177e4
LT
399 init_bridge_misc(bridge);
400}
401
402
403/* allocate and initialize PCI-to-PCI bridge data structure */
6edd7679 404static void add_p2p_bridge(acpi_handle *handle)
1da177e4
LT
405{
406 struct acpiphp_bridge *bridge;
1da177e4 407
f5afe806 408 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
1da177e4
LT
409 if (bridge == NULL) {
410 err("out of memory\n");
411 return;
412 }
413
1da177e4
LT
414 bridge->type = BRIDGE_TYPE_P2P;
415 bridge->handle = handle;
551bcb75 416 config_p2p_bridge_flags(bridge);
1da177e4 417
6edd7679
AC
418 bridge->pci_dev = acpi_get_pci_dev(handle);
419 bridge->pci_bus = bridge->pci_dev->subordinate;
1da177e4
LT
420 if (!bridge->pci_bus) {
421 err("This is not a PCI-to-PCI bridge!\n");
42f49a6a 422 goto err;
1da177e4
LT
423 }
424
5d4a4b25
AC
425 /*
426 * Grab a ref to the subordinate PCI bus in case the bus is
427 * removed via PCI core logical hotplug. The ref pins the bus
428 * (which we access during module unload).
429 */
430 get_device(&bridge->pci_bus->dev);
1da177e4 431
1da177e4 432 init_bridge_misc(bridge);
42f49a6a
RS
433 return;
434 err:
6edd7679 435 pci_dev_put(bridge->pci_dev);
42f49a6a
RS
436 kfree(bridge);
437 return;
1da177e4
LT
438}
439
440
441/* callback routine to find P2P bridges */
442static acpi_status
443find_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
444{
445 acpi_status status;
1da177e4 446 struct pci_dev *dev;
1da177e4 447
6edd7679 448 dev = acpi_get_pci_dev(handle);
42f49a6a
RS
449 if (!dev || !dev->subordinate)
450 goto out;
1da177e4
LT
451
452 /* check if this bridge has ejectable slots */
6edd7679 453 if ((detect_ejectable_slots(handle) > 0)) {
1da177e4 454 dbg("found PCI-to-PCI bridge at PCI %s\n", pci_name(dev));
6edd7679 455 add_p2p_bridge(handle);
1da177e4
LT
456 }
457
7c8f25da
KK
458 /* search P2P bridges under this p2p bridge */
459 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
2263576c 460 find_p2p_bridge, NULL, NULL, NULL);
7c8f25da 461 if (ACPI_FAILURE(status))
551bcb75 462 warn("find_p2p_bridge failed (error code = 0x%x)\n", status);
7c8f25da 463
42f49a6a
RS
464 out:
465 pci_dev_put(dev);
1da177e4
LT
466 return AE_OK;
467}
468
469
470/* find hot-pluggable slots, and then find P2P bridge */
471static int add_bridge(acpi_handle handle)
472{
473 acpi_status status;
27663c58 474 unsigned long long tmp;
1da177e4
LT
475 acpi_handle dummy_handle;
476
477 /* if the bridge doesn't have _STA, we assume it is always there */
478 status = acpi_get_handle(handle, "_STA", &dummy_handle);
479 if (ACPI_SUCCESS(status)) {
480 status = acpi_evaluate_integer(handle, "_STA", NULL, &tmp);
481 if (ACPI_FAILURE(status)) {
66bef8c0 482 dbg("%s: _STA evaluation failure\n", __func__);
1da177e4
LT
483 return 0;
484 }
485 if ((tmp & ACPI_STA_FUNCTIONING) == 0)
486 /* don't register this object */
487 return 0;
488 }
489
1da177e4 490 /* check if this bridge has ejectable slots */
6edd7679 491 if (detect_ejectable_slots(handle) > 0) {
1da177e4 492 dbg("found PCI host-bus bridge with hot-pluggable slots\n");
6edd7679 493 add_host_bridge(handle);
1da177e4
LT
494 }
495
1da177e4
LT
496 /* search P2P bridges under this host bridge */
497 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
2263576c 498 find_p2p_bridge, NULL, NULL, NULL);
1da177e4
LT
499
500 if (ACPI_FAILURE(status))
551bcb75 501 warn("find_p2p_bridge failed (error code = 0x%x)\n", status);
1da177e4
LT
502
503 return 0;
504}
505
42f49a6a
RS
506static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
507{
58c08628
AC
508 struct acpiphp_bridge *bridge;
509
510 list_for_each_entry(bridge, &bridge_list, list)
42f49a6a
RS
511 if (bridge->handle == handle)
512 return bridge;
42f49a6a
RS
513
514 return NULL;
515}
1da177e4 516
364d5094 517static void cleanup_bridge(struct acpiphp_bridge *bridge)
1da177e4 518{
58c08628
AC
519 struct acpiphp_slot *slot, *next;
520 struct acpiphp_func *func, *tmp;
42f49a6a 521 acpi_status status;
364d5094 522 acpi_handle handle = bridge->handle;
42f49a6a
RS
523
524 status = acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
525 handle_hotplug_event_bridge);
526 if (ACPI_FAILURE(status))
527 err("failed to remove notify handler\n");
528
551bcb75
MT
529 if ((bridge->type != BRIDGE_TYPE_HOST) &&
530 ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func)) {
531 status = acpi_install_notify_handler(bridge->func->handle,
532 ACPI_SYSTEM_NOTIFY,
533 handle_hotplug_event_func,
534 bridge->func);
535 if (ACPI_FAILURE(status))
536 err("failed to install interrupt notify handler\n");
537 }
538
42f49a6a
RS
539 slot = bridge->slots;
540 while (slot) {
58c08628
AC
541 next = slot->next;
542 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) {
4e8662bb
KA
543 if (is_dock_device(func->handle)) {
544 unregister_hotplug_dock_device(func->handle);
545 unregister_dock_notifier(&func->nb);
546 }
20416ea5
KA
547 if (!(func->flags & FUNC_HAS_DCK)) {
548 status = acpi_remove_notify_handler(func->handle,
42f49a6a
RS
549 ACPI_SYSTEM_NOTIFY,
550 handle_hotplug_event_func);
20416ea5
KA
551 if (ACPI_FAILURE(status))
552 err("failed to remove notify handler\n");
553 }
58c08628 554 list_del(&func->sibling);
42f49a6a
RS
555 kfree(func);
556 }
e27da381
MT
557 acpiphp_unregister_hotplug_slot(slot);
558 list_del(&slot->funcs);
42f49a6a
RS
559 kfree(slot);
560 slot = next;
561 }
562
5d4a4b25
AC
563 /*
564 * Only P2P bridges have a pci_dev
565 */
566 if (bridge->pci_dev)
567 put_device(&bridge->pci_bus->dev);
568
42f49a6a
RS
569 pci_dev_put(bridge->pci_dev);
570 list_del(&bridge->list);
571 kfree(bridge);
1da177e4
LT
572}
573
364d5094
RS
574static acpi_status
575cleanup_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
576{
577 struct acpiphp_bridge *bridge;
578
551bcb75
MT
579 /* cleanup p2p bridges under this P2P bridge
580 in a depth-first manner */
581 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
2263576c 582 cleanup_p2p_bridge, NULL, NULL, NULL);
551bcb75 583
a13307ce
AC
584 bridge = acpiphp_handle_to_bridge(handle);
585 if (bridge)
586 cleanup_bridge(bridge);
587
364d5094
RS
588 return AE_OK;
589}
590
591static void remove_bridge(acpi_handle handle)
592{
593 struct acpiphp_bridge *bridge;
594
551bcb75
MT
595 /* cleanup p2p bridges under this host bridge
596 in a depth-first manner */
597 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2263576c 598 (u32)1, cleanup_p2p_bridge, NULL, NULL, NULL);
551bcb75 599
a13307ce
AC
600 /*
601 * On root bridges with hotplug slots directly underneath (ie,
25985edc 602 * no p2p bridge between), we call cleanup_bridge().
a13307ce
AC
603 *
604 * The else clause cleans up root bridges that either had no
605 * hotplug slots at all, or had a p2p bridge underneath.
606 */
364d5094 607 bridge = acpiphp_handle_to_bridge(handle);
551bcb75 608 if (bridge)
364d5094 609 cleanup_bridge(bridge);
a13307ce
AC
610 else
611 acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
612 handle_hotplug_event_bridge);
364d5094 613}
1da177e4
LT
614
615static int power_on_slot(struct acpiphp_slot *slot)
616{
617 acpi_status status;
618 struct acpiphp_func *func;
1da177e4
LT
619 int retval = 0;
620
621 /* if already enabled, just skip */
622 if (slot->flags & SLOT_POWEREDON)
623 goto err_exit;
624
58c08628 625 list_for_each_entry(func, &slot->funcs, sibling) {
1da177e4 626 if (func->flags & FUNC_HAS_PS0) {
66bef8c0 627 dbg("%s: executing _PS0\n", __func__);
1da177e4
LT
628 status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL);
629 if (ACPI_FAILURE(status)) {
66bef8c0 630 warn("%s: _PS0 failed\n", __func__);
1da177e4
LT
631 retval = -1;
632 goto err_exit;
633 } else
634 break;
635 }
636 }
637
638 /* TBD: evaluate _STA to check if the slot is enabled */
639
640 slot->flags |= SLOT_POWEREDON;
641
642 err_exit:
643 return retval;
644}
645
646
647static int power_off_slot(struct acpiphp_slot *slot)
648{
649 acpi_status status;
650 struct acpiphp_func *func;
1da177e4
LT
651
652 int retval = 0;
653
654 /* if already disabled, just skip */
655 if ((slot->flags & SLOT_POWEREDON) == 0)
656 goto err_exit;
657
58c08628 658 list_for_each_entry(func, &slot->funcs, sibling) {
2f523b15 659 if (func->flags & FUNC_HAS_PS3) {
1da177e4
LT
660 status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL);
661 if (ACPI_FAILURE(status)) {
66bef8c0 662 warn("%s: _PS3 failed\n", __func__);
1da177e4
LT
663 retval = -1;
664 goto err_exit;
665 } else
666 break;
667 }
668 }
669
1da177e4
LT
670 /* TBD: evaluate _STA to check if the slot is disabled */
671
672 slot->flags &= (~SLOT_POWEREDON);
673
674 err_exit:
675 return retval;
676}
677
678
15a1ae74
KA
679
680/**
26e6c66e 681 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
15a1ae74 682 * @bus: bus to start search with
15a1ae74
KA
683 */
684static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
685{
686 struct list_head *tmp;
687 unsigned char max, n;
688
689 /*
690 * pci_bus_max_busnr will return the highest
691 * reserved busnr for all these children.
692 * that is equivalent to the bus->subordinate
693 * value. We don't want to use the parent's
694 * bus->subordinate value because it could have
695 * padding in it.
696 */
b918c62e 697 max = bus->busn_res.start;
15a1ae74
KA
698
699 list_for_each(tmp, &bus->children) {
700 n = pci_bus_max_busnr(pci_bus_b(tmp));
701 if (n > max)
702 max = n;
703 }
704 return max;
705}
706
707
15a1ae74
KA
708/**
709 * acpiphp_bus_add - add a new bus to acpi subsystem
710 * @func: acpiphp_func of the bridge
15a1ae74
KA
711 */
712static int acpiphp_bus_add(struct acpiphp_func *func)
713{
714 acpi_handle phandle;
715 struct acpi_device *device, *pdevice;
716 int ret_val;
717
718 acpi_get_parent(func->handle, &phandle);
719 if (acpi_bus_get_device(phandle, &pdevice)) {
720 dbg("no parent device, assuming NULL\n");
721 pdevice = NULL;
722 }
20416ea5
KA
723 if (!acpi_bus_get_device(func->handle, &device)) {
724 dbg("bus exists... trim\n");
725 /* this shouldn't be in here, so remove
726 * the bus then re-add it...
727 */
728 ret_val = acpi_bus_trim(device, 1);
729 dbg("acpi_bus_trim return %x\n", ret_val);
730 }
731
732 ret_val = acpi_bus_add(&device, pdevice, func->handle,
733 ACPI_BUS_TYPE_DEVICE);
734 if (ret_val) {
735 dbg("error adding bus, %x\n",
736 -ret_val);
737 goto acpiphp_bus_add_out;
15a1ae74 738 }
15a1ae74
KA
739 ret_val = acpi_bus_start(device);
740
741acpiphp_bus_add_out:
742 return ret_val;
743}
744
745
92c9be95
MT
746/**
747 * acpiphp_bus_trim - trim a bus from acpi subsystem
748 * @handle: handle to acpi namespace
92c9be95 749 */
6d47a5e4 750static int acpiphp_bus_trim(acpi_handle handle)
92c9be95
MT
751{
752 struct acpi_device *device;
753 int retval;
754
755 retval = acpi_bus_get_device(handle, &device);
756 if (retval) {
757 dbg("acpi_device not found\n");
758 return retval;
759 }
760
761 retval = acpi_bus_trim(device, 1);
762 if (retval)
763 err("cannot remove from acpi list\n");
764
765 return retval;
766}
15a1ae74 767
d0607050
SL
768static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
769{
770 struct acpiphp_func *func;
771 union acpi_object params[2];
772 struct acpi_object_list arg_list;
773
774 list_for_each_entry(func, &slot->funcs, sibling) {
775 arg_list.count = 2;
776 arg_list.pointer = params;
777 params[0].type = ACPI_TYPE_INTEGER;
778 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
779 params[1].type = ACPI_TYPE_INTEGER;
780 params[1].integer.value = 1;
781 /* _REG is optional, we don't care about if there is failure */
782 acpi_evaluate_object(func->handle, "_REG", &arg_list, NULL);
783 }
784}
785
1da177e4
LT
786/**
787 * enable_device - enable, configure a slot
788 * @slot: slot to be enabled
789 *
790 * This function should be called per *physical slot*,
791 * not per each slot object in ACPI namespace.
1da177e4 792 */
0ab2b57f 793static int __ref enable_device(struct acpiphp_slot *slot)
1da177e4 794{
1da177e4 795 struct pci_dev *dev;
42f49a6a 796 struct pci_bus *bus = slot->bridge->pci_bus;
1da177e4
LT
797 struct acpiphp_func *func;
798 int retval = 0;
42f49a6a 799 int num, max, pass;
551bcb75 800 acpi_status status;
1da177e4
LT
801
802 if (slot->flags & SLOT_ENABLED)
803 goto err_exit;
804
42f49a6a
RS
805 num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
806 if (num == 0) {
f382a086
AK
807 /* Maybe only part of funcs are added. */
808 dbg("No new device found\n");
1da177e4
LT
809 goto err_exit;
810 }
811
15a1ae74 812 max = acpiphp_max_busnr(bus);
42f49a6a
RS
813 for (pass = 0; pass < 2; pass++) {
814 list_for_each_entry(dev, &bus->devices, bus_list) {
815 if (PCI_SLOT(dev->devfn) != slot->device)
816 continue;
817 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
c64b5eea 818 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
42f49a6a 819 max = pci_scan_bridge(bus, dev, max, pass);
92c9be95 820 if (pass && dev->subordinate)
c64b5eea
KA
821 pci_bus_size_bridges(dev->subordinate);
822 }
42f49a6a 823 }
1da177e4
LT
824 }
825
58c08628 826 list_for_each_entry(func, &slot->funcs, sibling)
92c9be95 827 acpiphp_bus_add(func);
92c9be95 828
42f49a6a 829 pci_bus_assign_resources(bus);
8e5dce35 830 acpiphp_sanitize_bus(bus);
fca6825a 831 acpiphp_set_hpp_values(bus);
d0607050 832 acpiphp_set_acpi_region(slot);
8e5dce35 833 pci_enable_bridges(bus);
69643e48
IC
834
835 list_for_each_entry(dev, &bus->devices, bus_list) {
836 /* Assume that newly added devices are powered on already. */
837 if (!dev->is_added)
838 dev->current_state = PCI_D0;
839 }
840
42f49a6a
RS
841 pci_bus_add_devices(bus);
842
f382a086 843 slot->flags |= SLOT_ENABLED;
58c08628 844 list_for_each_entry(func, &slot->funcs, sibling) {
9d911d79
AC
845 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
846 func->function));
f382a086
AK
847 if (!dev) {
848 /* Do not set SLOT_ENABLED flag if some funcs
849 are not added. */
850 slot->flags &= (~SLOT_ENABLED);
551bcb75 851 continue;
f382a086 852 }
551bcb75 853
9d911d79
AC
854 if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE &&
855 dev->hdr_type != PCI_HEADER_TYPE_CARDBUS) {
856 pci_dev_put(dev);
551bcb75 857 continue;
9d911d79 858 }
551bcb75
MT
859
860 status = find_p2p_bridge(func->handle, (u32)1, bus, NULL);
861 if (ACPI_FAILURE(status))
862 warn("find_p2p_bridge failed (error code = 0x%x)\n",
863 status);
9d911d79 864 pci_dev_put(dev);
1da177e4
LT
865 }
866
1da177e4 867
1da177e4
LT
868 err_exit:
869 return retval;
870}
871
d5cdb672
ST
872static void disable_bridges(struct pci_bus *bus)
873{
874 struct pci_dev *dev;
875 list_for_each_entry(dev, &bus->devices, bus_list) {
876 if (dev->subordinate) {
877 disable_bridges(dev->subordinate);
878 pci_disable_device(dev);
879 }
880 }
881}
1da177e4 882
ce29ca3e
AK
883/* return first device in slot, acquiring a reference on it */
884static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
885{
886 struct pci_bus *bus = slot->bridge->pci_bus;
887 struct pci_dev *dev;
888 struct pci_dev *ret = NULL;
889
890 down_read(&pci_bus_sem);
891 list_for_each_entry(dev, &bus->devices, bus_list)
892 if (PCI_SLOT(dev->devfn) == slot->device) {
893 ret = pci_dev_get(dev);
894 break;
895 }
896 up_read(&pci_bus_sem);
897
898 return ret;
899}
900
1da177e4
LT
901/**
902 * disable_device - disable a slot
26e6c66e 903 * @slot: ACPI PHP slot
1da177e4
LT
904 */
905static int disable_device(struct acpiphp_slot *slot)
906{
1da177e4 907 struct acpiphp_func *func;
9d911d79 908 struct pci_dev *pdev;
f382a086 909 struct pci_bus *bus = slot->bridge->pci_bus;
1da177e4 910
f382a086
AK
911 /* The slot will be enabled when func 0 is added, so check
912 func 0 before disable the slot. */
913 pdev = pci_get_slot(bus, PCI_DEVFN(slot->device, 0));
914 if (!pdev)
1da177e4 915 goto err_exit;
638f2933 916 pci_dev_put(pdev);
1da177e4 917
9d911d79 918 list_for_each_entry(func, &slot->funcs, sibling) {
551bcb75
MT
919 if (func->bridge) {
920 /* cleanup p2p bridges under this P2P bridge */
921 cleanup_p2p_bridge(func->bridge->handle,
922 (u32)1, NULL, NULL);
923 func->bridge = NULL;
924 }
ce29ca3e 925 }
551bcb75 926
ce29ca3e
AK
927 /*
928 * enable_device() enumerates all functions in this device via
929 * pci_scan_slot(), whether they have associated ACPI hotplug
930 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
931 * here.
932 */
933 while ((pdev = dev_in_slot(slot))) {
934 pci_stop_bus_device(pdev);
935 if (pdev->subordinate) {
936 disable_bridges(pdev->subordinate);
937 pci_disable_device(pdev);
d5cdb672 938 }
ce29ca3e
AK
939 __pci_remove_bus_device(pdev);
940 pci_dev_put(pdev);
600812ec
ST
941 }
942
9d911d79 943 list_for_each_entry(func, &slot->funcs, sibling) {
92c9be95 944 acpiphp_bus_trim(func->handle);
1da177e4
LT
945 }
946
947 slot->flags &= (~SLOT_ENABLED);
948
9d911d79
AC
949err_exit:
950 return 0;
1da177e4
LT
951}
952
953
954/**
955 * get_slot_status - get ACPI slot status
26e6c66e 956 * @slot: ACPI PHP slot
1da177e4 957 *
26e6c66e
RD
958 * If a slot has _STA for each function and if any one of them
959 * returned non-zero status, return it.
1da177e4 960 *
26e6c66e
RD
961 * If a slot doesn't have _STA and if any one of its functions'
962 * configuration space is configured, return 0x0f as a _STA.
1da177e4 963 *
26e6c66e 964 * Otherwise return 0.
1da177e4
LT
965 */
966static unsigned int get_slot_status(struct acpiphp_slot *slot)
967{
968 acpi_status status;
27663c58 969 unsigned long long sta = 0;
1da177e4 970 u32 dvid;
1da177e4
LT
971 struct acpiphp_func *func;
972
58c08628 973 list_for_each_entry(func, &slot->funcs, sibling) {
1da177e4
LT
974 if (func->flags & FUNC_HAS_STA) {
975 status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta);
976 if (ACPI_SUCCESS(status) && sta)
977 break;
978 } else {
979 pci_bus_read_config_dword(slot->bridge->pci_bus,
980 PCI_DEVFN(slot->device,
981 func->function),
982 PCI_VENDOR_ID, &dvid);
983 if (dvid != 0xffffffff) {
984 sta = ACPI_STA_ALL;
985 break;
986 }
987 }
988 }
989
990 return (unsigned int)sta;
991}
992
8d50e332
RS
993/**
994 * acpiphp_eject_slot - physically eject the slot
26e6c66e 995 * @slot: ACPI PHP slot
8d50e332 996 */
bfceafc5 997int acpiphp_eject_slot(struct acpiphp_slot *slot)
8d50e332
RS
998{
999 acpi_status status;
1000 struct acpiphp_func *func;
8d50e332
RS
1001 struct acpi_object_list arg_list;
1002 union acpi_object arg;
1003
58c08628 1004 list_for_each_entry(func, &slot->funcs, sibling) {
8d50e332
RS
1005 /* We don't want to call _EJ0 on non-existing functions. */
1006 if ((func->flags & FUNC_HAS_EJ0)) {
1007 /* _EJ0 method take one argument */
1008 arg_list.count = 1;
1009 arg_list.pointer = &arg;
1010 arg.type = ACPI_TYPE_INTEGER;
1011 arg.integer.value = 1;
1012
1013 status = acpi_evaluate_object(func->handle, "_EJ0", &arg_list, NULL);
1014 if (ACPI_FAILURE(status)) {
66bef8c0 1015 warn("%s: _EJ0 failed\n", __func__);
8d50e332
RS
1016 return -1;
1017 } else
1018 break;
1019 }
1020 }
1021 return 0;
1022}
1023
1da177e4
LT
1024/**
1025 * acpiphp_check_bridge - re-enumerate devices
26e6c66e 1026 * @bridge: where to begin re-enumeration
1da177e4
LT
1027 *
1028 * Iterate over all slots under this bridge and make sure that if a
1029 * card is present they are enabled, and if not they are disabled.
1030 */
1031static int acpiphp_check_bridge(struct acpiphp_bridge *bridge)
1032{
1033 struct acpiphp_slot *slot;
1034 int retval = 0;
1035 int enabled, disabled;
1036
1037 enabled = disabled = 0;
1038
1039 for (slot = bridge->slots; slot; slot = slot->next) {
1040 unsigned int status = get_slot_status(slot);
1041 if (slot->flags & SLOT_ENABLED) {
1042 if (status == ACPI_STA_ALL)
1043 continue;
1044 retval = acpiphp_disable_slot(slot);
1045 if (retval) {
1046 err("Error occurred in disabling\n");
1047 goto err_exit;
8d50e332
RS
1048 } else {
1049 acpiphp_eject_slot(slot);
1da177e4
LT
1050 }
1051 disabled++;
1052 } else {
1053 if (status != ACPI_STA_ALL)
1054 continue;
1055 retval = acpiphp_enable_slot(slot);
1056 if (retval) {
1057 err("Error occurred in enabling\n");
1058 goto err_exit;
1059 }
1060 enabled++;
1061 }
1062 }
1063
66bef8c0 1064 dbg("%s: %d enabled, %d disabled\n", __func__, enabled, disabled);
1da177e4
LT
1065
1066 err_exit:
1067 return retval;
1068}
1069
fca6825a 1070static void acpiphp_set_hpp_values(struct pci_bus *bus)
8e7561cf 1071{
8e7561cf
RS
1072 struct pci_dev *dev;
1073
e81995bb
BH
1074 list_for_each_entry(dev, &bus->devices, bus_list)
1075 pci_configure_slot(dev);
8e7561cf
RS
1076}
1077
1078/*
1079 * Remove devices for which we could not assign resources, call
1080 * arch specific code to fix-up the bus
1081 */
1082static void acpiphp_sanitize_bus(struct pci_bus *bus)
1083{
1084 struct pci_dev *dev;
1085 int i;
1086 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
1087
1088 list_for_each_entry(dev, &bus->devices, bus_list) {
1089 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
1090 struct resource *res = &dev->resource[i];
1091 if ((res->flags & type_mask) && !res->start &&
1092 res->end) {
1093 /* Could not assign a required resources
1094 * for this device, remove it */
210647af 1095 pci_stop_and_remove_bus_device(dev);
8e7561cf
RS
1096 break;
1097 }
1098 }
1099 }
1100}
1101
1102/* Program resources in newly inserted bridge */
1103static int acpiphp_configure_bridge (acpi_handle handle)
1104{
7f538669
AC
1105 struct pci_bus *bus;
1106
1107 if (acpi_is_root_bridge(handle)) {
1108 struct acpi_pci_root *root = acpi_pci_find_root(handle);
1109 bus = root->bus;
1110 } else {
1111 struct pci_dev *pdev = acpi_get_pci_dev(handle);
1112 bus = pdev->subordinate;
1113 pci_dev_put(pdev);
1114 }
8e7561cf
RS
1115
1116 pci_bus_size_bridges(bus);
1117 pci_bus_assign_resources(bus);
1118 acpiphp_sanitize_bus(bus);
fca6825a 1119 acpiphp_set_hpp_values(bus);
8e7561cf
RS
1120 pci_enable_bridges(bus);
1121 return 0;
1122}
1123
1124static void handle_bridge_insertion(acpi_handle handle, u32 type)
1125{
1126 struct acpi_device *device, *pdevice;
1127 acpi_handle phandle;
1128
1129 if ((type != ACPI_NOTIFY_BUS_CHECK) &&
1130 (type != ACPI_NOTIFY_DEVICE_CHECK)) {
1131 err("unexpected notification type %d\n", type);
1132 return;
1133 }
1134
1135 acpi_get_parent(handle, &phandle);
1136 if (acpi_bus_get_device(phandle, &pdevice)) {
1137 dbg("no parent device, assuming NULL\n");
1138 pdevice = NULL;
1139 }
1140 if (acpi_bus_add(&device, pdevice, handle, ACPI_BUS_TYPE_DEVICE)) {
1141 err("cannot add bridge to acpi list\n");
1142 return;
1143 }
1144 if (!acpiphp_configure_bridge(handle) &&
1145 !acpi_bus_start(device))
1146 add_bridge(handle);
1147 else
1148 err("cannot configure and start bridge\n");
1149
1150}
1151
1da177e4
LT
1152/*
1153 * ACPI event handlers
1154 */
1155
0bbd6424
GH
1156static acpi_status
1157count_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1158{
1159 int *count = (int *)context;
1160 struct acpiphp_bridge *bridge;
1161
1162 bridge = acpiphp_handle_to_bridge(handle);
1163 if (bridge)
1164 (*count)++;
1165 return AE_OK ;
1166}
1167
1168static acpi_status
1169check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1170{
1171 struct acpiphp_bridge *bridge;
1172 char objname[64];
1173 struct acpi_buffer buffer = { .length = sizeof(objname),
1174 .pointer = objname };
1175
1176 bridge = acpiphp_handle_to_bridge(handle);
1177 if (bridge) {
1178 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1179 dbg("%s: re-enumerating slots under %s\n",
66bef8c0 1180 __func__, objname);
0bbd6424
GH
1181 acpiphp_check_bridge(bridge);
1182 }
1183 return AE_OK ;
1184}
1185
6af8bef1
PB
1186struct acpiphp_hp_work {
1187 struct work_struct work;
1188 acpi_handle handle;
1189 u32 type;
1190 void *context;
1191};
1192
1193static void alloc_acpiphp_hp_work(acpi_handle handle, u32 type,
1194 void *context,
1195 void (*func)(struct work_struct *work))
1196{
1197 struct acpiphp_hp_work *hp_work;
1198 int ret;
1199
1200 hp_work = kmalloc(sizeof(*hp_work), GFP_KERNEL);
1201 if (!hp_work)
1202 return;
1203
1204 hp_work->handle = handle;
1205 hp_work->type = type;
1206 hp_work->context = context;
1207
1208 INIT_WORK(&hp_work->work, func);
1209 ret = queue_work(kacpi_hotplug_wq, &hp_work->work);
1210 if (!ret)
1211 kfree(hp_work);
1212}
1213
1214static void _handle_hotplug_event_bridge(struct work_struct *work)
1da177e4
LT
1215{
1216 struct acpiphp_bridge *bridge;
1217 char objname[64];
1218 struct acpi_buffer buffer = { .length = sizeof(objname),
1219 .pointer = objname };
8e7561cf 1220 struct acpi_device *device;
0bbd6424 1221 int num_sub_bridges = 0;
6af8bef1
PB
1222 struct acpiphp_hp_work *hp_work;
1223 acpi_handle handle;
1224 u32 type;
1225
1226 hp_work = container_of(work, struct acpiphp_hp_work, work);
1227 handle = hp_work->handle;
1228 type = hp_work->type;
1da177e4 1229
8e7561cf
RS
1230 if (acpi_bus_get_device(handle, &device)) {
1231 /* This bridge must have just been physically inserted */
1232 handle_bridge_insertion(handle, type);
6af8bef1 1233 goto out;
8e7561cf
RS
1234 }
1235
1236 bridge = acpiphp_handle_to_bridge(handle);
0bbd6424
GH
1237 if (type == ACPI_NOTIFY_BUS_CHECK) {
1238 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, ACPI_UINT32_MAX,
2263576c 1239 count_sub_bridges, NULL, &num_sub_bridges, NULL);
0bbd6424
GH
1240 }
1241
1242 if (!bridge && !num_sub_bridges) {
8e7561cf 1243 err("cannot get bridge info\n");
6af8bef1 1244 goto out;
8e7561cf 1245 }
1da177e4
LT
1246
1247 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1248
1249 switch (type) {
1250 case ACPI_NOTIFY_BUS_CHECK:
1251 /* bus re-enumerate */
66bef8c0 1252 dbg("%s: Bus check notify on %s\n", __func__, objname);
0bbd6424
GH
1253 if (bridge) {
1254 dbg("%s: re-enumerating slots under %s\n",
66bef8c0 1255 __func__, objname);
0bbd6424
GH
1256 acpiphp_check_bridge(bridge);
1257 }
1258 if (num_sub_bridges)
1259 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2263576c 1260 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
1da177e4
LT
1261 break;
1262
1263 case ACPI_NOTIFY_DEVICE_CHECK:
1264 /* device check */
66bef8c0 1265 dbg("%s: Device check notify on %s\n", __func__, objname);
1da177e4
LT
1266 acpiphp_check_bridge(bridge);
1267 break;
1268
1269 case ACPI_NOTIFY_DEVICE_WAKE:
1270 /* wake event */
66bef8c0 1271 dbg("%s: Device wake notify on %s\n", __func__, objname);
1da177e4
LT
1272 break;
1273
1274 case ACPI_NOTIFY_EJECT_REQUEST:
1275 /* request device eject */
66bef8c0 1276 dbg("%s: Device eject notify on %s\n", __func__, objname);
551bcb75
MT
1277 if ((bridge->type != BRIDGE_TYPE_HOST) &&
1278 (bridge->flags & BRIDGE_HAS_EJ0)) {
1279 struct acpiphp_slot *slot;
1280 slot = bridge->func->slot;
1281 if (!acpiphp_disable_slot(slot))
1282 acpiphp_eject_slot(slot);
1283 }
1da177e4
LT
1284 break;
1285
1286 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1287 printk(KERN_ERR "Device %s cannot be configured due"
1288 " to a frequency mismatch\n", objname);
1289 break;
1290
1291 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1292 printk(KERN_ERR "Device %s cannot be configured due"
1293 " to a bus mode mismatch\n", objname);
1294 break;
1295
1296 case ACPI_NOTIFY_POWER_FAULT:
1297 printk(KERN_ERR "Device %s has suffered a power fault\n",
1298 objname);
1299 break;
1300
1301 default:
1302 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1303 break;
1304 }
6af8bef1
PB
1305
1306out:
1307 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
1da177e4
LT
1308}
1309
1da177e4 1310/**
6af8bef1 1311 * handle_hotplug_event_bridge - handle ACPI event on bridges
1da177e4
LT
1312 * @handle: Notify()'ed acpi_handle
1313 * @type: Notify code
6af8bef1 1314 * @context: pointer to acpiphp_bridge structure
1da177e4 1315 *
6af8bef1 1316 * Handles ACPI event notification on {host,p2p} bridges.
1da177e4 1317 */
6af8bef1
PB
1318static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
1319 void *context)
1320{
1321 /*
1322 * Currently the code adds all hotplug events to the kacpid_wq
1323 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1324 * The proper way to fix this is to reorganize the code so that
1325 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1326 * For now just re-add this work to the kacpi_hotplug_wq so we
1327 * don't deadlock on hotplug actions.
1328 */
1329 alloc_acpiphp_hp_work(handle, type, context,
1330 _handle_hotplug_event_bridge);
1331}
1332
1333static void _handle_hotplug_event_func(struct work_struct *work)
1da177e4
LT
1334{
1335 struct acpiphp_func *func;
1336 char objname[64];
1337 struct acpi_buffer buffer = { .length = sizeof(objname),
1338 .pointer = objname };
6af8bef1
PB
1339 struct acpiphp_hp_work *hp_work;
1340 acpi_handle handle;
1341 u32 type;
1342 void *context;
1343
1344 hp_work = container_of(work, struct acpiphp_hp_work, work);
1345 handle = hp_work->handle;
1346 type = hp_work->type;
1347 context = hp_work->context;
1da177e4
LT
1348
1349 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1350
1351 func = (struct acpiphp_func *)context;
1352
1353 switch (type) {
1354 case ACPI_NOTIFY_BUS_CHECK:
1355 /* bus re-enumerate */
66bef8c0 1356 dbg("%s: Bus check notify on %s\n", __func__, objname);
1da177e4
LT
1357 acpiphp_enable_slot(func->slot);
1358 break;
1359
1360 case ACPI_NOTIFY_DEVICE_CHECK:
1361 /* device check : re-enumerate from parent bus */
66bef8c0 1362 dbg("%s: Device check notify on %s\n", __func__, objname);
1da177e4
LT
1363 acpiphp_check_bridge(func->slot->bridge);
1364 break;
1365
1366 case ACPI_NOTIFY_DEVICE_WAKE:
1367 /* wake event */
66bef8c0 1368 dbg("%s: Device wake notify on %s\n", __func__, objname);
1da177e4
LT
1369 break;
1370
1371 case ACPI_NOTIFY_EJECT_REQUEST:
1372 /* request device eject */
66bef8c0 1373 dbg("%s: Device eject notify on %s\n", __func__, objname);
8d50e332
RS
1374 if (!(acpiphp_disable_slot(func->slot)))
1375 acpiphp_eject_slot(func->slot);
1da177e4
LT
1376 break;
1377
1378 default:
1379 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1380 break;
1381 }
6af8bef1
PB
1382
1383 kfree(hp_work); /* allocated in handle_hotplug_event_func */
1da177e4
LT
1384}
1385
6af8bef1
PB
1386/**
1387 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1388 * @handle: Notify()'ed acpi_handle
1389 * @type: Notify code
1390 * @context: pointer to acpiphp_func structure
1391 *
1392 * Handles ACPI event notification on slots.
1393 */
1394static void handle_hotplug_event_func(acpi_handle handle, u32 type,
1395 void *context)
1396{
1397 /*
1398 * Currently the code adds all hotplug events to the kacpid_wq
1399 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1400 * The proper way to fix this is to reorganize the code so that
1401 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1402 * For now just re-add this work to the kacpi_hotplug_wq so we
1403 * don't deadlock on hotplug actions.
1404 */
1405 alloc_acpiphp_hp_work(handle, type, context,
1406 _handle_hotplug_event_func);
1407}
8e7561cf
RS
1408
1409static acpi_status
1410find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1411{
1412 int *count = (int *)context;
1413
0d52f54e
RW
1414 if (!acpi_is_root_bridge(handle))
1415 return AE_OK;
1416
0d52f54e
RW
1417 (*count)++;
1418 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1419 handle_hotplug_event_bridge, NULL);
1420
8e7561cf
RS
1421 return AE_OK ;
1422}
1da177e4
LT
1423
1424static struct acpi_pci_driver acpi_pci_hp_driver = {
1425 .add = add_bridge,
1426 .remove = remove_bridge,
1427};
1428
1429/**
1430 * acpiphp_glue_init - initializes all PCI hotplug - ACPI glue data structures
1da177e4
LT
1431 */
1432int __init acpiphp_glue_init(void)
1433{
8e7561cf 1434 int num = 0;
1da177e4 1435
8e7561cf 1436 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
2263576c 1437 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
1da177e4
LT
1438
1439 if (num <= 0)
1440 return -1;
8e7561cf
RS
1441 else
1442 acpi_pci_register_driver(&acpi_pci_hp_driver);
1da177e4
LT
1443
1444 return 0;
1445}
1446
1447
1448/**
1449 * acpiphp_glue_exit - terminates all PCI hotplug - ACPI glue data structures
1450 *
26e6c66e 1451 * This function frees all data allocated in acpiphp_glue_init().
1da177e4 1452 */
031f30d2 1453void acpiphp_glue_exit(void)
1da177e4 1454{
1da177e4
LT
1455 acpi_pci_unregister_driver(&acpi_pci_hp_driver);
1456}
1457
1458
1459/**
1460 * acpiphp_get_num_slots - count number of slots in a system
1461 */
1462int __init acpiphp_get_num_slots(void)
1463{
1da177e4 1464 struct acpiphp_bridge *bridge;
467c442f 1465 int num_slots = 0;
1da177e4 1466
58c08628 1467 list_for_each_entry(bridge, &bridge_list, list) {
42f49a6a
RS
1468 dbg("Bus %04x:%02x has %d slot%s\n",
1469 pci_domain_nr(bridge->pci_bus),
1470 bridge->pci_bus->number, bridge->nr_slots,
1471 bridge->nr_slots == 1 ? "" : "s");
1da177e4
LT
1472 num_slots += bridge->nr_slots;
1473 }
1474
42f49a6a 1475 dbg("Total %d slots\n", num_slots);
1da177e4
LT
1476 return num_slots;
1477}
1478
1479
1480#if 0
1481/**
1482 * acpiphp_for_each_slot - call function for each slot
1483 * @fn: callback function
1484 * @data: context to be passed to callback function
1da177e4
LT
1485 */
1486static int acpiphp_for_each_slot(acpiphp_callback fn, void *data)
1487{
1488 struct list_head *node;
1489 struct acpiphp_bridge *bridge;
1490 struct acpiphp_slot *slot;
1491 int retval = 0;
1492
1493 list_for_each (node, &bridge_list) {
1494 bridge = (struct acpiphp_bridge *)node;
1495 for (slot = bridge->slots; slot; slot = slot->next) {
1496 retval = fn(slot, data);
1497 if (!retval)
1498 goto err_exit;
1499 }
1500 }
1501
1502 err_exit:
1503 return retval;
1504}
1505#endif
1506
1da177e4
LT
1507
1508/**
1509 * acpiphp_enable_slot - power on slot
26e6c66e 1510 * @slot: ACPI PHP slot
1da177e4
LT
1511 */
1512int acpiphp_enable_slot(struct acpiphp_slot *slot)
1513{
1514 int retval;
1515
6aa4cdd0 1516 mutex_lock(&slot->crit_sect);
1da177e4
LT
1517
1518 /* wake up all functions */
1519 retval = power_on_slot(slot);
1520 if (retval)
1521 goto err_exit;
1522
cde0e5d7 1523 if (get_slot_status(slot) == ACPI_STA_ALL) {
1da177e4
LT
1524 /* configure all functions */
1525 retval = enable_device(slot);
cde0e5d7
MT
1526 if (retval)
1527 power_off_slot(slot);
1528 } else {
66bef8c0 1529 dbg("%s: Slot status is not ACPI_STA_ALL\n", __func__);
cde0e5d7
MT
1530 power_off_slot(slot);
1531 }
1da177e4
LT
1532
1533 err_exit:
6aa4cdd0 1534 mutex_unlock(&slot->crit_sect);
1da177e4
LT
1535 return retval;
1536}
1537
1da177e4
LT
1538/**
1539 * acpiphp_disable_slot - power off slot
26e6c66e 1540 * @slot: ACPI PHP slot
1da177e4
LT
1541 */
1542int acpiphp_disable_slot(struct acpiphp_slot *slot)
1543{
1544 int retval = 0;
1545
6aa4cdd0 1546 mutex_lock(&slot->crit_sect);
1da177e4
LT
1547
1548 /* unconfigure all functions */
1549 retval = disable_device(slot);
1550 if (retval)
1551 goto err_exit;
1552
1553 /* power off all functions */
1554 retval = power_off_slot(slot);
1555 if (retval)
1556 goto err_exit;
1557
1da177e4 1558 err_exit:
6aa4cdd0 1559 mutex_unlock(&slot->crit_sect);
1da177e4
LT
1560 return retval;
1561}
1562
1563
1564/*
1565 * slot enabled: 1
1566 * slot disabled: 0
1567 */
1568u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1569{
8d50e332 1570 return (slot->flags & SLOT_POWEREDON);
1da177e4
LT
1571}
1572
1573
1574/*
35ae61a0
MT
1575 * latch open: 1
1576 * latch closed: 0
1da177e4
LT
1577 */
1578u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1579{
1580 unsigned int sta;
1581
1582 sta = get_slot_status(slot);
1583
35ae61a0 1584 return (sta & ACPI_STA_SHOW_IN_UI) ? 0 : 1;
1da177e4
LT
1585}
1586
1587
1588/*
1589 * adapter presence : 1
1590 * absence : 0
1591 */
1592u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1593{
1594 unsigned int sta;
1595
1596 sta = get_slot_status(slot);
1597
1598 return (sta == 0) ? 0 : 1;
1599}