blob: cd929aed3613314068ed7a4baf2bb6e5c6cb9f1f [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
Lan Tianyubd950792013-09-24 18:11:48 -060042#define pr_fmt(fmt) "acpiphp_glue: " fmt
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/init.h>
45#include <linux/module.h>
46
47#include <linux/kernel.h>
48#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070049#include <linux/pci_hotplug.h>
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090050#include <linux/pci-acpi.h>
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +020051#include <linux/pm_runtime.h>
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +010052#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Prarit Bhargava6af8bef2011-09-28 19:40:53 -040054#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include "acpiphp.h"
58
59static LIST_HEAD(bridge_list);
Jiang Liu3d54a312013-04-12 05:44:28 +000060static DEFINE_MUTEX(bridge_mutex);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020061static DEFINE_MUTEX(acpiphp_context_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Rafael J. Wysocki87831272013-07-13 23:27:24 +020063static void handle_hotplug_event(acpi_handle handle, u32 type, void *data);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070064static void acpiphp_sanitize_bus(struct pci_bus *bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -060065static void acpiphp_set_hpp_values(struct pci_bus *bus);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +020066static void hotplug_event(acpi_handle handle, u32 type, void *data);
Jiang Liu3d54a312013-04-12 05:44:28 +000067static void free_bridge(struct kref *kref);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070068
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020069static void acpiphp_context_handler(acpi_handle handle, void *context)
70{
71 /* Intentionally empty. */
72}
73
74/**
75 * acpiphp_init_context - Create hotplug context and grab a reference to it.
76 * @handle: ACPI object handle to create the context for.
77 *
78 * Call under acpiphp_context_lock.
79 */
80static struct acpiphp_context *acpiphp_init_context(acpi_handle handle)
81{
82 struct acpiphp_context *context;
83 acpi_status status;
84
85 context = kzalloc(sizeof(*context), GFP_KERNEL);
86 if (!context)
87 return NULL;
88
89 context->handle = handle;
90 context->refcount = 1;
91 status = acpi_attach_data(handle, acpiphp_context_handler, context);
92 if (ACPI_FAILURE(status)) {
93 kfree(context);
94 return NULL;
95 }
96 return context;
97}
98
99/**
100 * acpiphp_get_context - Get hotplug context and grab a reference to it.
101 * @handle: ACPI object handle to get the context for.
102 *
103 * Call under acpiphp_context_lock.
104 */
105static struct acpiphp_context *acpiphp_get_context(acpi_handle handle)
106{
107 struct acpiphp_context *context = NULL;
108 acpi_status status;
109 void *data;
110
111 status = acpi_get_data(handle, acpiphp_context_handler, &data);
112 if (ACPI_SUCCESS(status)) {
113 context = data;
114 context->refcount++;
115 }
116 return context;
117}
118
119/**
120 * acpiphp_put_context - Drop a reference to ACPI hotplug context.
121 * @handle: ACPI object handle to put the context for.
122 *
123 * The context object is removed if there are no more references to it.
124 *
125 * Call under acpiphp_context_lock.
126 */
127static void acpiphp_put_context(struct acpiphp_context *context)
128{
129 if (--context->refcount)
130 return;
131
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200132 WARN_ON(context->bridge);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200133 acpi_detach_data(context->handle, acpiphp_context_handler);
134 kfree(context);
135}
136
Jiang Liu3d54a312013-04-12 05:44:28 +0000137static inline void get_bridge(struct acpiphp_bridge *bridge)
138{
139 kref_get(&bridge->ref);
140}
141
142static inline void put_bridge(struct acpiphp_bridge *bridge)
143{
144 kref_put(&bridge->ref, free_bridge);
145}
146
147static void free_bridge(struct kref *kref)
148{
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200149 struct acpiphp_context *context;
Jiang Liu3d54a312013-04-12 05:44:28 +0000150 struct acpiphp_bridge *bridge;
151 struct acpiphp_slot *slot, *next;
152 struct acpiphp_func *func, *tmp;
153
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200154 mutex_lock(&acpiphp_context_lock);
155
Jiang Liu3d54a312013-04-12 05:44:28 +0000156 bridge = container_of(kref, struct acpiphp_bridge, ref);
157
158 list_for_each_entry_safe(slot, next, &bridge->slots, node) {
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200159 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling)
160 acpiphp_put_context(func_to_context(func));
161
Jiang Liu3d54a312013-04-12 05:44:28 +0000162 kfree(slot);
163 }
164
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200165 context = bridge->context;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200166 /* Root bridges will not have hotplug context. */
167 if (context) {
168 /* Release the reference taken by acpiphp_enumerate_slots(). */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200169 put_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200170 context->bridge = NULL;
171 acpiphp_put_context(context);
172 }
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200173
Jiang Liu3d54a312013-04-12 05:44:28 +0000174 put_device(&bridge->pci_bus->dev);
175 pci_dev_put(bridge->pci_dev);
176 kfree(bridge);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200177
178 mutex_unlock(&acpiphp_context_lock);
Jiang Liu3d54a312013-04-12 05:44:28 +0000179}
180
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400181/*
182 * the _DCK method can do funny things... and sometimes not
183 * hah-hah funny.
184 *
185 * TBD - figure out a way to only call fixups for
186 * systems that require them.
187 */
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200188static void post_dock_fixups(acpi_handle not_used, u32 event, void *data)
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400189{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200190 struct acpiphp_context *context = data;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200191 struct pci_bus *bus = context->func.slot->bus;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400192 u32 buses;
193
194 if (!bus->self)
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200195 return;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400196
197 /* fixup bad _DCK function that rewrites
198 * secondary bridge on slot
199 */
200 pci_read_config_dword(bus->self,
201 PCI_PRIMARY_BUS,
202 &buses);
203
Yinghai Lub918c622012-05-17 18:51:11 -0700204 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400205 buses = (buses & 0xff000000)
Alex Chiang2a9d3522008-12-11 11:17:55 -0700206 | ((unsigned int)(bus->primary) << 0)
Yinghai Lub918c622012-05-17 18:51:11 -0700207 | ((unsigned int)(bus->busn_res.start) << 8)
208 | ((unsigned int)(bus->busn_res.end) << 16);
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400209 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
210 }
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400211}
212
213
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400214static const struct acpi_dock_ops acpiphp_dock_ops = {
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200215 .fixup = post_dock_fixups,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200216 .handler = hotplug_event,
Shaohua Li1253f7a2008-08-28 10:06:16 +0800217};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Jiang Liu5ba113f2012-08-22 23:16:45 +0800219/* Check whether the PCI device is managed by native PCIe hotplug driver */
220static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev)
221{
222 u32 reg32;
223 acpi_handle tmp;
224 struct acpi_pci_root *root;
225
226 /* Check whether the PCIe port supports native PCIe hotplug */
227 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32))
228 return false;
229 if (!(reg32 & PCI_EXP_SLTCAP_HPC))
230 return false;
231
232 /*
233 * Check whether native PCIe hotplug has been enabled for
234 * this PCIe hierarchy.
235 */
236 tmp = acpi_find_root_bridge_handle(pdev);
237 if (!tmp)
238 return false;
239 root = acpi_pci_find_root(tmp);
240 if (!root)
241 return false;
242 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
243 return false;
244
245 return true;
246}
247
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200248static void acpiphp_dock_init(void *data)
249{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200250 struct acpiphp_context *context = data;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200251
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200252 get_bridge(context->func.parent);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200253}
254
255static void acpiphp_dock_release(void *data)
256{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200257 struct acpiphp_context *context = data;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200258
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200259 put_bridge(context->func.parent);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/* callback routine to register each ACPI PCI slot object */
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200263static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data,
264 void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200266 struct acpiphp_bridge *bridge = data;
267 struct acpiphp_context *context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct acpiphp_slot *slot;
269 struct acpiphp_func *newfunc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 acpi_status status = AE_OK;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200271 unsigned long long adr;
272 int device, function;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900273 struct pci_bus *pbus = bridge->pci_bus;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200274 struct pci_dev *pdev = bridge->pci_dev;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000275 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200277 if (pdev && device_is_managed_by_native_pciehp(pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return AE_OK;
279
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600280 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
281 if (ACPI_FAILURE(status)) {
Toshi Kanif26ca1d2013-11-27 13:33:09 -0700282 if (status != AE_NOT_FOUND)
283 acpi_handle_warn(handle,
284 "can't evaluate _ADR (%#x)\n", status);
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600285 return AE_OK;
286 }
287
288 device = (adr >> 16) & 0xffff;
289 function = adr & 0xffff;
290
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200291 mutex_lock(&acpiphp_context_lock);
292 context = acpiphp_init_context(handle);
293 if (!context) {
294 mutex_unlock(&acpiphp_context_lock);
295 acpi_handle_err(handle, "No hotplug context\n");
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200296 return AE_NOT_EXIST;
297 }
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200298 newfunc = &context->func;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200299 newfunc->function = function;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200300 newfunc->parent = bridge;
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200301 mutex_unlock(&acpiphp_context_lock);
302
Jiang Liuecd046d2013-06-29 00:24:43 +0800303 if (acpi_has_method(handle, "_EJ0"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800304 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Jiang Liuecd046d2013-06-29 00:24:43 +0800306 if (acpi_has_method(handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 newfunc->flags |= FUNC_HAS_STA;
308
Jiang Liuecd046d2013-06-29 00:24:43 +0800309 if (acpi_has_method(handle, "_DCK"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800310 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /* search for objects that share the same slot */
Yijing Wangad41dd92013-04-12 05:44:27 +0000313 list_for_each_entry(slot, &bridge->slots, node)
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200314 if (slot->device == device)
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200315 goto slot_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200317 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
318 if (!slot) {
319 status = AE_NO_MEMORY;
320 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200323 slot->bus = bridge->pci_bus;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200324 slot->device = device;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200325 INIT_LIST_HEAD(&slot->funcs);
326 mutex_init(&slot->crit_sect);
327
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200328 list_add_tail(&slot->node, &bridge->slots);
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200329
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700330 /* Register slots for ejectable functions only. */
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200331 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) {
332 unsigned long long sun;
333 int retval;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200334
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200335 bridge->nr_slots++;
336 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
337 if (ACPI_FAILURE(status))
338 sun = bridge->nr_slots;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200339
Lan Tianyubd950792013-09-24 18:11:48 -0600340 pr_debug("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200341 sun, pci_domain_nr(pbus), pbus->number, device);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200342
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200343 retval = acpiphp_register_hotplug_slot(slot, sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200344 if (retval) {
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200345 slot->slot = NULL;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200346 bridge->nr_slots--;
347 if (retval == -EBUSY)
Lan Tianyubd950792013-09-24 18:11:48 -0600348 pr_warn("Slot %llu already registered by another "
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200349 "hotplug driver\n", sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200350 else
Lan Tianyubd950792013-09-24 18:11:48 -0600351 pr_warn("acpiphp_register_hotplug_slot failed "
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200352 "(err code = 0x%x)\n", retval);
353 }
354 /* Even if the slot registration fails, we can still use it. */
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200355 }
356
357 slot_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 newfunc->slot = slot;
359 list_add_tail(&newfunc->sibling, &slot->funcs);
360
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000361 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
362 &val, 60*1000))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200363 slot->flags |= SLOT_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400365 if (is_dock_device(handle)) {
366 /* we don't want to call this device's _EJ0
367 * because we want the dock notify handler
368 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800369 */
370 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400371 if (register_hotplug_dock_device(handle,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200372 &acpiphp_dock_ops, context,
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200373 acpiphp_dock_init, acpiphp_dock_release))
Lan Tianyubd950792013-09-24 18:11:48 -0600374 pr_debug("failed to register dock device\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800375 }
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800378 if (!(newfunc->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200379 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
380 handle_hotplug_event,
381 context);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200382 if (ACPI_FAILURE(status))
383 acpi_handle_err(handle,
384 "failed to install notify handler\n");
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200387 return AE_OK;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800388
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200389 err:
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200390 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200391 acpiphp_put_context(context);
392 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200393 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Rajesh Shah42f49a62005-04-28 00:25:53 -0700396static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
397{
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200398 struct acpiphp_context *context;
399 struct acpiphp_bridge *bridge = NULL;
Alex Chiang58c08622009-10-26 21:25:27 -0600400
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200401 mutex_lock(&acpiphp_context_lock);
402 context = acpiphp_get_context(handle);
403 if (context) {
404 bridge = context->bridge;
405 if (bridge)
Jiang Liu3d54a312013-04-12 05:44:28 +0000406 get_bridge(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700407
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200408 acpiphp_put_context(context);
409 }
410 mutex_unlock(&acpiphp_context_lock);
411 return bridge;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700412}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Rajesh Shah364d5092005-04-28 00:25:54 -0700414static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Jiang Liu3d54a312013-04-12 05:44:28 +0000416 struct acpiphp_slot *slot;
417 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700418 acpi_status status;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700419
Jiang Liu3d54a312013-04-12 05:44:28 +0000420 list_for_each_entry(slot, &bridge->slots, node) {
421 list_for_each_entry(func, &slot->funcs, sibling) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200422 acpi_handle handle = func_to_handle(func);
423
424 if (is_dock_device(handle))
425 unregister_hotplug_dock_device(handle);
426
Kristen Accardi20416ea2006-02-23 17:56:03 -0800427 if (!(func->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200428 status = acpi_remove_notify_handler(handle,
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200429 ACPI_SYSTEM_NOTIFY,
430 handle_hotplug_event);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800431 if (ACPI_FAILURE(status))
Lan Tianyubd950792013-09-24 18:11:48 -0600432 pr_err("failed to remove notify handler\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800433 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700434 }
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100435 slot->flags |= SLOT_IS_GOING_AWAY;
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200436 if (slot->slot)
437 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700438 }
439
Jiang Liu3d54a312013-04-12 05:44:28 +0000440 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700441 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000442 mutex_unlock(&bridge_mutex);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100443
444 bridge->is_going_away = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800447/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800448 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800449 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800450 */
451static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
452{
453 struct list_head *tmp;
454 unsigned char max, n;
455
456 /*
457 * pci_bus_max_busnr will return the highest
458 * reserved busnr for all these children.
459 * that is equivalent to the bus->subordinate
460 * value. We don't want to use the parent's
461 * bus->subordinate value because it could have
462 * padding in it.
463 */
Yinghai Lub918c622012-05-17 18:51:11 -0700464 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800465
466 list_for_each(tmp, &bus->children) {
467 n = pci_bus_max_busnr(pci_bus_b(tmp));
468 if (n > max)
469 max = n;
470 }
471 return max;
472}
473
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800474/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200475 * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree.
476 * @handle: ACPI device object handle to start from.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800477 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200478static void acpiphp_bus_trim(acpi_handle handle)
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800479{
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200480 struct acpi_device *adev = NULL;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800481
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200482 acpi_bus_get_device(handle, &adev);
483 if (adev)
484 acpi_bus_trim(adev);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800485}
486
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900487/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200488 * acpiphp_bus_add - Scan ACPI namespace subtree.
489 * @handle: ACPI object handle to start the scan from.
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900490 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200491static void acpiphp_bus_add(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900492{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200493 struct acpi_device *adev = NULL;
494
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200495 acpi_bus_scan(handle);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200496 acpi_bus_get_device(handle, &adev);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100497 if (acpi_device_enumerated(adev))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200498 acpi_device_set_power(adev, ACPI_STATE_D0);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900499}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800500
Shaohua Lid0607052010-02-25 10:59:34 +0800501static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
502{
503 struct acpiphp_func *func;
504 union acpi_object params[2];
505 struct acpi_object_list arg_list;
506
507 list_for_each_entry(func, &slot->funcs, sibling) {
508 arg_list.count = 2;
509 arg_list.pointer = params;
510 params[0].type = ACPI_TYPE_INTEGER;
511 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
512 params[1].type = ACPI_TYPE_INTEGER;
513 params[1].integer.value = 1;
514 /* _REG is optional, we don't care about if there is failure */
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200515 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
516 NULL);
Shaohua Lid0607052010-02-25 10:59:34 +0800517 }
518}
519
Yinghai Lu1f96a962013-01-21 13:20:42 -0800520static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
521{
522 struct acpiphp_func *func;
523
Yinghai Lu1f96a962013-01-21 13:20:42 -0800524 /* quirk, or pcie could set it already */
525 if (dev->is_hotplug_bridge)
526 return;
527
Yinghai Lu1f96a962013-01-21 13:20:42 -0800528 list_for_each_entry(func, &slot->funcs, sibling) {
529 if (PCI_FUNC(dev->devfn) == func->function) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200530 dev->is_hotplug_bridge = 1;
Yinghai Lu1f96a962013-01-21 13:20:42 -0800531 break;
532 }
533 }
534}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000535
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200536static int acpiphp_rescan_slot(struct acpiphp_slot *slot)
537{
538 struct acpiphp_func *func;
539
540 list_for_each_entry(func, &slot->funcs, sibling)
541 acpiphp_bus_add(func_to_handle(func));
542
543 return pci_scan_slot(slot->bus, PCI_DEVFN(slot->device, 0));
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200547 * enable_slot - enable, configure a slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 * @slot: slot to be enabled
549 *
550 * This function should be called per *physical slot*,
551 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200553static void __ref enable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct pci_dev *dev;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200556 struct pci_bus *bus = slot->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct acpiphp_func *func;
Kirill A. Shutemovb91182a2013-07-13 23:27:26 +0200558 int max, pass;
Jiang Liud66ecb72013-06-23 01:01:35 +0200559 LIST_HEAD(add_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Mika Westerbergab122592013-10-30 14:40:36 +0200561 acpiphp_rescan_slot(slot);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800562 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700563 for (pass = 0; pass < 2; pass++) {
564 list_for_each_entry(dev, &bus->devices, bus_list) {
565 if (PCI_SLOT(dev->devfn) != slot->device)
566 continue;
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200567
Rajesh Shah42f49a62005-04-28 00:25:53 -0700568 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800569 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700570 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800571 if (pass && dev->subordinate) {
572 check_hotplug_bridge(slot, dev);
Jiang Liud66ecb72013-06-23 01:01:35 +0200573 pcibios_resource_survey_bus(dev->subordinate);
574 __pci_bus_size_bridges(dev->subordinate,
575 &add_list);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800576 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800577 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Jiang Liud66ecb72013-06-23 01:01:35 +0200580 __pci_bus_assign_resources(bus, &add_list, NULL);
Rafael J. Wysocki2dc41282013-09-06 15:41:32 +0200581
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700582 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600583 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800584 acpiphp_set_acpi_region(slot);
Ian Campbell69643e42011-05-11 17:00:32 +0100585
586 list_for_each_entry(dev, &bus->devices, bus_list) {
587 /* Assume that newly added devices are powered on already. */
588 if (!dev->is_added)
589 dev->current_state = PCI_D0;
590 }
591
Rajesh Shah42f49a62005-04-28 00:25:53 -0700592 pci_bus_add_devices(bus);
593
Amos Kongf382a082011-11-25 15:03:07 +0800594 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600595 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600596 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
597 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800598 if (!dev) {
599 /* Do not set SLOT_ENABLED flag if some funcs
600 are not added. */
601 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900602 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Amos Kongce29ca32012-05-23 10:20:35 -0600607/* return first device in slot, acquiring a reference on it */
608static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
609{
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200610 struct pci_bus *bus = slot->bus;
Amos Kongce29ca32012-05-23 10:20:35 -0600611 struct pci_dev *dev;
612 struct pci_dev *ret = NULL;
613
614 down_read(&pci_bus_sem);
615 list_for_each_entry(dev, &bus->devices, bus_list)
616 if (PCI_SLOT(dev->devfn) == slot->device) {
617 ret = pci_dev_get(dev);
618 break;
619 }
620 up_read(&pci_bus_sem);
621
622 return ret;
623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200626 * disable_slot - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800627 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200629static void disable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600632 struct pci_dev *pdev;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900633
Amos Kongce29ca32012-05-23 10:20:35 -0600634 /*
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200635 * enable_slot() enumerates all functions in this device via
Amos Kongce29ca32012-05-23 10:20:35 -0600636 * pci_scan_slot(), whether they have associated ACPI hotplug
637 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
638 * here.
639 */
640 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600641 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600642 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700643 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700644
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200645 list_for_each_entry(func, &slot->funcs, sibling)
646 acpiphp_bus_trim(func_to_handle(func));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 slot->flags &= (~SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100651static bool acpiphp_no_hotplug(acpi_handle handle)
652{
653 struct acpi_device *adev = NULL;
654
655 acpi_bus_get_device(handle, &adev);
656 return adev && adev->flags.no_hotplug;
657}
658
659static bool slot_no_hotplug(struct acpiphp_slot *slot)
660{
661 struct acpiphp_func *func;
662
663 list_for_each_entry(func, &slot->funcs, sibling)
664 if (acpiphp_no_hotplug(func_to_handle(func)))
665 return true;
666
667 return false;
668}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670/**
671 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800672 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800674 * If a slot has _STA for each function and if any one of them
675 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800677 * If a slot doesn't have _STA and if any one of its functions'
678 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800680 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
682static unsigned int get_slot_status(struct acpiphp_slot *slot)
683{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400684 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct acpiphp_func *func;
686
Alex Chiang58c08622009-10-26 21:25:27 -0600687 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (func->flags & FUNC_HAS_STA) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200689 acpi_status status;
690
691 status = acpi_evaluate_integer(func_to_handle(func),
692 "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (ACPI_SUCCESS(status) && sta)
694 break;
695 } else {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200696 u32 dvid;
697
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200698 pci_bus_read_config_dword(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 PCI_DEVFN(slot->device,
700 func->function),
701 PCI_VENDOR_ID, &dvid);
702 if (dvid != 0xffffffff) {
703 sta = ACPI_STA_ALL;
704 break;
705 }
706 }
707 }
708
709 return (unsigned int)sta;
710}
711
712/**
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200713 * trim_stale_devices - remove PCI devices that are not responding.
714 * @dev: PCI device to start walking the hierarchy from.
715 */
716static void trim_stale_devices(struct pci_dev *dev)
717{
718 acpi_handle handle = ACPI_HANDLE(&dev->dev);
719 struct pci_bus *bus = dev->subordinate;
720 bool alive = false;
721
722 if (handle) {
723 acpi_status status;
724 unsigned long long sta;
725
726 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100727 alive = (ACPI_SUCCESS(status) && sta == ACPI_STA_ALL)
728 || acpiphp_no_hotplug(handle);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200729 }
730 if (!alive) {
731 u32 v;
732
733 /* Check if the device responds. */
734 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0);
735 }
736 if (!alive) {
737 pci_stop_and_remove_bus_device(dev);
738 if (handle)
739 acpiphp_bus_trim(handle);
740 } else if (bus) {
741 struct pci_dev *child, *tmp;
742
743 /* The device is a bridge. so check the bus below it. */
744 pm_runtime_get_sync(&dev->dev);
745 list_for_each_entry_safe(child, tmp, &bus->devices, bus_list)
746 trim_stale_devices(child);
747
748 pm_runtime_put(&dev->dev);
749 }
750}
751
752/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800754 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 *
756 * Iterate over all slots under this bridge and make sure that if a
757 * card is present they are enabled, and if not they are disabled.
758 */
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200759static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 struct acpiphp_slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100763 /* Bail out if the bridge is going away. */
764 if (bridge->is_going_away)
765 return;
766
Yijing Wangad41dd92013-04-12 05:44:27 +0000767 list_for_each_entry(slot, &bridge->slots, node) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200768 struct pci_bus *bus = slot->bus;
769 struct pci_dev *dev, *tmp;
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200770
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200771 mutex_lock(&slot->crit_sect);
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100772 if (slot_no_hotplug(slot)) {
773 ; /* do nothing */
774 } else if (get_slot_status(slot) == ACPI_STA_ALL) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200775 /* remove stale devices if any */
776 list_for_each_entry_safe(dev, tmp, &bus->devices,
777 bus_list)
778 if (PCI_SLOT(dev->devfn) == slot->device)
779 trim_stale_devices(dev);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200780
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200781 /* configure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200782 enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 } else {
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200784 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200786 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600790static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700791{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700792 struct pci_dev *dev;
793
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600794 list_for_each_entry(dev, &bus->devices, bus_list)
795 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700796}
797
798/*
799 * Remove devices for which we could not assign resources, call
800 * arch specific code to fix-up the bus
801 */
802static void acpiphp_sanitize_bus(struct pci_bus *bus)
803{
Yijing Wangd65eba62013-04-12 05:44:17 +0000804 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700805 int i;
806 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
807
Yijing Wangd65eba62013-04-12 05:44:17 +0000808 list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700809 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
810 struct resource *res = &dev->resource[i];
811 if ((res->flags & type_mask) && !res->start &&
812 res->end) {
813 /* Could not assign a required resources
814 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800815 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700816 break;
817 }
818 }
819 }
820}
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822/*
823 * ACPI event handlers
824 */
825
Yinghai Lu3f327e32013-05-07 11:06:03 -0600826void acpiphp_check_host_bridge(acpi_handle handle)
827{
828 struct acpiphp_bridge *bridge;
829
830 bridge = acpiphp_handle_to_bridge(handle);
831 if (bridge) {
832 acpiphp_check_bridge(bridge);
833 put_bridge(bridge);
834 }
Yinghai Lu3f327e32013-05-07 11:06:03 -0600835}
836
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100837static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot);
838
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200839static void hotplug_event(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200841 struct acpiphp_context *context = data;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200842 struct acpiphp_func *func = &context->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct acpiphp_bridge *bridge;
844 char objname[64];
845 struct acpi_buffer buffer = { .length = sizeof(objname),
846 .pointer = objname };
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400847
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200848 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200849 bridge = context->bridge;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200850 if (bridge)
851 get_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200853 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
856
857 switch (type) {
858 case ACPI_NOTIFY_BUS_CHECK:
859 /* bus re-enumerate */
Lan Tianyubd950792013-09-24 18:11:48 -0600860 pr_debug("%s: Bus check notify on %s\n", __func__, objname);
861 pr_debug("%s: re-enumerating slots under %s\n",
862 __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200863 if (bridge) {
864 acpiphp_check_bridge(bridge);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200865 } else {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200866 struct acpiphp_slot *slot = func->slot;
867
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100868 if (slot->flags & SLOT_IS_GOING_AWAY)
869 break;
870
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200871 mutex_lock(&slot->crit_sect);
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200872 enable_slot(slot);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200873 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
876
877 case ACPI_NOTIFY_DEVICE_CHECK:
878 /* device check */
Lan Tianyubd950792013-09-24 18:11:48 -0600879 pr_debug("%s: Device check notify on %s\n", __func__, objname);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200880 if (bridge) {
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200881 acpiphp_check_bridge(bridge);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200882 } else {
883 struct acpiphp_slot *slot = func->slot;
884 int ret;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200885
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100886 if (slot->flags & SLOT_IS_GOING_AWAY)
887 break;
888
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200889 /*
890 * Check if anything has changed in the slot and rescan
891 * from the parent if that's the case.
892 */
893 mutex_lock(&slot->crit_sect);
894 ret = acpiphp_rescan_slot(slot);
895 mutex_unlock(&slot->crit_sect);
896 if (ret)
897 acpiphp_check_bridge(func->parent);
898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 break;
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 case ACPI_NOTIFY_EJECT_REQUEST:
902 /* request device eject */
Lan Tianyubd950792013-09-24 18:11:48 -0600903 pr_debug("%s: Device eject notify on %s\n", __func__, objname);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200904 acpiphp_disable_and_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400907
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200908 if (bridge)
909 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100912static void hotplug_event_work(void *data, u32 type)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200913{
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100914 struct acpiphp_context *context = data;
915 acpi_handle handle = context->handle;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200916
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200917 acpi_scan_lock_acquire();
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100918 pci_lock_rescan_remove();
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200919
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100920 hotplug_event(handle, type, context);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400921
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100922 pci_unlock_rescan_remove();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100923 acpi_scan_lock_release();
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100924 acpi_evaluate_hotplug_ost(handle, type, ACPI_OST_SC_SUCCESS, NULL);
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200925 put_bridge(context->func.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400928/**
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200929 * handle_hotplug_event - handle ACPI hotplug event
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400930 * @handle: Notify()'ed acpi_handle
931 * @type: Notify code
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200932 * @data: pointer to acpiphp_context structure
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400933 *
934 * Handles ACPI event notification on slots.
935 */
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200936static void handle_hotplug_event(acpi_handle handle, u32 type, void *data)
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400937{
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200938 struct acpiphp_context *context;
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200939 u32 ost_code = ACPI_OST_SC_SUCCESS;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200940
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200941 switch (type) {
942 case ACPI_NOTIFY_BUS_CHECK:
943 case ACPI_NOTIFY_DEVICE_CHECK:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200944 break;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200945 case ACPI_NOTIFY_EJECT_REQUEST:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200946 ost_code = ACPI_OST_SC_EJECT_IN_PROGRESS;
947 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200948 break;
949
950 case ACPI_NOTIFY_DEVICE_WAKE:
951 return;
952
953 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
954 acpi_handle_err(handle, "Device cannot be configured due "
955 "to a frequency mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200956 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200957
958 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
959 acpi_handle_err(handle, "Device cannot be configured due "
960 "to a bus mode mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200961 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200962
963 case ACPI_NOTIFY_POWER_FAULT:
964 acpi_handle_err(handle, "Device has suffered a power fault\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200965 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200966
967 default:
968 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200969 ost_code = ACPI_OST_SC_UNRECOGNIZED_NOTIFY;
970 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200971 }
972
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200973 mutex_lock(&acpiphp_context_lock);
974 context = acpiphp_get_context(handle);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100975 if (context && !WARN_ON(context->handle != handle)) {
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200976 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200977 acpiphp_put_context(context);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100978 acpi_hotplug_execute(hotplug_event_work, context, type);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200979 mutex_unlock(&acpiphp_context_lock);
980 return;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200981 }
982 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200983 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
984
985 out:
986 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700987}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000989/*
990 * Create hotplug slots for the PCI bus.
991 * It should always return 0 to avoid skipping following notifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200993void acpiphp_enumerate_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000995 struct acpiphp_bridge *bridge;
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +0200996 acpi_handle handle;
997 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000999 if (acpiphp_disabled)
1000 return;
1001
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +02001002 handle = ACPI_HANDLE(bus->bridge);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001003 if (!handle)
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001004 return;
1005
1006 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +02001007 if (!bridge) {
1008 acpi_handle_err(handle, "No memory for bridge object\n");
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001009 return;
1010 }
1011
Yijing Wangad41dd92013-04-12 05:44:27 +00001012 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +00001013 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001014 bridge->pci_dev = pci_dev_get(bus->self);
1015 bridge->pci_bus = bus;
1016
1017 /*
1018 * Grab a ref to the subordinate PCI bus in case the bus is
1019 * removed via PCI core logical hotplug. The ref pins the bus
1020 * (which we access during module unload).
1021 */
1022 get_device(&bus->dev);
1023
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001024 if (!pci_is_root_bus(bridge->pci_bus)) {
1025 struct acpiphp_context *context;
1026
1027 /*
1028 * This bridge should have been registered as a hotplug function
Rafael J. Wysockifd3cfeb2013-10-12 01:49:48 +02001029 * under its parent, so the context should be there, unless the
1030 * parent is going to be handled by pciehp, in which case this
1031 * bridge is not interesting to us either.
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001032 */
1033 mutex_lock(&acpiphp_context_lock);
1034 context = acpiphp_get_context(handle);
Rafael J. Wysockifd3cfeb2013-10-12 01:49:48 +02001035 if (!context) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001036 mutex_unlock(&acpiphp_context_lock);
1037 put_device(&bus->dev);
Rafael J. Wysocki5d449452013-10-11 13:20:50 +02001038 pci_dev_put(bridge->pci_dev);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001039 kfree(bridge);
1040 return;
1041 }
1042 bridge->context = context;
1043 context->bridge = bridge;
1044 /* Get a reference to the parent bridge. */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +02001045 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001046 mutex_unlock(&acpiphp_context_lock);
1047 }
1048
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001049 /* must be added to the list prior to calling register_slot */
1050 mutex_lock(&bridge_mutex);
1051 list_add(&bridge->list, &bridge_list);
1052 mutex_unlock(&bridge_mutex);
1053
1054 /* register all slot objects under this bridge */
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001055 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001056 register_slot, NULL, bridge, NULL);
1057 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001058 acpi_handle_err(handle, "failed to register slots\n");
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001059 cleanup_bridge(bridge);
1060 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001064/* Destroy hotplug slots associated with the PCI bus */
1065void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001067 struct acpiphp_bridge *bridge;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001068
1069 if (acpiphp_disabled)
1070 return;
1071
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001072 mutex_lock(&bridge_mutex);
1073 list_for_each_entry(bridge, &bridge_list, list)
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001074 if (bridge->pci_bus == bus) {
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001075 mutex_unlock(&bridge_mutex);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001076 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001077 put_bridge(bridge);
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001078 return;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001079 }
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001080
1081 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084/**
1085 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001086 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 */
1088int acpiphp_enable_slot(struct acpiphp_slot *slot)
1089{
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001090 pci_lock_rescan_remove();
1091
1092 if (slot->flags & SLOT_IS_GOING_AWAY)
1093 return -ENODEV;
1094
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001095 mutex_lock(&slot->crit_sect);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001096 /* configure all functions */
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001097 if (!(slot->flags & SLOT_ENABLED))
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001098 enable_slot(slot);
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001099
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001100 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001101
1102 pci_unlock_rescan_remove();
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/**
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001107 * acpiphp_disable_and_eject_slot - power off and eject slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001108 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 */
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001110static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001112 struct acpiphp_func *func;
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001113
1114 if (slot->flags & SLOT_IS_GOING_AWAY)
1115 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001117 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 /* unconfigure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001120 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001122 list_for_each_entry(func, &slot->funcs, sibling)
1123 if (func->flags & FUNC_HAS_EJ0) {
1124 acpi_handle handle = func_to_handle(func);
1125
1126 if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
1127 acpi_handle_err(handle, "_EJ0 failed\n");
1128
1129 break;
1130 }
1131
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001132 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001136int acpiphp_disable_slot(struct acpiphp_slot *slot)
1137{
1138 int ret;
1139
1140 pci_lock_rescan_remove();
1141 ret = acpiphp_disable_and_eject_slot(slot);
1142 pci_unlock_rescan_remove();
1143 return ret;
1144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146/*
1147 * slot enabled: 1
1148 * slot disabled: 0
1149 */
1150u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1151{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001152 return (slot->flags & SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001156 * latch open: 1
1157 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
1159u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1160{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001161 return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164/*
1165 * adapter presence : 1
1166 * absence : 0
1167 */
1168u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1169{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001170 return !!get_slot_status(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}