GNU Linux-libre 4.14.254-gnu1
[releases.git] / drivers / pci / hotplug / acpiphp_glue.c
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 #define pr_fmt(fmt) "acpiphp_glue: " fmt
43
44 #include <linux/module.h>
45
46 #include <linux/kernel.h>
47 #include <linux/pci.h>
48 #include <linux/pci_hotplug.h>
49 #include <linux/pci-acpi.h>
50 #include <linux/pm_runtime.h>
51 #include <linux/mutex.h>
52 #include <linux/slab.h>
53 #include <linux/acpi.h>
54
55 #include "../pci.h"
56 #include "acpiphp.h"
57
58 static LIST_HEAD(bridge_list);
59 static DEFINE_MUTEX(bridge_mutex);
60
61 static int acpiphp_hotplug_notify(struct acpi_device *adev, u32 type);
62 static void acpiphp_post_dock_fixup(struct acpi_device *adev);
63 static void acpiphp_sanitize_bus(struct pci_bus *bus);
64 static void hotplug_event(u32 type, struct acpiphp_context *context);
65 static void free_bridge(struct kref *kref);
66
67 /**
68  * acpiphp_init_context - Create hotplug context and grab a reference to it.
69  * @adev: ACPI device object to create the context for.
70  *
71  * Call under acpi_hp_context_lock.
72  */
73 static struct acpiphp_context *acpiphp_init_context(struct acpi_device *adev)
74 {
75         struct acpiphp_context *context;
76
77         context = kzalloc(sizeof(*context), GFP_KERNEL);
78         if (!context)
79                 return NULL;
80
81         context->refcount = 1;
82         context->hp.notify = acpiphp_hotplug_notify;
83         context->hp.fixup = acpiphp_post_dock_fixup;
84         acpi_set_hp_context(adev, &context->hp);
85         return context;
86 }
87
88 /**
89  * acpiphp_get_context - Get hotplug context and grab a reference to it.
90  * @adev: ACPI device object to get the context for.
91  *
92  * Call under acpi_hp_context_lock.
93  */
94 static struct acpiphp_context *acpiphp_get_context(struct acpi_device *adev)
95 {
96         struct acpiphp_context *context;
97
98         if (!adev->hp)
99                 return NULL;
100
101         context = to_acpiphp_context(adev->hp);
102         context->refcount++;
103         return context;
104 }
105
106 /**
107  * acpiphp_put_context - Drop a reference to ACPI hotplug context.
108  * @context: ACPI hotplug context to drop a reference to.
109  *
110  * The context object is removed if there are no more references to it.
111  *
112  * Call under acpi_hp_context_lock.
113  */
114 static void acpiphp_put_context(struct acpiphp_context *context)
115 {
116         if (--context->refcount)
117                 return;
118
119         WARN_ON(context->bridge);
120         context->hp.self->hp = NULL;
121         kfree(context);
122 }
123
124 static inline void get_bridge(struct acpiphp_bridge *bridge)
125 {
126         kref_get(&bridge->ref);
127 }
128
129 static inline void put_bridge(struct acpiphp_bridge *bridge)
130 {
131         kref_put(&bridge->ref, free_bridge);
132 }
133
134 static struct acpiphp_context *acpiphp_grab_context(struct acpi_device *adev)
135 {
136         struct acpiphp_context *context;
137
138         acpi_lock_hp_context();
139
140         context = acpiphp_get_context(adev);
141         if (!context)
142                 goto unlock;
143
144         if (context->func.parent->is_going_away) {
145                 acpiphp_put_context(context);
146                 context = NULL;
147                 goto unlock;
148         }
149
150         get_bridge(context->func.parent);
151         acpiphp_put_context(context);
152
153 unlock:
154         acpi_unlock_hp_context();
155         return context;
156 }
157
158 static void acpiphp_let_context_go(struct acpiphp_context *context)
159 {
160         put_bridge(context->func.parent);
161 }
162
163 static void free_bridge(struct kref *kref)
164 {
165         struct acpiphp_context *context;
166         struct acpiphp_bridge *bridge;
167         struct acpiphp_slot *slot, *next;
168         struct acpiphp_func *func, *tmp;
169
170         acpi_lock_hp_context();
171
172         bridge = container_of(kref, struct acpiphp_bridge, ref);
173
174         list_for_each_entry_safe(slot, next, &bridge->slots, node) {
175                 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling)
176                         acpiphp_put_context(func_to_context(func));
177
178                 kfree(slot);
179         }
180
181         context = bridge->context;
182         /* Root bridges will not have hotplug context. */
183         if (context) {
184                 /* Release the reference taken by acpiphp_enumerate_slots(). */
185                 put_bridge(context->func.parent);
186                 context->bridge = NULL;
187                 acpiphp_put_context(context);
188         }
189
190         put_device(&bridge->pci_bus->dev);
191         pci_dev_put(bridge->pci_dev);
192         kfree(bridge);
193
194         acpi_unlock_hp_context();
195 }
196
197 /**
198  * acpiphp_post_dock_fixup - Post-dock fixups for PCI devices.
199  * @adev: ACPI device object corresponding to a PCI device.
200  *
201  * TBD - figure out a way to only call fixups for systems that require them.
202  */
203 static void acpiphp_post_dock_fixup(struct acpi_device *adev)
204 {
205         struct acpiphp_context *context = acpiphp_grab_context(adev);
206         struct pci_bus *bus;
207         u32 buses;
208
209         if (!context)
210                 return;
211
212         bus = context->func.slot->bus;
213         if (!bus->self)
214                 goto out;
215
216         /* fixup bad _DCK function that rewrites
217          * secondary bridge on slot
218          */
219         pci_read_config_dword(bus->self, PCI_PRIMARY_BUS, &buses);
220
221         if (((buses >> 8) & 0xff) != bus->busn_res.start) {
222                 buses = (buses & 0xff000000)
223                         | ((unsigned int)(bus->primary)     <<  0)
224                         | ((unsigned int)(bus->busn_res.start)   <<  8)
225                         | ((unsigned int)(bus->busn_res.end) << 16);
226                 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
227         }
228
229  out:
230         acpiphp_let_context_go(context);
231 }
232
233 /**
234  * acpiphp_add_context - Add ACPIPHP context to an ACPI device object.
235  * @handle: ACPI handle of the object to add a context to.
236  * @lvl: Not used.
237  * @data: The object's parent ACPIPHP bridge.
238  * @rv: Not used.
239  */
240 static acpi_status acpiphp_add_context(acpi_handle handle, u32 lvl, void *data,
241                                        void **rv)
242 {
243         struct acpiphp_bridge *bridge = data;
244         struct acpiphp_context *context;
245         struct acpi_device *adev;
246         struct acpiphp_slot *slot;
247         struct acpiphp_func *newfunc;
248         acpi_status status = AE_OK;
249         unsigned long long adr;
250         int device, function;
251         struct pci_bus *pbus = bridge->pci_bus;
252         struct pci_dev *pdev = bridge->pci_dev;
253         u32 val;
254
255         status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
256         if (ACPI_FAILURE(status)) {
257                 if (status != AE_NOT_FOUND)
258                         acpi_handle_warn(handle,
259                                 "can't evaluate _ADR (%#x)\n", status);
260                 return AE_OK;
261         }
262         if (acpi_bus_get_device(handle, &adev))
263                 return AE_OK;
264
265         device = (adr >> 16) & 0xffff;
266         function = adr & 0xffff;
267
268         acpi_lock_hp_context();
269         context = acpiphp_init_context(adev);
270         if (!context) {
271                 acpi_unlock_hp_context();
272                 acpi_handle_err(handle, "No hotplug context\n");
273                 return AE_NOT_EXIST;
274         }
275         newfunc = &context->func;
276         newfunc->function = function;
277         newfunc->parent = bridge;
278         acpi_unlock_hp_context();
279
280         /*
281          * If this is a dock device, its _EJ0 should be executed by the dock
282          * notify handler after calling _DCK.
283          */
284         if (!is_dock_device(adev) && acpi_has_method(handle, "_EJ0"))
285                 newfunc->flags = FUNC_HAS_EJ0;
286
287         if (acpi_has_method(handle, "_STA"))
288                 newfunc->flags |= FUNC_HAS_STA;
289
290         /* search for objects that share the same slot */
291         list_for_each_entry(slot, &bridge->slots, node)
292                 if (slot->device == device)
293                         goto slot_found;
294
295         slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
296         if (!slot) {
297                 acpi_lock_hp_context();
298                 acpiphp_put_context(context);
299                 acpi_unlock_hp_context();
300                 return AE_NO_MEMORY;
301         }
302
303         slot->bus = bridge->pci_bus;
304         slot->device = device;
305         INIT_LIST_HEAD(&slot->funcs);
306
307         list_add_tail(&slot->node, &bridge->slots);
308
309         /*
310          * Expose slots to user space for functions that have _EJ0 or _RMV or
311          * are located in dock stations.  Do not expose them for devices handled
312          * by the native PCIe hotplug (PCIeHP), becuase that code is supposed to
313          * expose slots to user space in those cases.
314          */
315         if ((acpi_pci_check_ejectable(pbus, handle) || is_dock_device(adev))
316             && !(pdev && pdev->is_hotplug_bridge && pciehp_is_native(pdev))) {
317                 unsigned long long sun;
318                 int retval;
319
320                 bridge->nr_slots++;
321                 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
322                 if (ACPI_FAILURE(status))
323                         sun = bridge->nr_slots;
324
325                 pr_debug("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
326                     sun, pci_domain_nr(pbus), pbus->number, device);
327
328                 retval = acpiphp_register_hotplug_slot(slot, sun);
329                 if (retval) {
330                         slot->slot = NULL;
331                         bridge->nr_slots--;
332                         if (retval == -EBUSY)
333                                 pr_warn("Slot %llu already registered by another hotplug driver\n", sun);
334                         else
335                                 pr_warn("acpiphp_register_hotplug_slot failed (err code = 0x%x)\n", retval);
336                 }
337                 /* Even if the slot registration fails, we can still use it. */
338         }
339
340  slot_found:
341         newfunc->slot = slot;
342         list_add_tail(&newfunc->sibling, &slot->funcs);
343
344         if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
345                                        &val, 60*1000))
346                 slot->flags |= SLOT_ENABLED;
347
348         return AE_OK;
349 }
350
351 static void cleanup_bridge(struct acpiphp_bridge *bridge)
352 {
353         struct acpiphp_slot *slot;
354         struct acpiphp_func *func;
355
356         list_for_each_entry(slot, &bridge->slots, node) {
357                 list_for_each_entry(func, &slot->funcs, sibling) {
358                         struct acpi_device *adev = func_to_acpi_device(func);
359
360                         acpi_lock_hp_context();
361                         adev->hp->notify = NULL;
362                         adev->hp->fixup = NULL;
363                         acpi_unlock_hp_context();
364                 }
365                 slot->flags |= SLOT_IS_GOING_AWAY;
366                 if (slot->slot)
367                         acpiphp_unregister_hotplug_slot(slot);
368         }
369
370         mutex_lock(&bridge_mutex);
371         list_del(&bridge->list);
372         mutex_unlock(&bridge_mutex);
373
374         acpi_lock_hp_context();
375         bridge->is_going_away = true;
376         acpi_unlock_hp_context();
377 }
378
379 /**
380  * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
381  * @bus: bus to start search with
382  */
383 static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
384 {
385         struct pci_bus *tmp;
386         unsigned char max, n;
387
388         /*
389          * pci_bus_max_busnr will return the highest
390          * reserved busnr for all these children.
391          * that is equivalent to the bus->subordinate
392          * value.  We don't want to use the parent's
393          * bus->subordinate value because it could have
394          * padding in it.
395          */
396         max = bus->busn_res.start;
397
398         list_for_each_entry(tmp, &bus->children, node) {
399                 n = pci_bus_max_busnr(tmp);
400                 if (n > max)
401                         max = n;
402         }
403         return max;
404 }
405
406 static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
407 {
408         struct acpiphp_func *func;
409         union acpi_object params[2];
410         struct acpi_object_list arg_list;
411
412         list_for_each_entry(func, &slot->funcs, sibling) {
413                 arg_list.count = 2;
414                 arg_list.pointer = params;
415                 params[0].type = ACPI_TYPE_INTEGER;
416                 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
417                 params[1].type = ACPI_TYPE_INTEGER;
418                 params[1].integer.value = 1;
419                 /* _REG is optional, we don't care about if there is failure */
420                 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
421                                      NULL);
422         }
423 }
424
425 static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
426 {
427         struct acpiphp_func *func;
428
429         /* quirk, or pcie could set it already */
430         if (dev->is_hotplug_bridge)
431                 return;
432
433         list_for_each_entry(func, &slot->funcs, sibling) {
434                 if (PCI_FUNC(dev->devfn) == func->function) {
435                         dev->is_hotplug_bridge = 1;
436                         break;
437                 }
438         }
439 }
440
441 static int acpiphp_rescan_slot(struct acpiphp_slot *slot)
442 {
443         struct acpiphp_func *func;
444
445         list_for_each_entry(func, &slot->funcs, sibling) {
446                 struct acpi_device *adev = func_to_acpi_device(func);
447
448                 acpi_bus_scan(adev->handle);
449                 if (acpi_device_enumerated(adev))
450                         acpi_device_set_power(adev, ACPI_STATE_D0);
451         }
452         return pci_scan_slot(slot->bus, PCI_DEVFN(slot->device, 0));
453 }
454
455 /**
456  * enable_slot - enable, configure a slot
457  * @slot: slot to be enabled
458  *
459  * This function should be called per *physical slot*,
460  * not per each slot object in ACPI namespace.
461  */
462 static void enable_slot(struct acpiphp_slot *slot)
463 {
464         struct pci_dev *dev;
465         struct pci_bus *bus = slot->bus;
466         struct acpiphp_func *func;
467         int max, pass;
468         LIST_HEAD(add_list);
469
470         acpiphp_rescan_slot(slot);
471         max = acpiphp_max_busnr(bus);
472         for (pass = 0; pass < 2; pass++) {
473                 list_for_each_entry(dev, &bus->devices, bus_list) {
474                         if (PCI_SLOT(dev->devfn) != slot->device)
475                                 continue;
476
477                         if (pci_is_bridge(dev)) {
478                                 max = pci_scan_bridge(bus, dev, max, pass);
479                                 if (pass && dev->subordinate) {
480                                         check_hotplug_bridge(slot, dev);
481                                         pcibios_resource_survey_bus(dev->subordinate);
482                                         __pci_bus_size_bridges(dev->subordinate,
483                                                                &add_list);
484                                 }
485                         }
486                 }
487         }
488         __pci_bus_assign_resources(bus, &add_list, NULL);
489
490         acpiphp_sanitize_bus(bus);
491         pcie_bus_configure_settings(bus);
492         acpiphp_set_acpi_region(slot);
493
494         list_for_each_entry(dev, &bus->devices, bus_list) {
495                 /* Assume that newly added devices are powered on already. */
496                 if (!dev->is_added)
497                         dev->current_state = PCI_D0;
498         }
499
500         pci_bus_add_devices(bus);
501
502         slot->flags |= SLOT_ENABLED;
503         list_for_each_entry(func, &slot->funcs, sibling) {
504                 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
505                                                   func->function));
506                 if (!dev) {
507                         /* Do not set SLOT_ENABLED flag if some funcs
508                            are not added. */
509                         slot->flags &= (~SLOT_ENABLED);
510                         continue;
511                 }
512                 pci_dev_put(dev);
513         }
514 }
515
516 /**
517  * disable_slot - disable a slot
518  * @slot: ACPI PHP slot
519  */
520 static void disable_slot(struct acpiphp_slot *slot)
521 {
522         struct pci_bus *bus = slot->bus;
523         struct pci_dev *dev, *prev;
524         struct acpiphp_func *func;
525
526         /*
527          * enable_slot() enumerates all functions in this device via
528          * pci_scan_slot(), whether they have associated ACPI hotplug
529          * methods (_EJ0, etc.) or not.  Therefore, we remove all functions
530          * here.
531          */
532         list_for_each_entry_safe_reverse(dev, prev, &bus->devices, bus_list)
533                 if (PCI_SLOT(dev->devfn) == slot->device)
534                         pci_stop_and_remove_bus_device(dev);
535
536         list_for_each_entry(func, &slot->funcs, sibling)
537                 acpi_bus_trim(func_to_acpi_device(func));
538
539         slot->flags &= (~SLOT_ENABLED);
540 }
541
542 static bool slot_no_hotplug(struct acpiphp_slot *slot)
543 {
544         struct pci_bus *bus = slot->bus;
545         struct pci_dev *dev;
546
547         list_for_each_entry(dev, &bus->devices, bus_list) {
548                 if (PCI_SLOT(dev->devfn) == slot->device && dev->ignore_hotplug)
549                         return true;
550         }
551         return false;
552 }
553
554 /**
555  * get_slot_status - get ACPI slot status
556  * @slot: ACPI PHP slot
557  *
558  * If a slot has _STA for each function and if any one of them
559  * returned non-zero status, return it.
560  *
561  * If a slot doesn't have _STA and if any one of its functions'
562  * configuration space is configured, return 0x0f as a _STA.
563  *
564  * Otherwise return 0.
565  */
566 static unsigned int get_slot_status(struct acpiphp_slot *slot)
567 {
568         unsigned long long sta = 0;
569         struct acpiphp_func *func;
570         u32 dvid;
571
572         list_for_each_entry(func, &slot->funcs, sibling) {
573                 if (func->flags & FUNC_HAS_STA) {
574                         acpi_status status;
575
576                         status = acpi_evaluate_integer(func_to_handle(func),
577                                                        "_STA", NULL, &sta);
578                         if (ACPI_SUCCESS(status) && sta)
579                                 break;
580                 } else {
581                         if (pci_bus_read_dev_vendor_id(slot->bus,
582                                         PCI_DEVFN(slot->device, func->function),
583                                         &dvid, 0)) {
584                                 sta = ACPI_STA_ALL;
585                                 break;
586                         }
587                 }
588         }
589
590         if (!sta) {
591                 /*
592                  * Check for the slot itself since it may be that the
593                  * ACPI slot is a device below PCIe upstream port so in
594                  * that case it may not even be reachable yet.
595                  */
596                 if (pci_bus_read_dev_vendor_id(slot->bus,
597                                 PCI_DEVFN(slot->device, 0), &dvid, 0)) {
598                         sta = ACPI_STA_ALL;
599                 }
600         }
601
602         return (unsigned int)sta;
603 }
604
605 static inline bool device_status_valid(unsigned int sta)
606 {
607         /*
608          * ACPI spec says that _STA may return bit 0 clear with bit 3 set
609          * if the device is valid but does not require a device driver to be
610          * loaded (Section 6.3.7 of ACPI 5.0A).
611          */
612         unsigned int mask = ACPI_STA_DEVICE_ENABLED | ACPI_STA_DEVICE_FUNCTIONING;
613         return (sta & mask) == mask;
614 }
615
616 /**
617  * trim_stale_devices - remove PCI devices that are not responding.
618  * @dev: PCI device to start walking the hierarchy from.
619  */
620 static void trim_stale_devices(struct pci_dev *dev)
621 {
622         struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
623         struct pci_bus *bus = dev->subordinate;
624         bool alive = dev->ignore_hotplug;
625
626         if (adev) {
627                 acpi_status status;
628                 unsigned long long sta;
629
630                 status = acpi_evaluate_integer(adev->handle, "_STA", NULL, &sta);
631                 alive = alive || (ACPI_SUCCESS(status) && device_status_valid(sta));
632         }
633         if (!alive)
634                 alive = pci_device_is_present(dev);
635
636         if (!alive) {
637                 pci_stop_and_remove_bus_device(dev);
638                 if (adev)
639                         acpi_bus_trim(adev);
640         } else if (bus) {
641                 struct pci_dev *child, *tmp;
642
643                 /* The device is a bridge. so check the bus below it. */
644                 pm_runtime_get_sync(&dev->dev);
645                 list_for_each_entry_safe_reverse(child, tmp, &bus->devices, bus_list)
646                         trim_stale_devices(child);
647
648                 pm_runtime_put(&dev->dev);
649         }
650 }
651
652 /**
653  * acpiphp_check_bridge - re-enumerate devices
654  * @bridge: where to begin re-enumeration
655  *
656  * Iterate over all slots under this bridge and make sure that if a
657  * card is present they are enabled, and if not they are disabled.
658  */
659 static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
660 {
661         struct acpiphp_slot *slot;
662
663         /* Bail out if the bridge is going away. */
664         if (bridge->is_going_away)
665                 return;
666
667         if (bridge->pci_dev)
668                 pm_runtime_get_sync(&bridge->pci_dev->dev);
669
670         list_for_each_entry(slot, &bridge->slots, node) {
671                 struct pci_bus *bus = slot->bus;
672                 struct pci_dev *dev, *tmp;
673
674                 if (slot_no_hotplug(slot)) {
675                         ; /* do nothing */
676                 } else if (device_status_valid(get_slot_status(slot))) {
677                         /* remove stale devices if any */
678                         list_for_each_entry_safe_reverse(dev, tmp,
679                                                          &bus->devices, bus_list)
680                                 if (PCI_SLOT(dev->devfn) == slot->device)
681                                         trim_stale_devices(dev);
682
683                         /* configure all functions */
684                         enable_slot(slot);
685                 } else {
686                         disable_slot(slot);
687                 }
688         }
689
690         if (bridge->pci_dev)
691                 pm_runtime_put(&bridge->pci_dev->dev);
692 }
693
694 /*
695  * Remove devices for which we could not assign resources, call
696  * arch specific code to fix-up the bus
697  */
698 static void acpiphp_sanitize_bus(struct pci_bus *bus)
699 {
700         struct pci_dev *dev, *tmp;
701         int i;
702         unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
703
704         list_for_each_entry_safe_reverse(dev, tmp, &bus->devices, bus_list) {
705                 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
706                         struct resource *res = &dev->resource[i];
707                         if ((res->flags & type_mask) && !res->start &&
708                                         res->end) {
709                                 /* Could not assign a required resources
710                                  * for this device, remove it */
711                                 pci_stop_and_remove_bus_device(dev);
712                                 break;
713                         }
714                 }
715         }
716 }
717
718 /*
719  * ACPI event handlers
720  */
721
722 void acpiphp_check_host_bridge(struct acpi_device *adev)
723 {
724         struct acpiphp_bridge *bridge = NULL;
725
726         acpi_lock_hp_context();
727         if (adev->hp) {
728                 bridge = to_acpiphp_root_context(adev->hp)->root_bridge;
729                 if (bridge)
730                         get_bridge(bridge);
731         }
732         acpi_unlock_hp_context();
733         if (bridge) {
734                 pci_lock_rescan_remove();
735
736                 acpiphp_check_bridge(bridge);
737
738                 pci_unlock_rescan_remove();
739                 put_bridge(bridge);
740         }
741 }
742
743 static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot);
744
745 static void hotplug_event(u32 type, struct acpiphp_context *context)
746 {
747         acpi_handle handle = context->hp.self->handle;
748         struct acpiphp_func *func = &context->func;
749         struct acpiphp_slot *slot = func->slot;
750         struct acpiphp_bridge *bridge;
751
752         acpi_lock_hp_context();
753         bridge = context->bridge;
754         if (bridge)
755                 get_bridge(bridge);
756
757         acpi_unlock_hp_context();
758
759         pci_lock_rescan_remove();
760
761         switch (type) {
762         case ACPI_NOTIFY_BUS_CHECK:
763                 /* bus re-enumerate */
764                 acpi_handle_debug(handle, "Bus check in %s()\n", __func__);
765                 if (bridge)
766                         acpiphp_check_bridge(bridge);
767                 else if (!(slot->flags & SLOT_IS_GOING_AWAY))
768                         enable_slot(slot);
769
770                 break;
771
772         case ACPI_NOTIFY_DEVICE_CHECK:
773                 /* device check */
774                 acpi_handle_debug(handle, "Device check in %s()\n", __func__);
775                 if (bridge) {
776                         acpiphp_check_bridge(bridge);
777                 } else if (!(slot->flags & SLOT_IS_GOING_AWAY)) {
778                         /*
779                          * Check if anything has changed in the slot and rescan
780                          * from the parent if that's the case.
781                          */
782                         if (acpiphp_rescan_slot(slot))
783                                 acpiphp_check_bridge(func->parent);
784                 }
785                 break;
786
787         case ACPI_NOTIFY_EJECT_REQUEST:
788                 /* request device eject */
789                 acpi_handle_debug(handle, "Eject request in %s()\n", __func__);
790                 acpiphp_disable_and_eject_slot(slot);
791                 break;
792         }
793
794         pci_unlock_rescan_remove();
795         if (bridge)
796                 put_bridge(bridge);
797 }
798
799 static int acpiphp_hotplug_notify(struct acpi_device *adev, u32 type)
800 {
801         struct acpiphp_context *context;
802
803         context = acpiphp_grab_context(adev);
804         if (!context)
805                 return -ENODATA;
806
807         hotplug_event(type, context);
808         acpiphp_let_context_go(context);
809         return 0;
810 }
811
812 /**
813  * acpiphp_enumerate_slots - Enumerate PCI slots for a given bus.
814  * @bus: PCI bus to enumerate the slots for.
815  *
816  * A "slot" is an object associated with a PCI device number.  All functions
817  * (PCI devices) with the same bus and device number belong to the same slot.
818  */
819 void acpiphp_enumerate_slots(struct pci_bus *bus)
820 {
821         struct acpiphp_bridge *bridge;
822         struct acpi_device *adev;
823         acpi_handle handle;
824         acpi_status status;
825
826         if (acpiphp_disabled)
827                 return;
828
829         adev = ACPI_COMPANION(bus->bridge);
830         if (!adev)
831                 return;
832
833         handle = adev->handle;
834         bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
835         if (!bridge) {
836                 acpi_handle_err(handle, "No memory for bridge object\n");
837                 return;
838         }
839
840         INIT_LIST_HEAD(&bridge->slots);
841         kref_init(&bridge->ref);
842         bridge->pci_dev = pci_dev_get(bus->self);
843         bridge->pci_bus = bus;
844
845         /*
846          * Grab a ref to the subordinate PCI bus in case the bus is
847          * removed via PCI core logical hotplug. The ref pins the bus
848          * (which we access during module unload).
849          */
850         get_device(&bus->dev);
851
852         acpi_lock_hp_context();
853         if (pci_is_root_bus(bridge->pci_bus)) {
854                 struct acpiphp_root_context *root_context;
855
856                 root_context = kzalloc(sizeof(*root_context), GFP_KERNEL);
857                 if (!root_context)
858                         goto err;
859
860                 root_context->root_bridge = bridge;
861                 acpi_set_hp_context(adev, &root_context->hp);
862         } else {
863                 struct acpiphp_context *context;
864
865                 /*
866                  * This bridge should have been registered as a hotplug function
867                  * under its parent, so the context should be there, unless the
868                  * parent is going to be handled by pciehp, in which case this
869                  * bridge is not interesting to us either.
870                  */
871                 context = acpiphp_get_context(adev);
872                 if (!context)
873                         goto err;
874
875                 bridge->context = context;
876                 context->bridge = bridge;
877                 /* Get a reference to the parent bridge. */
878                 get_bridge(context->func.parent);
879         }
880         acpi_unlock_hp_context();
881
882         /* Must be added to the list prior to calling acpiphp_add_context(). */
883         mutex_lock(&bridge_mutex);
884         list_add(&bridge->list, &bridge_list);
885         mutex_unlock(&bridge_mutex);
886
887         /* register all slot objects under this bridge */
888         status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
889                                      acpiphp_add_context, NULL, bridge, NULL);
890         if (ACPI_FAILURE(status)) {
891                 acpi_handle_err(handle, "failed to register slots\n");
892                 cleanup_bridge(bridge);
893                 put_bridge(bridge);
894         }
895         return;
896
897  err:
898         acpi_unlock_hp_context();
899         put_device(&bus->dev);
900         pci_dev_put(bridge->pci_dev);
901         kfree(bridge);
902 }
903
904 static void acpiphp_drop_bridge(struct acpiphp_bridge *bridge)
905 {
906         if (pci_is_root_bus(bridge->pci_bus)) {
907                 struct acpiphp_root_context *root_context;
908                 struct acpi_device *adev;
909
910                 acpi_lock_hp_context();
911                 adev = ACPI_COMPANION(bridge->pci_bus->bridge);
912                 root_context = to_acpiphp_root_context(adev->hp);
913                 adev->hp = NULL;
914                 acpi_unlock_hp_context();
915                 kfree(root_context);
916         }
917         cleanup_bridge(bridge);
918         put_bridge(bridge);
919 }
920
921 /**
922  * acpiphp_remove_slots - Remove slot objects associated with a given bus.
923  * @bus: PCI bus to remove the slot objects for.
924  */
925 void acpiphp_remove_slots(struct pci_bus *bus)
926 {
927         struct acpiphp_bridge *bridge;
928
929         if (acpiphp_disabled)
930                 return;
931
932         mutex_lock(&bridge_mutex);
933         list_for_each_entry(bridge, &bridge_list, list)
934                 if (bridge->pci_bus == bus) {
935                         mutex_unlock(&bridge_mutex);
936                         acpiphp_drop_bridge(bridge);
937                         return;
938                 }
939
940         mutex_unlock(&bridge_mutex);
941 }
942
943 /**
944  * acpiphp_enable_slot - power on slot
945  * @slot: ACPI PHP slot
946  */
947 int acpiphp_enable_slot(struct acpiphp_slot *slot)
948 {
949         pci_lock_rescan_remove();
950
951         if (slot->flags & SLOT_IS_GOING_AWAY) {
952                 pci_unlock_rescan_remove();
953                 return -ENODEV;
954         }
955
956         /* configure all functions */
957         if (!(slot->flags & SLOT_ENABLED))
958                 enable_slot(slot);
959
960         pci_unlock_rescan_remove();
961         return 0;
962 }
963
964 /**
965  * acpiphp_disable_and_eject_slot - power off and eject slot
966  * @slot: ACPI PHP slot
967  */
968 static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
969 {
970         struct acpiphp_func *func;
971
972         if (slot->flags & SLOT_IS_GOING_AWAY)
973                 return -ENODEV;
974
975         /* unconfigure all functions */
976         disable_slot(slot);
977
978         list_for_each_entry(func, &slot->funcs, sibling)
979                 if (func->flags & FUNC_HAS_EJ0) {
980                         acpi_handle handle = func_to_handle(func);
981
982                         if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
983                                 acpi_handle_err(handle, "_EJ0 failed\n");
984
985                         break;
986                 }
987
988         return 0;
989 }
990
991 int acpiphp_disable_slot(struct acpiphp_slot *slot)
992 {
993         int ret;
994
995         /*
996          * Acquire acpi_scan_lock to ensure that the execution of _EJ0 in
997          * acpiphp_disable_and_eject_slot() will be synchronized properly.
998          */
999         acpi_scan_lock_acquire();
1000         pci_lock_rescan_remove();
1001         ret = acpiphp_disable_and_eject_slot(slot);
1002         pci_unlock_rescan_remove();
1003         acpi_scan_lock_release();
1004         return ret;
1005 }
1006
1007 /*
1008  * slot enabled:  1
1009  * slot disabled: 0
1010  */
1011 u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1012 {
1013         return (slot->flags & SLOT_ENABLED);
1014 }
1015
1016 /*
1017  * latch   open:  1
1018  * latch closed:  0
1019  */
1020 u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1021 {
1022         return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI);
1023 }
1024
1025 /*
1026  * adapter presence : 1
1027  *          absence : 0
1028  */
1029 u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1030 {
1031         return !!get_slot_status(slot);
1032 }