blob: 9e2b1f6dbe41a01cd0e6e571e1b859e6b963069f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Rajesh Shah42f49a62005-04-28 00:25:53 -07007 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com)
8 * Copyright (C) 2003-2005 Hewlett Packard
Rajesh Shah8e7561c2005-04-28 00:25:56 -07009 * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com)
10 * Copyright (C) 2005 Intel Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
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 *
Kristen Carlson Accardi998be202006-07-26 10:52:33 -070029 * Send feedback to <kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
Rajesh Shah42f49a62005-04-28 00:25:53 -070033/*
34 * Lifetime rules for pci_dev:
Rajesh Shah42f49a62005-04-28 00:25:53 -070035 * - 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.
Alex Chiang5d4a4b22009-03-30 10:50:14 -060038 * - When a P2P bridge is present, we elevate the refcount on the subordinate
39 * bus. It loses the refcount when the the driver unloads.
Rajesh Shah42f49a62005-04-28 00:25:53 -070040 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/init.h>
43#include <linux/module.h>
44
45#include <linux/kernel.h>
46#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070047#include <linux/pci_hotplug.h>
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090048#include <linux/pci-acpi.h>
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +010049#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Prarit Bhargava6af8bef2011-09-28 19:40:53 -040051#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#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 *);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070061static void acpiphp_sanitize_bus(struct pci_bus *bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -060062static void acpiphp_set_hpp_values(struct pci_bus *bus);
Len Brown2b85e132006-06-27 01:50:14 -040063static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070064
MUNEDA Takahiro5a340ed2007-11-09 19:07:02 +090065/* callback routine to check for the existence of a pci dock device */
Kristen Accardi4e8662b2006-06-28 03:08:06 -040066static 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
Kristen Accardi4e8662b2006-06-28 03:08:06 -040079/*
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
Yinghai Lub918c622012-05-17 18:51:11 -0700103 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400104 buses = (buses & 0xff000000)
Alex Chiang2a9d3522008-12-11 11:17:55 -0700105 | ((unsigned int)(bus->primary) << 0)
Yinghai Lub918c622012-05-17 18:51:11 -0700106 | ((unsigned int)(bus->busn_res.start) << 8)
107 | ((unsigned int)(bus->busn_res.end) << 16);
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400108 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
109 }
110 return NOTIFY_OK;
111}
112
113
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400114static const struct acpi_dock_ops acpiphp_dock_ops = {
Shaohua Li1253f7a2008-08-28 10:06:16 +0800115 .handler = handle_hotplug_event_func,
116};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Jiang Liu5ba113f2012-08-22 23:16:45 +0800118/* Check whether the PCI device is managed by native PCIe hotplug driver */
119static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev)
120{
121 u32 reg32;
122 acpi_handle tmp;
123 struct acpi_pci_root *root;
124
125 /* Check whether the PCIe port supports native PCIe hotplug */
126 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32))
127 return false;
128 if (!(reg32 & PCI_EXP_SLTCAP_HPC))
129 return false;
130
131 /*
132 * Check whether native PCIe hotplug has been enabled for
133 * this PCIe hierarchy.
134 */
135 tmp = acpi_find_root_bridge_handle(pdev);
136 if (!tmp)
137 return false;
138 root = acpi_pci_find_root(tmp);
139 if (!root)
140 return false;
141 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
142 return false;
143
144 return true;
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/* callback routine to register each ACPI PCI slot object */
148static acpi_status
149register_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
150{
151 struct acpiphp_bridge *bridge = (struct acpiphp_bridge *)context;
152 struct acpiphp_slot *slot;
153 struct acpiphp_func *newfunc;
154 acpi_handle tmp;
155 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400156 unsigned long long adr, sun;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800157 int device, function, retval;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900158 struct pci_bus *pbus = bridge->pci_bus;
Alex Chiang9d911d72009-05-21 16:21:15 -0600159 struct pci_dev *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900161 if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return AE_OK;
163
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600164 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
165 if (ACPI_FAILURE(status)) {
166 warn("can't evaluate _ADR (%#x)\n", status);
167 return AE_OK;
168 }
169
170 device = (adr >> 16) & 0xffff;
171 function = adr & 0xffff;
172
Rafael J. Wysocki619a5182011-12-13 00:02:28 +0100173 pdev = pbus->self;
Jiang Liu5ba113f2012-08-22 23:16:45 +0800174 if (pdev && device_is_managed_by_native_pciehp(pdev))
175 return AE_OK;
Rafael J. Wysocki619a5182011-12-13 00:02:28 +0100176
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100177 newfunc = kzalloc(sizeof(struct acpiphp_func), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (!newfunc)
179 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 INIT_LIST_HEAD(&newfunc->sibling);
182 newfunc->handle = handle;
183 newfunc->function = function;
Matthew Garrett56ee3252008-11-25 21:48:14 +0000184
185 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800186 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 if (ACPI_SUCCESS(acpi_get_handle(handle, "_STA", &tmp)))
189 newfunc->flags |= FUNC_HAS_STA;
190
191 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS0", &tmp)))
192 newfunc->flags |= FUNC_HAS_PS0;
193
194 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS3", &tmp)))
195 newfunc->flags |= FUNC_HAS_PS3;
196
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400197 if (ACPI_SUCCESS(acpi_get_handle(handle, "_DCK", &tmp)))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800198 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
Kristen Accardi95b38b32006-06-28 03:09:54 -0400201 if (ACPI_FAILURE(status)) {
202 /*
203 * use the count of the number of slots we've found
204 * for the number of the slot
205 */
206 sun = bridge->nr_slots+1;
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* search for objects that share the same slot */
210 for (slot = bridge->slots; slot; slot = slot->next)
211 if (slot->device == device) {
212 if (slot->sun != sun)
213 warn("sibling found, but _SUN doesn't match!\n");
214 break;
215 }
216
217 if (!slot) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100218 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (!slot) {
220 kfree(newfunc);
221 return AE_NO_MEMORY;
222 }
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 slot->bridge = bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 slot->device = device;
226 slot->sun = sun;
227 INIT_LIST_HEAD(&slot->funcs);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100228 mutex_init(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 slot->next = bridge->slots;
231 bridge->slots = slot;
232
233 bridge->nr_slots++;
234
Justin Chenb6adc192008-12-11 11:16:44 -0700235 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900236 slot->sun, pci_domain_nr(pbus), pbus->number, device);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800237 retval = acpiphp_register_hotplug_slot(slot);
238 if (retval) {
Alex Chiangf46753c2008-06-10 15:28:50 -0600239 if (retval == -EBUSY)
Justin Chenb6adc192008-12-11 11:16:44 -0700240 warn("Slot %llu already registered by another "
Alex Chiangf46753c2008-06-10 15:28:50 -0600241 "hotplug driver\n", slot->sun);
242 else
243 warn("acpiphp_register_hotplug_slot failed "
244 "(err code = 0x%x)\n", retval);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800245 goto err_exit;
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249 newfunc->slot = slot;
250 list_add_tail(&newfunc->sibling, &slot->funcs);
251
Alex Chiang9d911d72009-05-21 16:21:15 -0600252 pdev = pci_get_slot(pbus, PCI_DEVFN(device, function));
253 if (pdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON);
Alex Chiang9d911d72009-05-21 16:21:15 -0600255 pci_dev_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400258 if (is_dock_device(handle)) {
259 /* we don't want to call this device's _EJ0
260 * because we want the dock notify handler
261 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800262 */
263 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400264 if (register_hotplug_dock_device(handle,
Shaohua Li1253f7a2008-08-28 10:06:16 +0800265 &acpiphp_dock_ops, newfunc))
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400266 dbg("failed to register dock device\n");
267
268 /* we need to be notified when dock events happen
269 * outside of the hotplug operation, since we may
270 * need to do fixups before we can hotplug.
271 */
272 newfunc->nb.notifier_call = post_dock_fixups;
273 if (register_dock_notifier(&newfunc->nb))
274 dbg("failed to register a dock notifier");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800275 }
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800278 if (!(newfunc->flags & FUNC_HAS_DCK)) {
279 status = acpi_install_notify_handler(handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ACPI_SYSTEM_NOTIFY,
281 handle_hotplug_event_func,
282 newfunc);
283
Kristen Accardi20416ea2006-02-23 17:56:03 -0800284 if (ACPI_FAILURE(status))
285 err("failed to register interrupt notify handler\n");
286 } else
287 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Kristen Accardi20416ea2006-02-23 17:56:03 -0800289 return status;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800290
291 err_exit:
292 bridge->nr_slots--;
293 bridge->slots = slot->next;
294 kfree(slot);
295 kfree(newfunc);
296
297 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300
301/* see if it's worth looking at this bridge */
Alex Chiang6edd7672009-09-10 12:34:04 -0600302static int detect_ejectable_slots(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Alex Chiang7f538662009-09-10 12:34:09 -0600304 int found = acpi_pci_detect_ejectable(handle);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900305 if (!found) {
Alex Chiang6edd7672009-09-10 12:34:04 -0600306 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800307 is_pci_dock_device, NULL, (void *)&found, NULL);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900308 }
309 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
313static void init_bridge_misc(struct acpiphp_bridge *bridge)
314{
315 acpi_status status;
316
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800317 /* must be added to the list prior to calling register_slot */
318 list_add(&bridge->list, &bridge_list);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* register all slot objects under this bridge */
321 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800322 register_slot, NULL, bridge, NULL);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800323 if (ACPI_FAILURE(status)) {
324 list_del(&bridge->list);
325 return;
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* install notify handler */
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700329 if (bridge->type != BRIDGE_TYPE_HOST) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900330 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
331 status = acpi_remove_notify_handler(bridge->func->handle,
332 ACPI_SYSTEM_NOTIFY,
333 handle_hotplug_event_func);
334 if (ACPI_FAILURE(status))
335 err("failed to remove notify handler\n");
336 }
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700337 status = acpi_install_notify_handler(bridge->handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ACPI_SYSTEM_NOTIFY,
339 handle_hotplug_event_bridge,
340 bridge);
341
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700342 if (ACPI_FAILURE(status)) {
343 err("failed to register interrupt notify handler\n");
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900349/* find acpiphp_func from acpiphp_bridge */
350static struct acpiphp_func *acpiphp_bridge_handle_to_function(acpi_handle handle)
351{
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900352 struct acpiphp_bridge *bridge;
353 struct acpiphp_slot *slot;
354 struct acpiphp_func *func;
355
Alex Chiang58c08622009-10-26 21:25:27 -0600356 list_for_each_entry(bridge, &bridge_list, list) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900357 for (slot = bridge->slots; slot; slot = slot->next) {
Alex Chiang58c08622009-10-26 21:25:27 -0600358 list_for_each_entry(func, &slot->funcs, sibling) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900359 if (func->handle == handle)
360 return func;
361 }
362 }
363 }
364
365 return NULL;
366}
367
368
369static inline void config_p2p_bridge_flags(struct acpiphp_bridge *bridge)
370{
371 acpi_handle dummy_handle;
372
373 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
374 "_STA", &dummy_handle)))
375 bridge->flags |= BRIDGE_HAS_STA;
376
377 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
378 "_EJ0", &dummy_handle)))
379 bridge->flags |= BRIDGE_HAS_EJ0;
380
381 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
382 "_PS0", &dummy_handle)))
383 bridge->flags |= BRIDGE_HAS_PS0;
384
385 if (ACPI_SUCCESS(acpi_get_handle(bridge->handle,
386 "_PS3", &dummy_handle)))
387 bridge->flags |= BRIDGE_HAS_PS3;
388
389 /* is this ejectable p2p bridge? */
390 if (bridge->flags & BRIDGE_HAS_EJ0) {
391 struct acpiphp_func *func;
392
393 dbg("found ejectable p2p bridge\n");
394
395 /* make link between PCI bridge and PCI function */
396 func = acpiphp_bridge_handle_to_function(bridge->handle);
397 if (!func)
398 return;
399 bridge->func = func;
400 func->bridge = bridge;
401 }
402}
403
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405/* allocate and initialize host bridge data structure */
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900406static void add_host_bridge(struct acpi_pci_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 struct acpiphp_bridge *bridge;
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900409 acpi_handle handle = root->device->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100411 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (bridge == NULL)
413 return;
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 bridge->type = BRIDGE_TYPE_HOST;
416 bridge->handle = handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Alex Chiang6edd7672009-09-10 12:34:04 -0600418 bridge->pci_bus = root->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 init_bridge_misc(bridge);
421}
422
423
424/* allocate and initialize PCI-to-PCI bridge data structure */
Alex Chiang6edd7672009-09-10 12:34:04 -0600425static void add_p2p_bridge(acpi_handle *handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct acpiphp_bridge *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100429 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (bridge == NULL) {
431 err("out of memory\n");
432 return;
433 }
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 bridge->type = BRIDGE_TYPE_P2P;
436 bridge->handle = handle;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900437 config_p2p_bridge_flags(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Alex Chiang6edd7672009-09-10 12:34:04 -0600439 bridge->pci_dev = acpi_get_pci_dev(handle);
440 bridge->pci_bus = bridge->pci_dev->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (!bridge->pci_bus) {
442 err("This is not a PCI-to-PCI bridge!\n");
Rajesh Shah42f49a62005-04-28 00:25:53 -0700443 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Alex Chiang5d4a4b22009-03-30 10:50:14 -0600446 /*
447 * Grab a ref to the subordinate PCI bus in case the bus is
448 * removed via PCI core logical hotplug. The ref pins the bus
449 * (which we access during module unload).
450 */
451 get_device(&bridge->pci_bus->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 init_bridge_misc(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700454 return;
455 err:
Alex Chiang6edd7672009-09-10 12:34:04 -0600456 pci_dev_put(bridge->pci_dev);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700457 kfree(bridge);
458 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
461
462/* callback routine to find P2P bridges */
463static acpi_status
464find_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
465{
466 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alex Chiang6edd7672009-09-10 12:34:04 -0600469 dev = acpi_get_pci_dev(handle);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700470 if (!dev || !dev->subordinate)
471 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 /* check if this bridge has ejectable slots */
Alex Chiang6edd7672009-09-10 12:34:04 -0600474 if ((detect_ejectable_slots(handle) > 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 dbg("found PCI-to-PCI bridge at PCI %s\n", pci_name(dev));
Alex Chiang6edd7672009-09-10 12:34:04 -0600476 add_p2p_bridge(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Kenji Kaneshige7c8f25d2006-02-27 22:15:49 +0900479 /* search P2P bridges under this p2p bridge */
480 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800481 find_p2p_bridge, NULL, NULL, NULL);
Kenji Kaneshige7c8f25d2006-02-27 22:15:49 +0900482 if (ACPI_FAILURE(status))
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900483 warn("find_p2p_bridge failed (error code = 0x%x)\n", status);
Kenji Kaneshige7c8f25d2006-02-27 22:15:49 +0900484
Rajesh Shah42f49a62005-04-28 00:25:53 -0700485 out:
486 pci_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return AE_OK;
488}
489
490
491/* find hot-pluggable slots, and then find P2P bridge */
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900492static int add_bridge(struct acpi_pci_root *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400495 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 acpi_handle dummy_handle;
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900497 acpi_handle handle = root->device->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* if the bridge doesn't have _STA, we assume it is always there */
500 status = acpi_get_handle(handle, "_STA", &dummy_handle);
501 if (ACPI_SUCCESS(status)) {
502 status = acpi_evaluate_integer(handle, "_STA", NULL, &tmp);
503 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800504 dbg("%s: _STA evaluation failure\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506 }
507 if ((tmp & ACPI_STA_FUNCTIONING) == 0)
508 /* don't register this object */
509 return 0;
510 }
511
Rajesh Shah42f49a62005-04-28 00:25:53 -0700512 /* check if this bridge has ejectable slots */
Alex Chiang6edd7672009-09-10 12:34:04 -0600513 if (detect_ejectable_slots(handle) > 0) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700514 dbg("found PCI host-bus bridge with hot-pluggable slots\n");
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900515 add_host_bridge(root);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 /* search P2P bridges under this host bridge */
519 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800520 find_p2p_bridge, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 if (ACPI_FAILURE(status))
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900523 warn("find_p2p_bridge failed (error code = 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 return 0;
526}
527
Rajesh Shah42f49a62005-04-28 00:25:53 -0700528static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
529{
Alex Chiang58c08622009-10-26 21:25:27 -0600530 struct acpiphp_bridge *bridge;
531
532 list_for_each_entry(bridge, &bridge_list, list)
Rajesh Shah42f49a62005-04-28 00:25:53 -0700533 if (bridge->handle == handle)
534 return bridge;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700535
536 return NULL;
537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Rajesh Shah364d5092005-04-28 00:25:54 -0700539static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Alex Chiang58c08622009-10-26 21:25:27 -0600541 struct acpiphp_slot *slot, *next;
542 struct acpiphp_func *func, *tmp;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700543 acpi_status status;
Rajesh Shah364d5092005-04-28 00:25:54 -0700544 acpi_handle handle = bridge->handle;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700545
546 status = acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
547 handle_hotplug_event_bridge);
548 if (ACPI_FAILURE(status))
549 err("failed to remove notify handler\n");
550
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900551 if ((bridge->type != BRIDGE_TYPE_HOST) &&
552 ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func)) {
553 status = acpi_install_notify_handler(bridge->func->handle,
554 ACPI_SYSTEM_NOTIFY,
555 handle_hotplug_event_func,
556 bridge->func);
557 if (ACPI_FAILURE(status))
558 err("failed to install interrupt notify handler\n");
559 }
560
Rajesh Shah42f49a62005-04-28 00:25:53 -0700561 slot = bridge->slots;
562 while (slot) {
Alex Chiang58c08622009-10-26 21:25:27 -0600563 next = slot->next;
564 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400565 if (is_dock_device(func->handle)) {
566 unregister_hotplug_dock_device(func->handle);
567 unregister_dock_notifier(&func->nb);
568 }
Kristen Accardi20416ea2006-02-23 17:56:03 -0800569 if (!(func->flags & FUNC_HAS_DCK)) {
570 status = acpi_remove_notify_handler(func->handle,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700571 ACPI_SYSTEM_NOTIFY,
572 handle_hotplug_event_func);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800573 if (ACPI_FAILURE(status))
574 err("failed to remove notify handler\n");
575 }
Alex Chiang58c08622009-10-26 21:25:27 -0600576 list_del(&func->sibling);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700577 kfree(func);
578 }
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800579 acpiphp_unregister_hotplug_slot(slot);
580 list_del(&slot->funcs);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700581 kfree(slot);
582 slot = next;
583 }
584
Alex Chiang5d4a4b22009-03-30 10:50:14 -0600585 /*
586 * Only P2P bridges have a pci_dev
587 */
588 if (bridge->pci_dev)
589 put_device(&bridge->pci_bus->dev);
590
Rajesh Shah42f49a62005-04-28 00:25:53 -0700591 pci_dev_put(bridge->pci_dev);
592 list_del(&bridge->list);
593 kfree(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Rajesh Shah364d5092005-04-28 00:25:54 -0700596static acpi_status
597cleanup_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
598{
599 struct acpiphp_bridge *bridge;
600
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900601 /* cleanup p2p bridges under this P2P bridge
602 in a depth-first manner */
603 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800604 cleanup_p2p_bridge, NULL, NULL, NULL);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900605
Alex Chianga13307c2008-07-01 20:02:23 -0600606 bridge = acpiphp_handle_to_bridge(handle);
607 if (bridge)
608 cleanup_bridge(bridge);
609
Rajesh Shah364d5092005-04-28 00:25:54 -0700610 return AE_OK;
611}
612
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900613static void remove_bridge(struct acpi_pci_root *root)
Rajesh Shah364d5092005-04-28 00:25:54 -0700614{
615 struct acpiphp_bridge *bridge;
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900616 acpi_handle handle = root->device->handle;
Rajesh Shah364d5092005-04-28 00:25:54 -0700617
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900618 /* cleanup p2p bridges under this host bridge
619 in a depth-first manner */
620 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
Lin Ming22635762009-11-13 10:06:08 +0800621 (u32)1, cleanup_p2p_bridge, NULL, NULL, NULL);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900622
Alex Chianga13307c2008-07-01 20:02:23 -0600623 /*
624 * On root bridges with hotplug slots directly underneath (ie,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300625 * no p2p bridge between), we call cleanup_bridge().
Alex Chianga13307c2008-07-01 20:02:23 -0600626 *
627 * The else clause cleans up root bridges that either had no
628 * hotplug slots at all, or had a p2p bridge underneath.
629 */
Rajesh Shah364d5092005-04-28 00:25:54 -0700630 bridge = acpiphp_handle_to_bridge(handle);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900631 if (bridge)
Rajesh Shah364d5092005-04-28 00:25:54 -0700632 cleanup_bridge(bridge);
Alex Chianga13307c2008-07-01 20:02:23 -0600633 else
634 acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
635 handle_hotplug_event_bridge);
Rajesh Shah364d5092005-04-28 00:25:54 -0700636}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638static int power_on_slot(struct acpiphp_slot *slot)
639{
640 acpi_status status;
641 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 int retval = 0;
643
644 /* if already enabled, just skip */
645 if (slot->flags & SLOT_POWEREDON)
646 goto err_exit;
647
Alex Chiang58c08622009-10-26 21:25:27 -0600648 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (func->flags & FUNC_HAS_PS0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800650 dbg("%s: executing _PS0\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL);
652 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800653 warn("%s: _PS0 failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 retval = -1;
655 goto err_exit;
656 } else
657 break;
658 }
659 }
660
661 /* TBD: evaluate _STA to check if the slot is enabled */
662
663 slot->flags |= SLOT_POWEREDON;
664
665 err_exit:
666 return retval;
667}
668
669
670static int power_off_slot(struct acpiphp_slot *slot)
671{
672 acpi_status status;
673 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 int retval = 0;
676
677 /* if already disabled, just skip */
678 if ((slot->flags & SLOT_POWEREDON) == 0)
679 goto err_exit;
680
Alex Chiang58c08622009-10-26 21:25:27 -0600681 list_for_each_entry(func, &slot->funcs, sibling) {
Rajesh Shah2f523b12005-04-28 00:25:55 -0700682 if (func->flags & FUNC_HAS_PS3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL);
684 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800685 warn("%s: _PS3 failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 retval = -1;
687 goto err_exit;
688 } else
689 break;
690 }
691 }
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* TBD: evaluate _STA to check if the slot is disabled */
694
695 slot->flags &= (~SLOT_POWEREDON);
696
697 err_exit:
698 return retval;
699}
700
701
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800702
703/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800704 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800705 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800706 */
707static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
708{
709 struct list_head *tmp;
710 unsigned char max, n;
711
712 /*
713 * pci_bus_max_busnr will return the highest
714 * reserved busnr for all these children.
715 * that is equivalent to the bus->subordinate
716 * value. We don't want to use the parent's
717 * bus->subordinate value because it could have
718 * padding in it.
719 */
Yinghai Lub918c622012-05-17 18:51:11 -0700720 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800721
722 list_for_each(tmp, &bus->children) {
723 n = pci_bus_max_busnr(pci_bus_b(tmp));
724 if (n > max)
725 max = n;
726 }
727 return max;
728}
729
730
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800731/**
732 * acpiphp_bus_add - add a new bus to acpi subsystem
733 * @func: acpiphp_func of the bridge
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800734 */
735static int acpiphp_bus_add(struct acpiphp_func *func)
736{
Rafael J. Wysocki636458d2012-12-21 00:36:47 +0100737 struct acpi_device *device;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800738 int ret_val;
739
Kristen Accardi20416ea2006-02-23 17:56:03 -0800740 if (!acpi_bus_get_device(func->handle, &device)) {
741 dbg("bus exists... trim\n");
742 /* this shouldn't be in here, so remove
743 * the bus then re-add it...
744 */
Rafael J. Wysockiae281792013-01-15 13:23:53 +0100745 ret_val = acpi_bus_trim(device);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800746 dbg("acpi_bus_trim return %x\n", ret_val);
747 }
748
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +0100749 ret_val = acpi_bus_scan(func->handle);
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100750 if (!ret_val)
751 ret_val = acpi_bus_get_device(func->handle, &device);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800752
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100753 if (ret_val)
754 dbg("error adding bus, %x\n", -ret_val);
755
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800756 return ret_val;
757}
758
759
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900760/**
761 * acpiphp_bus_trim - trim a bus from acpi subsystem
762 * @handle: handle to acpi namespace
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900763 */
Adrian Bunk6d47a5e2006-08-14 23:07:38 -0700764static int acpiphp_bus_trim(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900765{
766 struct acpi_device *device;
767 int retval;
768
769 retval = acpi_bus_get_device(handle, &device);
770 if (retval) {
771 dbg("acpi_device not found\n");
772 return retval;
773 }
774
Rafael J. Wysockiae281792013-01-15 13:23:53 +0100775 retval = acpi_bus_trim(device);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900776 if (retval)
777 err("cannot remove from acpi list\n");
778
779 return retval;
780}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800781
Shaohua Lid0607052010-02-25 10:59:34 +0800782static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
783{
784 struct acpiphp_func *func;
785 union acpi_object params[2];
786 struct acpi_object_list arg_list;
787
788 list_for_each_entry(func, &slot->funcs, sibling) {
789 arg_list.count = 2;
790 arg_list.pointer = params;
791 params[0].type = ACPI_TYPE_INTEGER;
792 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
793 params[1].type = ACPI_TYPE_INTEGER;
794 params[1].integer.value = 1;
795 /* _REG is optional, we don't care about if there is failure */
796 acpi_evaluate_object(func->handle, "_REG", &arg_list, NULL);
797 }
798}
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/**
801 * enable_device - enable, configure a slot
802 * @slot: slot to be enabled
803 *
804 * This function should be called per *physical slot*,
805 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 */
Sam Ravnborg0ab2b572008-02-17 10:45:28 +0100807static int __ref enable_device(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct pci_dev *dev;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700810 struct pci_bus *bus = slot->bridge->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct acpiphp_func *func;
812 int retval = 0;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700813 int num, max, pass;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900814 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (slot->flags & SLOT_ENABLED)
817 goto err_exit;
818
Rajesh Shah42f49a62005-04-28 00:25:53 -0700819 num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
820 if (num == 0) {
Amos Kongf382a082011-11-25 15:03:07 +0800821 /* Maybe only part of funcs are added. */
822 dbg("No new device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 goto err_exit;
824 }
825
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800826 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700827 for (pass = 0; pass < 2; pass++) {
828 list_for_each_entry(dev, &bus->devices, bus_list) {
829 if (PCI_SLOT(dev->devfn) != slot->device)
830 continue;
831 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800832 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700833 max = pci_scan_bridge(bus, dev, max, pass);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900834 if (pass && dev->subordinate)
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800835 pci_bus_size_bridges(dev->subordinate);
836 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839
Alex Chiang58c08622009-10-26 21:25:27 -0600840 list_for_each_entry(func, &slot->funcs, sibling)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900841 acpiphp_bus_add(func);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900842
Rajesh Shah42f49a62005-04-28 00:25:53 -0700843 pci_bus_assign_resources(bus);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700844 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600845 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800846 acpiphp_set_acpi_region(slot);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700847 pci_enable_bridges(bus);
Ian Campbell69643e42011-05-11 17:00:32 +0100848
849 list_for_each_entry(dev, &bus->devices, bus_list) {
850 /* Assume that newly added devices are powered on already. */
851 if (!dev->is_added)
852 dev->current_state = PCI_D0;
853 }
854
Rajesh Shah42f49a62005-04-28 00:25:53 -0700855 pci_bus_add_devices(bus);
856
Amos Kongf382a082011-11-25 15:03:07 +0800857 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600858 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600859 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
860 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800861 if (!dev) {
862 /* Do not set SLOT_ENABLED flag if some funcs
863 are not added. */
864 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900865 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800866 }
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900867
Alex Chiang9d911d72009-05-21 16:21:15 -0600868 if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE &&
869 dev->hdr_type != PCI_HEADER_TYPE_CARDBUS) {
870 pci_dev_put(dev);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900871 continue;
Alex Chiang9d911d72009-05-21 16:21:15 -0600872 }
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900873
874 status = find_p2p_bridge(func->handle, (u32)1, bus, NULL);
875 if (ACPI_FAILURE(status))
876 warn("find_p2p_bridge failed (error code = 0x%x)\n",
877 status);
Alex Chiang9d911d72009-05-21 16:21:15 -0600878 pci_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 err_exit:
883 return retval;
884}
885
Amos Kongce29ca32012-05-23 10:20:35 -0600886/* return first device in slot, acquiring a reference on it */
887static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
888{
889 struct pci_bus *bus = slot->bridge->pci_bus;
890 struct pci_dev *dev;
891 struct pci_dev *ret = NULL;
892
893 down_read(&pci_bus_sem);
894 list_for_each_entry(dev, &bus->devices, bus_list)
895 if (PCI_SLOT(dev->devfn) == slot->device) {
896 ret = pci_dev_get(dev);
897 break;
898 }
899 up_read(&pci_bus_sem);
900
901 return ret;
902}
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/**
905 * disable_device - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800906 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
908static int disable_device(struct acpiphp_slot *slot)
909{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600911 struct pci_dev *pdev;
Amos Kongf382a082011-11-25 15:03:07 +0800912 struct pci_bus *bus = slot->bridge->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Amos Kongf382a082011-11-25 15:03:07 +0800914 /* The slot will be enabled when func 0 is added, so check
915 func 0 before disable the slot. */
916 pdev = pci_get_slot(bus, PCI_DEVFN(slot->device, 0));
917 if (!pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto err_exit;
Amos Kong638f2932012-05-22 21:58:40 -0600919 pci_dev_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Alex Chiang9d911d72009-05-21 16:21:15 -0600921 list_for_each_entry(func, &slot->funcs, sibling) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900922 if (func->bridge) {
923 /* cleanup p2p bridges under this P2P bridge */
924 cleanup_p2p_bridge(func->bridge->handle,
925 (u32)1, NULL, NULL);
926 func->bridge = NULL;
927 }
Amos Kongce29ca32012-05-23 10:20:35 -0600928 }
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900929
Amos Kongce29ca32012-05-23 10:20:35 -0600930 /*
931 * enable_device() enumerates all functions in this device via
932 * pci_scan_slot(), whether they have associated ACPI hotplug
933 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
934 * here.
935 */
936 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600937 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600938 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700939 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700940
Alex Chiang9d911d72009-05-21 16:21:15 -0600941 list_for_each_entry(func, &slot->funcs, sibling) {
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900942 acpiphp_bus_trim(func->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944
945 slot->flags &= (~SLOT_ENABLED);
946
Alex Chiang9d911d72009-05-21 16:21:15 -0600947err_exit:
948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951
952/**
953 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800954 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800956 * If a slot has _STA for each function and if any one of them
957 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800959 * If a slot doesn't have _STA and if any one of its functions'
960 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800962 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
964static unsigned int get_slot_status(struct acpiphp_slot *slot)
965{
966 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400967 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 u32 dvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 struct acpiphp_func *func;
970
Alex Chiang58c08622009-10-26 21:25:27 -0600971 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (func->flags & FUNC_HAS_STA) {
973 status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta);
974 if (ACPI_SUCCESS(status) && sta)
975 break;
976 } else {
977 pci_bus_read_config_dword(slot->bridge->pci_bus,
978 PCI_DEVFN(slot->device,
979 func->function),
980 PCI_VENDOR_ID, &dvid);
981 if (dvid != 0xffffffff) {
982 sta = ACPI_STA_ALL;
983 break;
984 }
985 }
986 }
987
988 return (unsigned int)sta;
989}
990
991/**
Rajesh Shah8d50e332005-04-28 00:25:57 -0700992 * acpiphp_eject_slot - physically eject the slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800993 * @slot: ACPI PHP slot
Rajesh Shah8d50e332005-04-28 00:25:57 -0700994 */
Gary Hadebfceafc2007-07-05 11:10:46 -0700995int acpiphp_eject_slot(struct acpiphp_slot *slot)
Rajesh Shah8d50e332005-04-28 00:25:57 -0700996{
997 acpi_status status;
998 struct acpiphp_func *func;
Rajesh Shah8d50e332005-04-28 00:25:57 -0700999 struct acpi_object_list arg_list;
1000 union acpi_object arg;
1001
Alex Chiang58c08622009-10-26 21:25:27 -06001002 list_for_each_entry(func, &slot->funcs, sibling) {
Rajesh Shah8d50e332005-04-28 00:25:57 -07001003 /* We don't want to call _EJ0 on non-existing functions. */
1004 if ((func->flags & FUNC_HAS_EJ0)) {
1005 /* _EJ0 method take one argument */
1006 arg_list.count = 1;
1007 arg_list.pointer = &arg;
1008 arg.type = ACPI_TYPE_INTEGER;
1009 arg.integer.value = 1;
1010
1011 status = acpi_evaluate_object(func->handle, "_EJ0", &arg_list, NULL);
1012 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001013 warn("%s: _EJ0 failed\n", __func__);
Rajesh Shah8d50e332005-04-28 00:25:57 -07001014 return -1;
1015 } else
1016 break;
1017 }
1018 }
1019 return 0;
1020}
1021
1022/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -08001024 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 *
1026 * Iterate over all slots under this bridge and make sure that if a
1027 * card is present they are enabled, and if not they are disabled.
1028 */
1029static int acpiphp_check_bridge(struct acpiphp_bridge *bridge)
1030{
1031 struct acpiphp_slot *slot;
1032 int retval = 0;
1033 int enabled, disabled;
1034
1035 enabled = disabled = 0;
1036
1037 for (slot = bridge->slots; slot; slot = slot->next) {
1038 unsigned int status = get_slot_status(slot);
1039 if (slot->flags & SLOT_ENABLED) {
1040 if (status == ACPI_STA_ALL)
1041 continue;
1042 retval = acpiphp_disable_slot(slot);
1043 if (retval) {
1044 err("Error occurred in disabling\n");
1045 goto err_exit;
Rajesh Shah8d50e332005-04-28 00:25:57 -07001046 } else {
1047 acpiphp_eject_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049 disabled++;
1050 } else {
1051 if (status != ACPI_STA_ALL)
1052 continue;
1053 retval = acpiphp_enable_slot(slot);
1054 if (retval) {
1055 err("Error occurred in enabling\n");
1056 goto err_exit;
1057 }
1058 enabled++;
1059 }
1060 }
1061
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001062 dbg("%s: %d enabled, %d disabled\n", __func__, enabled, disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 err_exit:
1065 return retval;
1066}
1067
Bjorn Helgaasfca68252009-09-14 16:35:10 -06001068static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001069{
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001070 struct pci_dev *dev;
1071
Bjorn Helgaase81995b2009-09-14 16:35:35 -06001072 list_for_each_entry(dev, &bus->devices, bus_list)
1073 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001074}
1075
1076/*
1077 * Remove devices for which we could not assign resources, call
1078 * arch specific code to fix-up the bus
1079 */
1080static void acpiphp_sanitize_bus(struct pci_bus *bus)
1081{
1082 struct pci_dev *dev;
1083 int i;
1084 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
1085
1086 list_for_each_entry(dev, &bus->devices, bus_list) {
1087 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
1088 struct resource *res = &dev->resource[i];
1089 if ((res->flags & type_mask) && !res->start &&
1090 res->end) {
1091 /* Could not assign a required resources
1092 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -08001093 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001094 break;
1095 }
1096 }
1097 }
1098}
1099
1100/* Program resources in newly inserted bridge */
1101static int acpiphp_configure_bridge (acpi_handle handle)
1102{
Alex Chiang7f538662009-09-10 12:34:09 -06001103 struct pci_bus *bus;
1104
1105 if (acpi_is_root_bridge(handle)) {
1106 struct acpi_pci_root *root = acpi_pci_find_root(handle);
1107 bus = root->bus;
1108 } else {
1109 struct pci_dev *pdev = acpi_get_pci_dev(handle);
1110 bus = pdev->subordinate;
1111 pci_dev_put(pdev);
1112 }
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001113
1114 pci_bus_size_bridges(bus);
1115 pci_bus_assign_resources(bus);
1116 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -06001117 acpiphp_set_hpp_values(bus);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001118 pci_enable_bridges(bus);
1119 return 0;
1120}
1121
1122static void handle_bridge_insertion(acpi_handle handle, u32 type)
1123{
Rafael J. Wysocki636458d2012-12-21 00:36:47 +01001124 struct acpi_device *device;
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001125
1126 if ((type != ACPI_NOTIFY_BUS_CHECK) &&
1127 (type != ACPI_NOTIFY_DEVICE_CHECK)) {
1128 err("unexpected notification type %d\n", type);
1129 return;
1130 }
1131
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001132 if (acpi_bus_scan(handle)) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001133 err("cannot add bridge to acpi list\n");
1134 return;
1135 }
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01001136 if (acpi_bus_get_device(handle, &device)) {
1137 err("ACPI device object missing\n");
1138 return;
1139 }
Rafael J. Wysocki02f57c62012-12-21 00:36:46 +01001140 if (!acpiphp_configure_bridge(handle))
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001141 add_bridge(handle);
1142 else
1143 err("cannot configure and start bridge\n");
1144
1145}
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147/*
1148 * ACPI event handlers
1149 */
1150
Gary Hade0bbd6422007-07-05 11:10:48 -07001151static acpi_status
1152count_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1153{
1154 int *count = (int *)context;
1155 struct acpiphp_bridge *bridge;
1156
1157 bridge = acpiphp_handle_to_bridge(handle);
1158 if (bridge)
1159 (*count)++;
1160 return AE_OK ;
1161}
1162
1163static acpi_status
1164check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1165{
1166 struct acpiphp_bridge *bridge;
1167 char objname[64];
1168 struct acpi_buffer buffer = { .length = sizeof(objname),
1169 .pointer = objname };
1170
1171 bridge = acpiphp_handle_to_bridge(handle);
1172 if (bridge) {
1173 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1174 dbg("%s: re-enumerating slots under %s\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001175 __func__, objname);
Gary Hade0bbd6422007-07-05 11:10:48 -07001176 acpiphp_check_bridge(bridge);
1177 }
1178 return AE_OK ;
1179}
1180
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001181struct acpiphp_hp_work {
1182 struct work_struct work;
1183 acpi_handle handle;
1184 u32 type;
1185 void *context;
1186};
1187
1188static void alloc_acpiphp_hp_work(acpi_handle handle, u32 type,
1189 void *context,
1190 void (*func)(struct work_struct *work))
1191{
1192 struct acpiphp_hp_work *hp_work;
1193 int ret;
1194
1195 hp_work = kmalloc(sizeof(*hp_work), GFP_KERNEL);
1196 if (!hp_work)
1197 return;
1198
1199 hp_work->handle = handle;
1200 hp_work->type = type;
1201 hp_work->context = context;
1202
1203 INIT_WORK(&hp_work->work, func);
1204 ret = queue_work(kacpi_hotplug_wq, &hp_work->work);
1205 if (!ret)
1206 kfree(hp_work);
1207}
1208
1209static void _handle_hotplug_event_bridge(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
1211 struct acpiphp_bridge *bridge;
1212 char objname[64];
1213 struct acpi_buffer buffer = { .length = sizeof(objname),
1214 .pointer = objname };
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001215 struct acpi_device *device;
Gary Hade0bbd6422007-07-05 11:10:48 -07001216 int num_sub_bridges = 0;
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001217 struct acpiphp_hp_work *hp_work;
1218 acpi_handle handle;
1219 u32 type;
1220
1221 hp_work = container_of(work, struct acpiphp_hp_work, work);
1222 handle = hp_work->handle;
1223 type = hp_work->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001225 if (acpi_bus_get_device(handle, &device)) {
1226 /* This bridge must have just been physically inserted */
1227 handle_bridge_insertion(handle, type);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001228 goto out;
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001229 }
1230
1231 bridge = acpiphp_handle_to_bridge(handle);
Gary Hade0bbd6422007-07-05 11:10:48 -07001232 if (type == ACPI_NOTIFY_BUS_CHECK) {
1233 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001234 count_sub_bridges, NULL, &num_sub_bridges, NULL);
Gary Hade0bbd6422007-07-05 11:10:48 -07001235 }
1236
1237 if (!bridge && !num_sub_bridges) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001238 err("cannot get bridge info\n");
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001239 goto out;
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1243
1244 switch (type) {
1245 case ACPI_NOTIFY_BUS_CHECK:
1246 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001247 dbg("%s: Bus check notify on %s\n", __func__, objname);
Gary Hade0bbd6422007-07-05 11:10:48 -07001248 if (bridge) {
1249 dbg("%s: re-enumerating slots under %s\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001250 __func__, objname);
Gary Hade0bbd6422007-07-05 11:10:48 -07001251 acpiphp_check_bridge(bridge);
1252 }
1253 if (num_sub_bridges)
1254 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
Lin Ming22635762009-11-13 10:06:08 +08001255 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 break;
1257
1258 case ACPI_NOTIFY_DEVICE_CHECK:
1259 /* device check */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001260 dbg("%s: Device check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 acpiphp_check_bridge(bridge);
1262 break;
1263
1264 case ACPI_NOTIFY_DEVICE_WAKE:
1265 /* wake event */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001266 dbg("%s: Device wake notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 break;
1268
1269 case ACPI_NOTIFY_EJECT_REQUEST:
1270 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001271 dbg("%s: Device eject notify on %s\n", __func__, objname);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +09001272 if ((bridge->type != BRIDGE_TYPE_HOST) &&
1273 (bridge->flags & BRIDGE_HAS_EJ0)) {
1274 struct acpiphp_slot *slot;
1275 slot = bridge->func->slot;
1276 if (!acpiphp_disable_slot(slot))
1277 acpiphp_eject_slot(slot);
1278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 break;
1280
1281 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1282 printk(KERN_ERR "Device %s cannot be configured due"
1283 " to a frequency mismatch\n", objname);
1284 break;
1285
1286 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1287 printk(KERN_ERR "Device %s cannot be configured due"
1288 " to a bus mode mismatch\n", objname);
1289 break;
1290
1291 case ACPI_NOTIFY_POWER_FAULT:
1292 printk(KERN_ERR "Device %s has suffered a power fault\n",
1293 objname);
1294 break;
1295
1296 default:
1297 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1298 break;
1299 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001300
1301out:
1302 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305/**
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001306 * handle_hotplug_event_bridge - handle ACPI event on bridges
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 * @handle: Notify()'ed acpi_handle
1308 * @type: Notify code
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001309 * @context: pointer to acpiphp_bridge structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 *
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001311 * Handles ACPI event notification on {host,p2p} bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 */
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001313static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
1314 void *context)
1315{
1316 /*
1317 * Currently the code adds all hotplug events to the kacpid_wq
1318 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1319 * The proper way to fix this is to reorganize the code so that
1320 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1321 * For now just re-add this work to the kacpi_hotplug_wq so we
1322 * don't deadlock on hotplug actions.
1323 */
1324 alloc_acpiphp_hp_work(handle, type, context,
1325 _handle_hotplug_event_bridge);
1326}
1327
1328static void _handle_hotplug_event_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 struct acpiphp_func *func;
1331 char objname[64];
1332 struct acpi_buffer buffer = { .length = sizeof(objname),
1333 .pointer = objname };
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001334 struct acpiphp_hp_work *hp_work;
1335 acpi_handle handle;
1336 u32 type;
1337 void *context;
1338
1339 hp_work = container_of(work, struct acpiphp_hp_work, work);
1340 handle = hp_work->handle;
1341 type = hp_work->type;
1342 context = hp_work->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1345
1346 func = (struct acpiphp_func *)context;
1347
1348 switch (type) {
1349 case ACPI_NOTIFY_BUS_CHECK:
1350 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001351 dbg("%s: Bus check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 acpiphp_enable_slot(func->slot);
1353 break;
1354
1355 case ACPI_NOTIFY_DEVICE_CHECK:
1356 /* device check : re-enumerate from parent bus */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001357 dbg("%s: Device check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 acpiphp_check_bridge(func->slot->bridge);
1359 break;
1360
1361 case ACPI_NOTIFY_DEVICE_WAKE:
1362 /* wake event */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001363 dbg("%s: Device wake notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 break;
1365
1366 case ACPI_NOTIFY_EJECT_REQUEST:
1367 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001368 dbg("%s: Device eject notify on %s\n", __func__, objname);
Rajesh Shah8d50e332005-04-28 00:25:57 -07001369 if (!(acpiphp_disable_slot(func->slot)))
1370 acpiphp_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 break;
1372
1373 default:
1374 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1375 break;
1376 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001377
1378 kfree(hp_work); /* allocated in handle_hotplug_event_func */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001381/**
1382 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1383 * @handle: Notify()'ed acpi_handle
1384 * @type: Notify code
1385 * @context: pointer to acpiphp_func structure
1386 *
1387 * Handles ACPI event notification on slots.
1388 */
1389static void handle_hotplug_event_func(acpi_handle handle, u32 type,
1390 void *context)
1391{
1392 /*
1393 * Currently the code adds all hotplug events to the kacpid_wq
1394 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1395 * The proper way to fix this is to reorganize the code so that
1396 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1397 * For now just re-add this work to the kacpi_hotplug_wq so we
1398 * don't deadlock on hotplug actions.
1399 */
1400 alloc_acpiphp_hp_work(handle, type, context,
1401 _handle_hotplug_event_func);
1402}
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001403
1404static acpi_status
1405find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1406{
1407 int *count = (int *)context;
1408
Rafael J. Wysocki0d52f542011-10-22 00:43:38 +02001409 if (!acpi_is_root_bridge(handle))
1410 return AE_OK;
1411
Rafael J. Wysocki0d52f542011-10-22 00:43:38 +02001412 (*count)++;
1413 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1414 handle_hotplug_event_bridge, NULL);
1415
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001416 return AE_OK ;
1417}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419static struct acpi_pci_driver acpi_pci_hp_driver = {
1420 .add = add_bridge,
1421 .remove = remove_bridge,
1422};
1423
1424/**
1425 * acpiphp_glue_init - initializes all PCI hotplug - ACPI glue data structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 */
1427int __init acpiphp_glue_init(void)
1428{
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001429 int num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001431 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Lin Ming22635762009-11-13 10:06:08 +08001432 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 if (num <= 0)
1435 return -1;
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001436 else
1437 acpi_pci_register_driver(&acpi_pci_hp_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 return 0;
1440}
1441
1442
1443/**
1444 * acpiphp_glue_exit - terminates all PCI hotplug - ACPI glue data structures
1445 *
Randy Dunlap26e6c662007-11-28 09:04:30 -08001446 * This function frees all data allocated in acpiphp_glue_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 */
Kristen Carlson Accardi031f30d2006-12-16 15:26:04 -08001448void acpiphp_glue_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 acpi_pci_unregister_driver(&acpi_pci_hp_driver);
1451}
1452
1453
1454/**
1455 * acpiphp_get_num_slots - count number of slots in a system
1456 */
1457int __init acpiphp_get_num_slots(void)
1458{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct acpiphp_bridge *bridge;
Akinobu Mita467c4422006-10-30 13:07:58 -08001460 int num_slots = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Alex Chiang58c08622009-10-26 21:25:27 -06001462 list_for_each_entry(bridge, &bridge_list, list) {
Rajesh Shah42f49a62005-04-28 00:25:53 -07001463 dbg("Bus %04x:%02x has %d slot%s\n",
1464 pci_domain_nr(bridge->pci_bus),
1465 bridge->pci_bus->number, bridge->nr_slots,
1466 bridge->nr_slots == 1 ? "" : "s");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 num_slots += bridge->nr_slots;
1468 }
1469
Rajesh Shah42f49a62005-04-28 00:25:53 -07001470 dbg("Total %d slots\n", num_slots);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return num_slots;
1472}
1473
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475/**
1476 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001477 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 */
1479int acpiphp_enable_slot(struct acpiphp_slot *slot)
1480{
1481 int retval;
1482
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001483 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 /* wake up all functions */
1486 retval = power_on_slot(slot);
1487 if (retval)
1488 goto err_exit;
1489
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001490 if (get_slot_status(slot) == ACPI_STA_ALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 /* configure all functions */
1492 retval = enable_device(slot);
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001493 if (retval)
1494 power_off_slot(slot);
1495 } else {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001496 dbg("%s: Slot status is not ACPI_STA_ALL\n", __func__);
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001497 power_off_slot(slot);
1498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001501 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return retval;
1503}
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505/**
1506 * acpiphp_disable_slot - power off slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001507 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
1509int acpiphp_disable_slot(struct acpiphp_slot *slot)
1510{
1511 int retval = 0;
1512
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001513 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 /* unconfigure all functions */
1516 retval = disable_device(slot);
1517 if (retval)
1518 goto err_exit;
1519
1520 /* power off all functions */
1521 retval = power_off_slot(slot);
1522 if (retval)
1523 goto err_exit;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001526 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return retval;
1528}
1529
1530
1531/*
1532 * slot enabled: 1
1533 * slot disabled: 0
1534 */
1535u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1536{
Rajesh Shah8d50e332005-04-28 00:25:57 -07001537 return (slot->flags & SLOT_POWEREDON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
1540
1541/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001542 * latch open: 1
1543 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 */
1545u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1546{
1547 unsigned int sta;
1548
1549 sta = get_slot_status(slot);
1550
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001551 return (sta & ACPI_STA_SHOW_IN_UI) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
1554
1555/*
1556 * adapter presence : 1
1557 * absence : 0
1558 */
1559u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1560{
1561 unsigned int sta;
1562
1563 sta = get_slot_status(slot);
1564
1565 return (sta == 0) ? 0 : 1;
1566}