blob: 7c7a388c85ab3679732f7971552790057abec4f5 [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
Rafael J. Wysockiaf9d8ad2014-02-03 22:30:15 +0100213static void dock_event(acpi_handle handle, u32 type, void *data)
214{
215 struct acpiphp_context *context;
216
217 mutex_lock(&acpiphp_context_lock);
218 context = acpiphp_get_context(handle);
219 if (!context || WARN_ON(context->handle != handle)
220 || context->func.parent->is_going_away) {
221 mutex_unlock(&acpiphp_context_lock);
222 return;
223 }
224 get_bridge(context->func.parent);
225 acpiphp_put_context(context);
226 mutex_unlock(&acpiphp_context_lock);
227
228 hotplug_event(handle, type, data);
229
230 put_bridge(context->func.parent);
231}
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400232
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400233static const struct acpi_dock_ops acpiphp_dock_ops = {
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200234 .fixup = post_dock_fixups,
Rafael J. Wysockiaf9d8ad2014-02-03 22:30:15 +0100235 .handler = dock_event,
Shaohua Li1253f7a2008-08-28 10:06:16 +0800236};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Jiang Liu5ba113f2012-08-22 23:16:45 +0800238/* Check whether the PCI device is managed by native PCIe hotplug driver */
239static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev)
240{
241 u32 reg32;
242 acpi_handle tmp;
243 struct acpi_pci_root *root;
244
245 /* Check whether the PCIe port supports native PCIe hotplug */
246 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32))
247 return false;
248 if (!(reg32 & PCI_EXP_SLTCAP_HPC))
249 return false;
250
251 /*
252 * Check whether native PCIe hotplug has been enabled for
253 * this PCIe hierarchy.
254 */
255 tmp = acpi_find_root_bridge_handle(pdev);
256 if (!tmp)
257 return false;
258 root = acpi_pci_find_root(tmp);
259 if (!root)
260 return false;
261 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
262 return false;
263
264 return true;
265}
266
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200267static void acpiphp_dock_init(void *data)
268{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200269 struct acpiphp_context *context = data;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200270
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200271 get_bridge(context->func.parent);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200272}
273
274static void acpiphp_dock_release(void *data)
275{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200276 struct acpiphp_context *context = data;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200277
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200278 put_bridge(context->func.parent);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/* callback routine to register each ACPI PCI slot object */
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200282static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data,
283 void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200285 struct acpiphp_bridge *bridge = data;
286 struct acpiphp_context *context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct acpiphp_slot *slot;
288 struct acpiphp_func *newfunc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 acpi_status status = AE_OK;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200290 unsigned long long adr;
291 int device, function;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900292 struct pci_bus *pbus = bridge->pci_bus;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200293 struct pci_dev *pdev = bridge->pci_dev;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000294 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200296 if (pdev && device_is_managed_by_native_pciehp(pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return AE_OK;
298
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600299 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
300 if (ACPI_FAILURE(status)) {
Toshi Kanif26ca1d2013-11-27 13:33:09 -0700301 if (status != AE_NOT_FOUND)
302 acpi_handle_warn(handle,
303 "can't evaluate _ADR (%#x)\n", status);
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600304 return AE_OK;
305 }
306
307 device = (adr >> 16) & 0xffff;
308 function = adr & 0xffff;
309
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200310 mutex_lock(&acpiphp_context_lock);
311 context = acpiphp_init_context(handle);
312 if (!context) {
313 mutex_unlock(&acpiphp_context_lock);
314 acpi_handle_err(handle, "No hotplug context\n");
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200315 return AE_NOT_EXIST;
316 }
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200317 newfunc = &context->func;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200318 newfunc->function = function;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200319 newfunc->parent = bridge;
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200320 mutex_unlock(&acpiphp_context_lock);
321
Jiang Liuecd046d2013-06-29 00:24:43 +0800322 if (acpi_has_method(handle, "_EJ0"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800323 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Jiang Liuecd046d2013-06-29 00:24:43 +0800325 if (acpi_has_method(handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 newfunc->flags |= FUNC_HAS_STA;
327
Jiang Liuecd046d2013-06-29 00:24:43 +0800328 if (acpi_has_method(handle, "_DCK"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800329 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 /* search for objects that share the same slot */
Yijing Wangad41dd92013-04-12 05:44:27 +0000332 list_for_each_entry(slot, &bridge->slots, node)
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200333 if (slot->device == device)
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200334 goto slot_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200336 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
337 if (!slot) {
338 status = AE_NO_MEMORY;
339 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200342 slot->bus = bridge->pci_bus;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200343 slot->device = device;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200344 INIT_LIST_HEAD(&slot->funcs);
345 mutex_init(&slot->crit_sect);
346
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200347 list_add_tail(&slot->node, &bridge->slots);
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200348
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700349 /* Register slots for ejectable functions only. */
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200350 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) {
351 unsigned long long sun;
352 int retval;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200353
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200354 bridge->nr_slots++;
355 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
356 if (ACPI_FAILURE(status))
357 sun = bridge->nr_slots;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200358
Lan Tianyubd950792013-09-24 18:11:48 -0600359 pr_debug("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200360 sun, pci_domain_nr(pbus), pbus->number, device);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200361
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200362 retval = acpiphp_register_hotplug_slot(slot, sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200363 if (retval) {
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200364 slot->slot = NULL;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200365 bridge->nr_slots--;
366 if (retval == -EBUSY)
Lan Tianyubd950792013-09-24 18:11:48 -0600367 pr_warn("Slot %llu already registered by another "
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200368 "hotplug driver\n", sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200369 else
Lan Tianyubd950792013-09-24 18:11:48 -0600370 pr_warn("acpiphp_register_hotplug_slot failed "
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200371 "(err code = 0x%x)\n", retval);
372 }
373 /* Even if the slot registration fails, we can still use it. */
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200374 }
375
376 slot_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 newfunc->slot = slot;
378 list_add_tail(&newfunc->sibling, &slot->funcs);
379
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000380 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
381 &val, 60*1000))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200382 slot->flags |= SLOT_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400384 if (is_dock_device(handle)) {
385 /* we don't want to call this device's _EJ0
386 * because we want the dock notify handler
387 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800388 */
389 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400390 if (register_hotplug_dock_device(handle,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200391 &acpiphp_dock_ops, context,
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200392 acpiphp_dock_init, acpiphp_dock_release))
Lan Tianyubd950792013-09-24 18:11:48 -0600393 pr_debug("failed to register dock device\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800394 }
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800397 if (!(newfunc->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200398 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
399 handle_hotplug_event,
400 context);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200401 if (ACPI_FAILURE(status))
402 acpi_handle_err(handle,
403 "failed to install notify handler\n");
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200406 return AE_OK;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800407
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200408 err:
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200409 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200410 acpiphp_put_context(context);
411 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200412 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Rajesh Shah42f49a62005-04-28 00:25:53 -0700415static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
416{
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200417 struct acpiphp_context *context;
418 struct acpiphp_bridge *bridge = NULL;
Alex Chiang58c08622009-10-26 21:25:27 -0600419
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200420 mutex_lock(&acpiphp_context_lock);
421 context = acpiphp_get_context(handle);
422 if (context) {
423 bridge = context->bridge;
424 if (bridge)
Jiang Liu3d54a312013-04-12 05:44:28 +0000425 get_bridge(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700426
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200427 acpiphp_put_context(context);
428 }
429 mutex_unlock(&acpiphp_context_lock);
430 return bridge;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700431}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Rajesh Shah364d5092005-04-28 00:25:54 -0700433static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Jiang Liu3d54a312013-04-12 05:44:28 +0000435 struct acpiphp_slot *slot;
436 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700437 acpi_status status;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700438
Jiang Liu3d54a312013-04-12 05:44:28 +0000439 list_for_each_entry(slot, &bridge->slots, node) {
440 list_for_each_entry(func, &slot->funcs, sibling) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200441 acpi_handle handle = func_to_handle(func);
442
443 if (is_dock_device(handle))
444 unregister_hotplug_dock_device(handle);
445
Kristen Accardi20416ea2006-02-23 17:56:03 -0800446 if (!(func->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200447 status = acpi_remove_notify_handler(handle,
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200448 ACPI_SYSTEM_NOTIFY,
449 handle_hotplug_event);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800450 if (ACPI_FAILURE(status))
Lan Tianyubd950792013-09-24 18:11:48 -0600451 pr_err("failed to remove notify handler\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800452 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700453 }
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100454 slot->flags |= SLOT_IS_GOING_AWAY;
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200455 if (slot->slot)
456 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700457 }
458
Jiang Liu3d54a312013-04-12 05:44:28 +0000459 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700460 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000461 mutex_unlock(&bridge_mutex);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100462
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100463 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100464 bridge->is_going_away = true;
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100465 mutex_unlock(&acpiphp_context_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800468/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800469 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800470 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800471 */
472static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
473{
474 struct list_head *tmp;
475 unsigned char max, n;
476
477 /*
478 * pci_bus_max_busnr will return the highest
479 * reserved busnr for all these children.
480 * that is equivalent to the bus->subordinate
481 * value. We don't want to use the parent's
482 * bus->subordinate value because it could have
483 * padding in it.
484 */
Yinghai Lub918c622012-05-17 18:51:11 -0700485 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800486
487 list_for_each(tmp, &bus->children) {
488 n = pci_bus_max_busnr(pci_bus_b(tmp));
489 if (n > max)
490 max = n;
491 }
492 return max;
493}
494
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800495/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200496 * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree.
497 * @handle: ACPI device object handle to start from.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800498 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200499static void acpiphp_bus_trim(acpi_handle handle)
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800500{
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200501 struct acpi_device *adev = NULL;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800502
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200503 acpi_bus_get_device(handle, &adev);
504 if (adev)
505 acpi_bus_trim(adev);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800506}
507
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900508/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200509 * acpiphp_bus_add - Scan ACPI namespace subtree.
510 * @handle: ACPI object handle to start the scan from.
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900511 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200512static void acpiphp_bus_add(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900513{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200514 struct acpi_device *adev = NULL;
515
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200516 acpi_bus_scan(handle);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200517 acpi_bus_get_device(handle, &adev);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +0100518 if (acpi_device_enumerated(adev))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200519 acpi_device_set_power(adev, ACPI_STATE_D0);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900520}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800521
Shaohua Lid0607052010-02-25 10:59:34 +0800522static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
523{
524 struct acpiphp_func *func;
525 union acpi_object params[2];
526 struct acpi_object_list arg_list;
527
528 list_for_each_entry(func, &slot->funcs, sibling) {
529 arg_list.count = 2;
530 arg_list.pointer = params;
531 params[0].type = ACPI_TYPE_INTEGER;
532 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
533 params[1].type = ACPI_TYPE_INTEGER;
534 params[1].integer.value = 1;
535 /* _REG is optional, we don't care about if there is failure */
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200536 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
537 NULL);
Shaohua Lid0607052010-02-25 10:59:34 +0800538 }
539}
540
Yinghai Lu1f96a962013-01-21 13:20:42 -0800541static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
542{
543 struct acpiphp_func *func;
544
Yinghai Lu1f96a962013-01-21 13:20:42 -0800545 /* quirk, or pcie could set it already */
546 if (dev->is_hotplug_bridge)
547 return;
548
Yinghai Lu1f96a962013-01-21 13:20:42 -0800549 list_for_each_entry(func, &slot->funcs, sibling) {
550 if (PCI_FUNC(dev->devfn) == func->function) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200551 dev->is_hotplug_bridge = 1;
Yinghai Lu1f96a962013-01-21 13:20:42 -0800552 break;
553 }
554 }
555}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000556
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200557static int acpiphp_rescan_slot(struct acpiphp_slot *slot)
558{
559 struct acpiphp_func *func;
560
561 list_for_each_entry(func, &slot->funcs, sibling)
562 acpiphp_bus_add(func_to_handle(func));
563
564 return pci_scan_slot(slot->bus, PCI_DEVFN(slot->device, 0));
565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200568 * enable_slot - enable, configure a slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * @slot: slot to be enabled
570 *
571 * This function should be called per *physical slot*,
572 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200574static void __ref enable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct pci_dev *dev;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200577 struct pci_bus *bus = slot->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 struct acpiphp_func *func;
Kirill A. Shutemovb91182a2013-07-13 23:27:26 +0200579 int max, pass;
Jiang Liud66ecb72013-06-23 01:01:35 +0200580 LIST_HEAD(add_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Mika Westerbergab122592013-10-30 14:40:36 +0200582 acpiphp_rescan_slot(slot);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800583 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700584 for (pass = 0; pass < 2; pass++) {
585 list_for_each_entry(dev, &bus->devices, bus_list) {
586 if (PCI_SLOT(dev->devfn) != slot->device)
587 continue;
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200588
Rajesh Shah42f49a62005-04-28 00:25:53 -0700589 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800590 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700591 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800592 if (pass && dev->subordinate) {
593 check_hotplug_bridge(slot, dev);
Jiang Liud66ecb72013-06-23 01:01:35 +0200594 pcibios_resource_survey_bus(dev->subordinate);
595 __pci_bus_size_bridges(dev->subordinate,
596 &add_list);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800597 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800598 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Jiang Liud66ecb72013-06-23 01:01:35 +0200601 __pci_bus_assign_resources(bus, &add_list, NULL);
Rafael J. Wysocki2dc41282013-09-06 15:41:32 +0200602
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700603 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600604 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800605 acpiphp_set_acpi_region(slot);
Ian Campbell69643e42011-05-11 17:00:32 +0100606
607 list_for_each_entry(dev, &bus->devices, bus_list) {
608 /* Assume that newly added devices are powered on already. */
609 if (!dev->is_added)
610 dev->current_state = PCI_D0;
611 }
612
Rajesh Shah42f49a62005-04-28 00:25:53 -0700613 pci_bus_add_devices(bus);
614
Amos Kongf382a082011-11-25 15:03:07 +0800615 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600616 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600617 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
618 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800619 if (!dev) {
620 /* Do not set SLOT_ENABLED flag if some funcs
621 are not added. */
622 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900623 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Amos Kongce29ca32012-05-23 10:20:35 -0600628/* return first device in slot, acquiring a reference on it */
629static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
630{
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200631 struct pci_bus *bus = slot->bus;
Amos Kongce29ca32012-05-23 10:20:35 -0600632 struct pci_dev *dev;
633 struct pci_dev *ret = NULL;
634
635 down_read(&pci_bus_sem);
636 list_for_each_entry(dev, &bus->devices, bus_list)
637 if (PCI_SLOT(dev->devfn) == slot->device) {
638 ret = pci_dev_get(dev);
639 break;
640 }
641 up_read(&pci_bus_sem);
642
643 return ret;
644}
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200647 * disable_slot - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800648 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200650static void disable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600653 struct pci_dev *pdev;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900654
Amos Kongce29ca32012-05-23 10:20:35 -0600655 /*
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200656 * enable_slot() enumerates all functions in this device via
Amos Kongce29ca32012-05-23 10:20:35 -0600657 * pci_scan_slot(), whether they have associated ACPI hotplug
658 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
659 * here.
660 */
661 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600662 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600663 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700664 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700665
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200666 list_for_each_entry(func, &slot->funcs, sibling)
667 acpiphp_bus_trim(func_to_handle(func));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 slot->flags &= (~SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100672static bool acpiphp_no_hotplug(acpi_handle handle)
673{
674 struct acpi_device *adev = NULL;
675
676 acpi_bus_get_device(handle, &adev);
677 return adev && adev->flags.no_hotplug;
678}
679
680static bool slot_no_hotplug(struct acpiphp_slot *slot)
681{
682 struct acpiphp_func *func;
683
684 list_for_each_entry(func, &slot->funcs, sibling)
685 if (acpiphp_no_hotplug(func_to_handle(func)))
686 return true;
687
688 return false;
689}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691/**
692 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800693 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800695 * If a slot has _STA for each function and if any one of them
696 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800698 * If a slot doesn't have _STA and if any one of its functions'
699 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800701 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 */
703static unsigned int get_slot_status(struct acpiphp_slot *slot)
704{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400705 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct acpiphp_func *func;
707
Alex Chiang58c08622009-10-26 21:25:27 -0600708 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (func->flags & FUNC_HAS_STA) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200710 acpi_status status;
711
712 status = acpi_evaluate_integer(func_to_handle(func),
713 "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (ACPI_SUCCESS(status) && sta)
715 break;
716 } else {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200717 u32 dvid;
718
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200719 pci_bus_read_config_dword(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 PCI_DEVFN(slot->device,
721 func->function),
722 PCI_VENDOR_ID, &dvid);
723 if (dvid != 0xffffffff) {
724 sta = ACPI_STA_ALL;
725 break;
726 }
727 }
728 }
729
730 return (unsigned int)sta;
731}
732
Mika Westerberg72820592014-02-11 12:42:37 +0200733static inline bool device_status_valid(unsigned int sta)
734{
735 /*
736 * ACPI spec says that _STA may return bit 0 clear with bit 3 set
737 * if the device is valid but does not require a device driver to be
738 * loaded (Section 6.3.7 of ACPI 5.0A).
739 */
740 unsigned int mask = ACPI_STA_DEVICE_ENABLED | ACPI_STA_DEVICE_FUNCTIONING;
741 return (sta & mask) == mask;
742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/**
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200745 * trim_stale_devices - remove PCI devices that are not responding.
746 * @dev: PCI device to start walking the hierarchy from.
747 */
748static void trim_stale_devices(struct pci_dev *dev)
749{
750 acpi_handle handle = ACPI_HANDLE(&dev->dev);
751 struct pci_bus *bus = dev->subordinate;
752 bool alive = false;
753
754 if (handle) {
755 acpi_status status;
756 unsigned long long sta;
757
758 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Mika Westerberg72820592014-02-11 12:42:37 +0200759 alive = (ACPI_SUCCESS(status) && device_status_valid(sta))
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100760 || acpiphp_no_hotplug(handle);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200761 }
762 if (!alive) {
763 u32 v;
764
765 /* Check if the device responds. */
766 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0);
767 }
768 if (!alive) {
769 pci_stop_and_remove_bus_device(dev);
770 if (handle)
771 acpiphp_bus_trim(handle);
772 } else if (bus) {
773 struct pci_dev *child, *tmp;
774
775 /* The device is a bridge. so check the bus below it. */
776 pm_runtime_get_sync(&dev->dev);
Rafael J. Wysocki2d7c1b72014-02-03 02:22:07 +0100777 list_for_each_entry_safe_reverse(child, tmp, &bus->devices, bus_list)
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200778 trim_stale_devices(child);
779
780 pm_runtime_put(&dev->dev);
781 }
782}
783
784/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800786 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 *
788 * Iterate over all slots under this bridge and make sure that if a
789 * card is present they are enabled, and if not they are disabled.
790 */
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200791static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 struct acpiphp_slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100795 /* Bail out if the bridge is going away. */
796 if (bridge->is_going_away)
797 return;
798
Yijing Wangad41dd92013-04-12 05:44:27 +0000799 list_for_each_entry(slot, &bridge->slots, node) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200800 struct pci_bus *bus = slot->bus;
801 struct pci_dev *dev, *tmp;
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200802
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200803 mutex_lock(&slot->crit_sect);
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100804 if (slot_no_hotplug(slot)) {
805 ; /* do nothing */
Mika Westerberg72820592014-02-11 12:42:37 +0200806 } else if (device_status_valid(get_slot_status(slot))) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200807 /* remove stale devices if any */
Rafael J. Wysocki2d7c1b72014-02-03 02:22:07 +0100808 list_for_each_entry_safe_reverse(dev, tmp,
809 &bus->devices, bus_list)
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200810 if (PCI_SLOT(dev->devfn) == slot->device)
811 trim_stale_devices(dev);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200812
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200813 /* configure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200814 enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 } else {
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200816 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200818 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600822static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700823{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700824 struct pci_dev *dev;
825
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600826 list_for_each_entry(dev, &bus->devices, bus_list)
827 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700828}
829
830/*
831 * Remove devices for which we could not assign resources, call
832 * arch specific code to fix-up the bus
833 */
834static void acpiphp_sanitize_bus(struct pci_bus *bus)
835{
Yijing Wangd65eba62013-04-12 05:44:17 +0000836 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700837 int i;
838 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
839
Rafael J. Wysocki2d7c1b72014-02-03 02:22:07 +0100840 list_for_each_entry_safe_reverse(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700841 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
842 struct resource *res = &dev->resource[i];
843 if ((res->flags & type_mask) && !res->start &&
844 res->end) {
845 /* Could not assign a required resources
846 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800847 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700848 break;
849 }
850 }
851 }
852}
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854/*
855 * ACPI event handlers
856 */
857
Yinghai Lu3f327e32013-05-07 11:06:03 -0600858void acpiphp_check_host_bridge(acpi_handle handle)
859{
860 struct acpiphp_bridge *bridge;
861
862 bridge = acpiphp_handle_to_bridge(handle);
863 if (bridge) {
Rafael J. Wysockid42f5da2014-02-03 02:22:27 +0100864 pci_lock_rescan_remove();
865
Yinghai Lu3f327e32013-05-07 11:06:03 -0600866 acpiphp_check_bridge(bridge);
Rafael J. Wysockid42f5da2014-02-03 02:22:27 +0100867
868 pci_unlock_rescan_remove();
Yinghai Lu3f327e32013-05-07 11:06:03 -0600869 put_bridge(bridge);
870 }
Yinghai Lu3f327e32013-05-07 11:06:03 -0600871}
872
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100873static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot);
874
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200875static void hotplug_event(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200877 struct acpiphp_context *context = data;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200878 struct acpiphp_func *func = &context->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 struct acpiphp_bridge *bridge;
880 char objname[64];
881 struct acpi_buffer buffer = { .length = sizeof(objname),
882 .pointer = objname };
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400883
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200884 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200885 bridge = context->bridge;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200886 if (bridge)
887 get_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200889 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100890
Rafael J. Wysockif41b3262014-02-03 02:22:17 +0100891 pci_lock_rescan_remove();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
893
894 switch (type) {
895 case ACPI_NOTIFY_BUS_CHECK:
896 /* bus re-enumerate */
Lan Tianyubd950792013-09-24 18:11:48 -0600897 pr_debug("%s: Bus check notify on %s\n", __func__, objname);
898 pr_debug("%s: re-enumerating slots under %s\n",
899 __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200900 if (bridge) {
901 acpiphp_check_bridge(bridge);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200902 } else {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200903 struct acpiphp_slot *slot = func->slot;
904
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100905 if (slot->flags & SLOT_IS_GOING_AWAY)
906 break;
907
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200908 mutex_lock(&slot->crit_sect);
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200909 enable_slot(slot);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200910 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 break;
913
914 case ACPI_NOTIFY_DEVICE_CHECK:
915 /* device check */
Lan Tianyubd950792013-09-24 18:11:48 -0600916 pr_debug("%s: Device check notify on %s\n", __func__, objname);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200917 if (bridge) {
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200918 acpiphp_check_bridge(bridge);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200919 } else {
920 struct acpiphp_slot *slot = func->slot;
921 int ret;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200922
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100923 if (slot->flags & SLOT_IS_GOING_AWAY)
924 break;
925
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200926 /*
927 * Check if anything has changed in the slot and rescan
928 * from the parent if that's the case.
929 */
930 mutex_lock(&slot->crit_sect);
931 ret = acpiphp_rescan_slot(slot);
932 mutex_unlock(&slot->crit_sect);
933 if (ret)
934 acpiphp_check_bridge(func->parent);
935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 case ACPI_NOTIFY_EJECT_REQUEST:
939 /* request device eject */
Lan Tianyubd950792013-09-24 18:11:48 -0600940 pr_debug("%s: Device eject notify on %s\n", __func__, objname);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200941 acpiphp_disable_and_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400944
Rafael J. Wysockif41b3262014-02-03 02:22:17 +0100945 pci_unlock_rescan_remove();
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200946 if (bridge)
947 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100950static void hotplug_event_work(void *data, u32 type)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200951{
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100952 struct acpiphp_context *context = data;
953 acpi_handle handle = context->handle;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200954
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200955 acpi_scan_lock_acquire();
956
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100957 hotplug_event(handle, type, context);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400958
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100959 acpi_scan_lock_release();
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100960 acpi_evaluate_hotplug_ost(handle, type, ACPI_OST_SC_SUCCESS, NULL);
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200961 put_bridge(context->func.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400964/**
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200965 * handle_hotplug_event - handle ACPI hotplug event
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400966 * @handle: Notify()'ed acpi_handle
967 * @type: Notify code
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200968 * @data: pointer to acpiphp_context structure
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400969 *
970 * Handles ACPI event notification on slots.
971 */
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200972static void handle_hotplug_event(acpi_handle handle, u32 type, void *data)
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400973{
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200974 struct acpiphp_context *context;
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200975 u32 ost_code = ACPI_OST_SC_SUCCESS;
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100976 acpi_status status;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200977
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200978 switch (type) {
979 case ACPI_NOTIFY_BUS_CHECK:
980 case ACPI_NOTIFY_DEVICE_CHECK:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200981 break;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200982 case ACPI_NOTIFY_EJECT_REQUEST:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200983 ost_code = ACPI_OST_SC_EJECT_IN_PROGRESS;
984 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200985 break;
986
987 case ACPI_NOTIFY_DEVICE_WAKE:
988 return;
989
990 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
991 acpi_handle_err(handle, "Device cannot be configured due "
992 "to a frequency mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200993 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200994
995 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
996 acpi_handle_err(handle, "Device cannot be configured due "
997 "to a bus mode mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200998 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200999
1000 case ACPI_NOTIFY_POWER_FAULT:
1001 acpi_handle_err(handle, "Device has suffered a power fault\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +02001002 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +02001003
1004 default:
1005 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type);
Rafael J. Wysockie532e842013-09-06 15:41:41 +02001006 ost_code = ACPI_OST_SC_UNRECOGNIZED_NOTIFY;
1007 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +02001008 }
1009
Rafael J. Wysocki87831272013-07-13 23:27:24 +02001010 mutex_lock(&acpiphp_context_lock);
1011 context = acpiphp_get_context(handle);
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +01001012 if (!context || WARN_ON(context->handle != handle)
1013 || context->func.parent->is_going_away)
1014 goto err_out;
1015
1016 get_bridge(context->func.parent);
1017 acpiphp_put_context(context);
1018 status = acpi_hotplug_execute(hotplug_event_work, context, type);
1019 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockie532e842013-09-06 15:41:41 +02001020 mutex_unlock(&acpiphp_context_lock);
1021 return;
Rafael J. Wysocki87831272013-07-13 23:27:24 +02001022 }
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +01001023 put_bridge(context->func.parent);
1024
1025 err_out:
Rafael J. Wysocki87831272013-07-13 23:27:24 +02001026 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockie532e842013-09-06 15:41:41 +02001027 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
1028
1029 out:
1030 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001033/*
1034 * Create hotplug slots for the PCI bus.
1035 * It should always return 0 to avoid skipping following notifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +02001037void acpiphp_enumerate_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001039 struct acpiphp_bridge *bridge;
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001040 acpi_handle handle;
1041 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001043 if (acpiphp_disabled)
1044 return;
1045
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +02001046 handle = ACPI_HANDLE(bus->bridge);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001047 if (!handle)
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001048 return;
1049
1050 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +02001051 if (!bridge) {
1052 acpi_handle_err(handle, "No memory for bridge object\n");
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001053 return;
1054 }
1055
Yijing Wangad41dd92013-04-12 05:44:27 +00001056 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +00001057 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001058 bridge->pci_dev = pci_dev_get(bus->self);
1059 bridge->pci_bus = bus;
1060
1061 /*
1062 * Grab a ref to the subordinate PCI bus in case the bus is
1063 * removed via PCI core logical hotplug. The ref pins the bus
1064 * (which we access during module unload).
1065 */
1066 get_device(&bus->dev);
1067
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001068 if (!pci_is_root_bus(bridge->pci_bus)) {
1069 struct acpiphp_context *context;
1070
1071 /*
1072 * This bridge should have been registered as a hotplug function
Rafael J. Wysockifd3cfeb2013-10-12 01:49:48 +02001073 * under its parent, so the context should be there, unless the
1074 * parent is going to be handled by pciehp, in which case this
1075 * bridge is not interesting to us either.
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001076 */
1077 mutex_lock(&acpiphp_context_lock);
1078 context = acpiphp_get_context(handle);
Rafael J. Wysockifd3cfeb2013-10-12 01:49:48 +02001079 if (!context) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001080 mutex_unlock(&acpiphp_context_lock);
1081 put_device(&bus->dev);
Rafael J. Wysocki5d449452013-10-11 13:20:50 +02001082 pci_dev_put(bridge->pci_dev);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001083 kfree(bridge);
1084 return;
1085 }
1086 bridge->context = context;
1087 context->bridge = bridge;
1088 /* Get a reference to the parent bridge. */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +02001089 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001090 mutex_unlock(&acpiphp_context_lock);
1091 }
1092
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001093 /* must be added to the list prior to calling register_slot */
1094 mutex_lock(&bridge_mutex);
1095 list_add(&bridge->list, &bridge_list);
1096 mutex_unlock(&bridge_mutex);
1097
1098 /* register all slot objects under this bridge */
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001099 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001100 register_slot, NULL, bridge, NULL);
1101 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001102 acpi_handle_err(handle, "failed to register slots\n");
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001103 cleanup_bridge(bridge);
1104 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001108/* Destroy hotplug slots associated with the PCI bus */
1109void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001111 struct acpiphp_bridge *bridge;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001112
1113 if (acpiphp_disabled)
1114 return;
1115
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001116 mutex_lock(&bridge_mutex);
1117 list_for_each_entry(bridge, &bridge_list, list)
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001118 if (bridge->pci_bus == bus) {
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001119 mutex_unlock(&bridge_mutex);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001120 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001121 put_bridge(bridge);
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001122 return;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001123 }
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001124
1125 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/**
1129 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001130 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 */
1132int acpiphp_enable_slot(struct acpiphp_slot *slot)
1133{
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001134 pci_lock_rescan_remove();
1135
1136 if (slot->flags & SLOT_IS_GOING_AWAY)
1137 return -ENODEV;
1138
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001139 mutex_lock(&slot->crit_sect);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001140 /* configure all functions */
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001141 if (!(slot->flags & SLOT_ENABLED))
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001142 enable_slot(slot);
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001143
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001144 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001145
1146 pci_unlock_rescan_remove();
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150/**
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001151 * acpiphp_disable_and_eject_slot - power off and eject slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001152 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 */
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001154static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001156 struct acpiphp_func *func;
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001157
1158 if (slot->flags & SLOT_IS_GOING_AWAY)
1159 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001161 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /* unconfigure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001164 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001166 list_for_each_entry(func, &slot->funcs, sibling)
1167 if (func->flags & FUNC_HAS_EJ0) {
1168 acpi_handle handle = func_to_handle(func);
1169
1170 if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
1171 acpi_handle_err(handle, "_EJ0 failed\n");
1172
1173 break;
1174 }
1175
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001176 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001180int acpiphp_disable_slot(struct acpiphp_slot *slot)
1181{
1182 int ret;
1183
1184 pci_lock_rescan_remove();
1185 ret = acpiphp_disable_and_eject_slot(slot);
1186 pci_unlock_rescan_remove();
1187 return ret;
1188}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190/*
1191 * slot enabled: 1
1192 * slot disabled: 0
1193 */
1194u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1195{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001196 return (slot->flags & SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001200 * latch open: 1
1201 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 */
1203u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1204{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001205 return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/*
1209 * adapter presence : 1
1210 * absence : 0
1211 */
1212u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1213{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001214 return !!get_slot_status(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}