blob: 0961911c706e4d979797110d7a872c2002415b0b [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.
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +010076 * @adev: ACPI device object to create the context for.
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020077 *
78 * Call under acpiphp_context_lock.
79 */
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +010080static struct acpiphp_context *acpiphp_init_context(struct acpi_device *adev)
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020081{
82 struct acpiphp_context *context;
83 acpi_status status;
84
85 context = kzalloc(sizeof(*context), GFP_KERNEL);
86 if (!context)
87 return NULL;
88
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +010089 context->adev = adev;
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020090 context->refcount = 1;
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +010091 status = acpi_attach_data(adev->handle, acpiphp_context_handler, context);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020092 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.
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100121 * @context: ACPI hotplug context to drop a reference to.
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200122 *
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. Wysockibbcbfc02014-02-04 00:39:33 +0100133 acpi_detach_data(context->adev->handle, acpiphp_context_handler);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200134 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);
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100219 if (!context || WARN_ON(context->adev->handle != handle)
Rafael J. Wysockiaf9d8ad2014-02-03 22:30:15 +0100220 || 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;
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100287 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 struct acpiphp_slot *slot;
289 struct acpiphp_func *newfunc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 acpi_status status = AE_OK;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200291 unsigned long long adr;
292 int device, function;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900293 struct pci_bus *pbus = bridge->pci_bus;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200294 struct pci_dev *pdev = bridge->pci_dev;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000295 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200297 if (pdev && device_is_managed_by_native_pciehp(pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return AE_OK;
299
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600300 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
301 if (ACPI_FAILURE(status)) {
Toshi Kanif26ca1d2013-11-27 13:33:09 -0700302 if (status != AE_NOT_FOUND)
303 acpi_handle_warn(handle,
304 "can't evaluate _ADR (%#x)\n", status);
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600305 return AE_OK;
306 }
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100307 if (acpi_bus_get_device(handle, &adev))
308 return AE_OK;
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600309
310 device = (adr >> 16) & 0xffff;
311 function = adr & 0xffff;
312
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200313 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100314 context = acpiphp_init_context(adev);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200315 if (!context) {
316 mutex_unlock(&acpiphp_context_lock);
317 acpi_handle_err(handle, "No hotplug context\n");
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200318 return AE_NOT_EXIST;
319 }
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200320 newfunc = &context->func;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200321 newfunc->function = function;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200322 newfunc->parent = bridge;
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200323 mutex_unlock(&acpiphp_context_lock);
324
Jiang Liuecd046d2013-06-29 00:24:43 +0800325 if (acpi_has_method(handle, "_EJ0"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800326 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Jiang Liuecd046d2013-06-29 00:24:43 +0800328 if (acpi_has_method(handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 newfunc->flags |= FUNC_HAS_STA;
330
Jiang Liuecd046d2013-06-29 00:24:43 +0800331 if (acpi_has_method(handle, "_DCK"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800332 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* search for objects that share the same slot */
Yijing Wangad41dd92013-04-12 05:44:27 +0000335 list_for_each_entry(slot, &bridge->slots, node)
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200336 if (slot->device == device)
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200337 goto slot_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200339 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
340 if (!slot) {
Rafael J. Wysocki146fc682014-02-04 00:38:15 +0100341 mutex_lock(&acpiphp_context_lock);
342 acpiphp_put_context(context);
343 mutex_unlock(&acpiphp_context_lock);
344 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200347 slot->bus = bridge->pci_bus;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200348 slot->device = device;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200349 INIT_LIST_HEAD(&slot->funcs);
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200350
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200351 list_add_tail(&slot->node, &bridge->slots);
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200352
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700353 /* Register slots for ejectable functions only. */
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200354 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) {
355 unsigned long long sun;
356 int retval;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200357
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200358 bridge->nr_slots++;
359 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
360 if (ACPI_FAILURE(status))
361 sun = bridge->nr_slots;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200362
Lan Tianyubd950792013-09-24 18:11:48 -0600363 pr_debug("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200364 sun, pci_domain_nr(pbus), pbus->number, device);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200365
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200366 retval = acpiphp_register_hotplug_slot(slot, sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200367 if (retval) {
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200368 slot->slot = NULL;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200369 bridge->nr_slots--;
370 if (retval == -EBUSY)
Lan Tianyubd950792013-09-24 18:11:48 -0600371 pr_warn("Slot %llu already registered by another "
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200372 "hotplug driver\n", sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200373 else
Lan Tianyubd950792013-09-24 18:11:48 -0600374 pr_warn("acpiphp_register_hotplug_slot failed "
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200375 "(err code = 0x%x)\n", retval);
376 }
377 /* Even if the slot registration fails, we can still use it. */
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200378 }
379
380 slot_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 newfunc->slot = slot;
382 list_add_tail(&newfunc->sibling, &slot->funcs);
383
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000384 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
385 &val, 60*1000))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200386 slot->flags |= SLOT_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400388 if (is_dock_device(handle)) {
389 /* we don't want to call this device's _EJ0
390 * because we want the dock notify handler
391 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800392 */
393 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400394 if (register_hotplug_dock_device(handle,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200395 &acpiphp_dock_ops, context,
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200396 acpiphp_dock_init, acpiphp_dock_release))
Lan Tianyubd950792013-09-24 18:11:48 -0600397 pr_debug("failed to register dock device\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800398 }
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800401 if (!(newfunc->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200402 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
403 handle_hotplug_event,
404 context);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200405 if (ACPI_FAILURE(status))
406 acpi_handle_err(handle,
407 "failed to install notify handler\n");
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200410 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Rajesh Shah42f49a62005-04-28 00:25:53 -0700413static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
414{
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200415 struct acpiphp_context *context;
416 struct acpiphp_bridge *bridge = NULL;
Alex Chiang58c08622009-10-26 21:25:27 -0600417
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200418 mutex_lock(&acpiphp_context_lock);
419 context = acpiphp_get_context(handle);
420 if (context) {
421 bridge = context->bridge;
422 if (bridge)
Jiang Liu3d54a312013-04-12 05:44:28 +0000423 get_bridge(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700424
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200425 acpiphp_put_context(context);
426 }
427 mutex_unlock(&acpiphp_context_lock);
428 return bridge;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700429}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Rajesh Shah364d5092005-04-28 00:25:54 -0700431static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Jiang Liu3d54a312013-04-12 05:44:28 +0000433 struct acpiphp_slot *slot;
434 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700435 acpi_status status;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700436
Jiang Liu3d54a312013-04-12 05:44:28 +0000437 list_for_each_entry(slot, &bridge->slots, node) {
438 list_for_each_entry(func, &slot->funcs, sibling) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200439 acpi_handle handle = func_to_handle(func);
440
441 if (is_dock_device(handle))
442 unregister_hotplug_dock_device(handle);
443
Kristen Accardi20416ea2006-02-23 17:56:03 -0800444 if (!(func->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200445 status = acpi_remove_notify_handler(handle,
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200446 ACPI_SYSTEM_NOTIFY,
447 handle_hotplug_event);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800448 if (ACPI_FAILURE(status))
Lan Tianyubd950792013-09-24 18:11:48 -0600449 pr_err("failed to remove notify handler\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800450 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700451 }
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100452 slot->flags |= SLOT_IS_GOING_AWAY;
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200453 if (slot->slot)
454 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700455 }
456
Jiang Liu3d54a312013-04-12 05:44:28 +0000457 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700458 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000459 mutex_unlock(&bridge_mutex);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100460
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100461 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100462 bridge->is_going_away = true;
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100463 mutex_unlock(&acpiphp_context_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800466/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800467 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800468 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800469 */
470static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
471{
472 struct list_head *tmp;
473 unsigned char max, n;
474
475 /*
476 * pci_bus_max_busnr will return the highest
477 * reserved busnr for all these children.
478 * that is equivalent to the bus->subordinate
479 * value. We don't want to use the parent's
480 * bus->subordinate value because it could have
481 * padding in it.
482 */
Yinghai Lub918c622012-05-17 18:51:11 -0700483 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800484
485 list_for_each(tmp, &bus->children) {
486 n = pci_bus_max_busnr(pci_bus_b(tmp));
487 if (n > max)
488 max = n;
489 }
490 return max;
491}
492
Shaohua Lid0607052010-02-25 10:59:34 +0800493static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
494{
495 struct acpiphp_func *func;
496 union acpi_object params[2];
497 struct acpi_object_list arg_list;
498
499 list_for_each_entry(func, &slot->funcs, sibling) {
500 arg_list.count = 2;
501 arg_list.pointer = params;
502 params[0].type = ACPI_TYPE_INTEGER;
503 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
504 params[1].type = ACPI_TYPE_INTEGER;
505 params[1].integer.value = 1;
506 /* _REG is optional, we don't care about if there is failure */
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200507 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
508 NULL);
Shaohua Lid0607052010-02-25 10:59:34 +0800509 }
510}
511
Yinghai Lu1f96a962013-01-21 13:20:42 -0800512static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
513{
514 struct acpiphp_func *func;
515
Yinghai Lu1f96a962013-01-21 13:20:42 -0800516 /* quirk, or pcie could set it already */
517 if (dev->is_hotplug_bridge)
518 return;
519
Yinghai Lu1f96a962013-01-21 13:20:42 -0800520 list_for_each_entry(func, &slot->funcs, sibling) {
521 if (PCI_FUNC(dev->devfn) == func->function) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200522 dev->is_hotplug_bridge = 1;
Yinghai Lu1f96a962013-01-21 13:20:42 -0800523 break;
524 }
525 }
526}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000527
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200528static int acpiphp_rescan_slot(struct acpiphp_slot *slot)
529{
530 struct acpiphp_func *func;
531
Rafael J. Wysockib6708fb2014-02-04 00:39:58 +0100532 list_for_each_entry(func, &slot->funcs, sibling) {
533 struct acpi_device *adev = func_to_acpi_device(func);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200534
Rafael J. Wysockib6708fb2014-02-04 00:39:58 +0100535 acpi_bus_scan(adev->handle);
536 if (acpi_device_enumerated(adev))
537 acpi_device_set_power(adev, ACPI_STATE_D0);
538 }
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200539 return pci_scan_slot(slot->bus, PCI_DEVFN(slot->device, 0));
540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200543 * enable_slot - enable, configure a slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * @slot: slot to be enabled
545 *
546 * This function should be called per *physical slot*,
547 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200549static void __ref enable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct pci_dev *dev;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200552 struct pci_bus *bus = slot->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct acpiphp_func *func;
Kirill A. Shutemovb91182a2013-07-13 23:27:26 +0200554 int max, pass;
Jiang Liud66ecb72013-06-23 01:01:35 +0200555 LIST_HEAD(add_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Mika Westerbergab122592013-10-30 14:40:36 +0200557 acpiphp_rescan_slot(slot);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800558 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700559 for (pass = 0; pass < 2; pass++) {
560 list_for_each_entry(dev, &bus->devices, bus_list) {
561 if (PCI_SLOT(dev->devfn) != slot->device)
562 continue;
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200563
Rajesh Shah42f49a62005-04-28 00:25:53 -0700564 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800565 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700566 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800567 if (pass && dev->subordinate) {
568 check_hotplug_bridge(slot, dev);
Jiang Liud66ecb72013-06-23 01:01:35 +0200569 pcibios_resource_survey_bus(dev->subordinate);
570 __pci_bus_size_bridges(dev->subordinate,
571 &add_list);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800572 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800573 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
Jiang Liud66ecb72013-06-23 01:01:35 +0200576 __pci_bus_assign_resources(bus, &add_list, NULL);
Rafael J. Wysocki2dc41282013-09-06 15:41:32 +0200577
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700578 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600579 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800580 acpiphp_set_acpi_region(slot);
Ian Campbell69643e42011-05-11 17:00:32 +0100581
582 list_for_each_entry(dev, &bus->devices, bus_list) {
583 /* Assume that newly added devices are powered on already. */
584 if (!dev->is_added)
585 dev->current_state = PCI_D0;
586 }
587
Rajesh Shah42f49a62005-04-28 00:25:53 -0700588 pci_bus_add_devices(bus);
589
Amos Kongf382a082011-11-25 15:03:07 +0800590 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600591 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600592 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
593 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800594 if (!dev) {
595 /* Do not set SLOT_ENABLED flag if some funcs
596 are not added. */
597 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900598 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200604 * disable_slot - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800605 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200607static void disable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Rafael J. Wysocki1c0c5442014-02-04 00:37:02 +0100609 struct pci_bus *bus = slot->bus;
610 struct pci_dev *dev, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 struct acpiphp_func *func;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900612
Amos Kongce29ca32012-05-23 10:20:35 -0600613 /*
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200614 * enable_slot() enumerates all functions in this device via
Amos Kongce29ca32012-05-23 10:20:35 -0600615 * pci_scan_slot(), whether they have associated ACPI hotplug
616 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
617 * here.
618 */
Rafael J. Wysocki1c0c5442014-02-04 00:37:02 +0100619 list_for_each_entry_safe_reverse(dev, prev, &bus->devices, bus_list)
620 if (PCI_SLOT(dev->devfn) == slot->device)
621 pci_stop_and_remove_bus_device(dev);
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700622
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100623 list_for_each_entry(func, &slot->funcs, sibling)
624 acpi_bus_trim(func_to_acpi_device(func));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 slot->flags &= (~SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Rafael J. Wysockib2118d62014-02-04 00:39:20 +0100629static bool acpiphp_no_hotplug(struct acpi_device *adev)
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100630{
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100631 return adev && adev->flags.no_hotplug;
632}
633
634static bool slot_no_hotplug(struct acpiphp_slot *slot)
635{
636 struct acpiphp_func *func;
637
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100638 list_for_each_entry(func, &slot->funcs, sibling)
639 if (acpiphp_no_hotplug(func_to_acpi_device(func)))
Rafael J. Wysockib2118d62014-02-04 00:39:20 +0100640 return true;
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100641
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100642 return false;
643}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645/**
646 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800647 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800649 * If a slot has _STA for each function and if any one of them
650 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800652 * If a slot doesn't have _STA and if any one of its functions'
653 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800655 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
657static unsigned int get_slot_status(struct acpiphp_slot *slot)
658{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400659 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 struct acpiphp_func *func;
661
Alex Chiang58c08622009-10-26 21:25:27 -0600662 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (func->flags & FUNC_HAS_STA) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200664 acpi_status status;
665
666 status = acpi_evaluate_integer(func_to_handle(func),
667 "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (ACPI_SUCCESS(status) && sta)
669 break;
670 } else {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200671 u32 dvid;
672
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200673 pci_bus_read_config_dword(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 PCI_DEVFN(slot->device,
675 func->function),
676 PCI_VENDOR_ID, &dvid);
677 if (dvid != 0xffffffff) {
678 sta = ACPI_STA_ALL;
679 break;
680 }
681 }
682 }
683
684 return (unsigned int)sta;
685}
686
687/**
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200688 * trim_stale_devices - remove PCI devices that are not responding.
689 * @dev: PCI device to start walking the hierarchy from.
690 */
691static void trim_stale_devices(struct pci_dev *dev)
692{
Rafael J. Wysocki4dc30822014-02-04 00:38:52 +0100693 struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200694 struct pci_bus *bus = dev->subordinate;
695 bool alive = false;
696
Rafael J. Wysocki4dc30822014-02-04 00:38:52 +0100697 if (adev) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200698 acpi_status status;
699 unsigned long long sta;
700
Rafael J. Wysockib2118d62014-02-04 00:39:20 +0100701 status = acpi_evaluate_integer(adev->handle, "_STA", NULL, &sta);
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100702 alive = (ACPI_SUCCESS(status) && sta == ACPI_STA_ALL)
Rafael J. Wysockib2118d62014-02-04 00:39:20 +0100703 || acpiphp_no_hotplug(adev);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200704 }
705 if (!alive) {
706 u32 v;
707
708 /* Check if the device responds. */
709 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0);
710 }
711 if (!alive) {
712 pci_stop_and_remove_bus_device(dev);
Rafael J. Wysocki4dc30822014-02-04 00:38:52 +0100713 if (adev)
714 acpi_bus_trim(adev);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200715 } else if (bus) {
716 struct pci_dev *child, *tmp;
717
718 /* The device is a bridge. so check the bus below it. */
719 pm_runtime_get_sync(&dev->dev);
Rafael J. Wysocki2d7c1b72014-02-03 02:22:07 +0100720 list_for_each_entry_safe_reverse(child, tmp, &bus->devices, bus_list)
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200721 trim_stale_devices(child);
722
723 pm_runtime_put(&dev->dev);
724 }
725}
726
727/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800729 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *
731 * Iterate over all slots under this bridge and make sure that if a
732 * card is present they are enabled, and if not they are disabled.
733 */
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200734static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 struct acpiphp_slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100738 /* Bail out if the bridge is going away. */
739 if (bridge->is_going_away)
740 return;
741
Yijing Wangad41dd92013-04-12 05:44:27 +0000742 list_for_each_entry(slot, &bridge->slots, node) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200743 struct pci_bus *bus = slot->bus;
744 struct pci_dev *dev, *tmp;
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200745
Rafael J. Wysockif244d8b2013-12-31 13:39:42 +0100746 if (slot_no_hotplug(slot)) {
747 ; /* do nothing */
748 } else if (get_slot_status(slot) == ACPI_STA_ALL) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200749 /* remove stale devices if any */
Rafael J. Wysocki2d7c1b72014-02-03 02:22:07 +0100750 list_for_each_entry_safe_reverse(dev, tmp,
751 &bus->devices, bus_list)
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200752 if (PCI_SLOT(dev->devfn) == slot->device)
753 trim_stale_devices(dev);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200754
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200755 /* configure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200756 enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 } else {
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200758 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600763static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700764{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700765 struct pci_dev *dev;
766
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600767 list_for_each_entry(dev, &bus->devices, bus_list)
768 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700769}
770
771/*
772 * Remove devices for which we could not assign resources, call
773 * arch specific code to fix-up the bus
774 */
775static void acpiphp_sanitize_bus(struct pci_bus *bus)
776{
Yijing Wangd65eba62013-04-12 05:44:17 +0000777 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700778 int i;
779 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
780
Rafael J. Wysocki2d7c1b72014-02-03 02:22:07 +0100781 list_for_each_entry_safe_reverse(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700782 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
783 struct resource *res = &dev->resource[i];
784 if ((res->flags & type_mask) && !res->start &&
785 res->end) {
786 /* Could not assign a required resources
787 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800788 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700789 break;
790 }
791 }
792 }
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/*
796 * ACPI event handlers
797 */
798
Yinghai Lu3f327e32013-05-07 11:06:03 -0600799void acpiphp_check_host_bridge(acpi_handle handle)
800{
801 struct acpiphp_bridge *bridge;
802
803 bridge = acpiphp_handle_to_bridge(handle);
804 if (bridge) {
Rafael J. Wysockid42f5da2014-02-03 02:22:27 +0100805 pci_lock_rescan_remove();
806
Yinghai Lu3f327e32013-05-07 11:06:03 -0600807 acpiphp_check_bridge(bridge);
Rafael J. Wysockid42f5da2014-02-03 02:22:27 +0100808
809 pci_unlock_rescan_remove();
Yinghai Lu3f327e32013-05-07 11:06:03 -0600810 put_bridge(bridge);
811 }
Yinghai Lu3f327e32013-05-07 11:06:03 -0600812}
813
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100814static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot);
815
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200816static void hotplug_event(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200818 struct acpiphp_context *context = data;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200819 struct acpiphp_func *func = &context->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 struct acpiphp_bridge *bridge;
821 char objname[64];
822 struct acpi_buffer buffer = { .length = sizeof(objname),
823 .pointer = objname };
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400824
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200825 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200826 bridge = context->bridge;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200827 if (bridge)
828 get_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200830 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100831
Rafael J. Wysockif41b3262014-02-03 02:22:17 +0100832 pci_lock_rescan_remove();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
834
835 switch (type) {
836 case ACPI_NOTIFY_BUS_CHECK:
837 /* bus re-enumerate */
Lan Tianyubd950792013-09-24 18:11:48 -0600838 pr_debug("%s: Bus check notify on %s\n", __func__, objname);
839 pr_debug("%s: re-enumerating slots under %s\n",
840 __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200841 if (bridge) {
842 acpiphp_check_bridge(bridge);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200843 } else {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200844 struct acpiphp_slot *slot = func->slot;
845
Rafael J. Wysocki661b4062014-02-04 00:40:25 +0100846 if (!(slot->flags & SLOT_IS_GOING_AWAY))
847 enable_slot(slot);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 break;
850
851 case ACPI_NOTIFY_DEVICE_CHECK:
852 /* device check */
Lan Tianyubd950792013-09-24 18:11:48 -0600853 pr_debug("%s: Device check notify on %s\n", __func__, objname);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200854 if (bridge) {
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200855 acpiphp_check_bridge(bridge);
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200856 } else {
857 struct acpiphp_slot *slot = func->slot;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200858
Rafael J. Wysocki9217a982014-01-10 15:24:41 +0100859 if (slot->flags & SLOT_IS_GOING_AWAY)
860 break;
861
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200862 /*
863 * Check if anything has changed in the slot and rescan
864 * from the parent if that's the case.
865 */
Rafael J. Wysocki661b4062014-02-04 00:40:25 +0100866 if (acpiphp_rescan_slot(slot))
Rafael J. Wysockia47d8c82013-09-08 00:07:28 +0200867 acpiphp_check_bridge(func->parent);
868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 case ACPI_NOTIFY_EJECT_REQUEST:
872 /* request device eject */
Lan Tianyubd950792013-09-24 18:11:48 -0600873 pr_debug("%s: Device eject notify on %s\n", __func__, objname);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200874 acpiphp_disable_and_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400877
Rafael J. Wysockif41b3262014-02-03 02:22:17 +0100878 pci_unlock_rescan_remove();
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200879 if (bridge)
880 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100883static void hotplug_event_work(void *data, u32 type)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200884{
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100885 struct acpiphp_context *context = data;
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100886 acpi_handle handle = context->adev->handle;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200887
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200888 acpi_scan_lock_acquire();
889
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100890 hotplug_event(handle, type, context);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400891
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100892 acpi_scan_lock_release();
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100893 acpi_evaluate_hotplug_ost(handle, type, ACPI_OST_SC_SUCCESS, NULL);
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200894 put_bridge(context->func.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400897/**
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200898 * handle_hotplug_event - handle ACPI hotplug event
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400899 * @handle: Notify()'ed acpi_handle
900 * @type: Notify code
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200901 * @data: pointer to acpiphp_context structure
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400902 *
903 * Handles ACPI event notification on slots.
904 */
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200905static void handle_hotplug_event(acpi_handle handle, u32 type, void *data)
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400906{
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200907 struct acpiphp_context *context;
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200908 u32 ost_code = ACPI_OST_SC_SUCCESS;
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100909 acpi_status status;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200910
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200911 switch (type) {
912 case ACPI_NOTIFY_BUS_CHECK:
913 case ACPI_NOTIFY_DEVICE_CHECK:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200914 break;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200915 case ACPI_NOTIFY_EJECT_REQUEST:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200916 ost_code = ACPI_OST_SC_EJECT_IN_PROGRESS;
917 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200918 break;
919
920 case ACPI_NOTIFY_DEVICE_WAKE:
921 return;
922
923 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
924 acpi_handle_err(handle, "Device cannot be configured due "
925 "to a frequency mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200926 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200927
928 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
929 acpi_handle_err(handle, "Device cannot be configured due "
930 "to a bus mode mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200931 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200932
933 case ACPI_NOTIFY_POWER_FAULT:
934 acpi_handle_err(handle, "Device has suffered a power fault\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200935 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200936
937 default:
938 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200939 ost_code = ACPI_OST_SC_UNRECOGNIZED_NOTIFY;
940 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200941 }
942
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200943 mutex_lock(&acpiphp_context_lock);
944 context = acpiphp_get_context(handle);
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100945 if (!context || WARN_ON(context->adev->handle != handle)
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100946 || context->func.parent->is_going_away)
947 goto err_out;
948
949 get_bridge(context->func.parent);
950 acpiphp_put_context(context);
951 status = acpi_hotplug_execute(hotplug_event_work, context, type);
952 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200953 mutex_unlock(&acpiphp_context_lock);
954 return;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200955 }
Rafael J. Wysocki1b360f42014-02-03 22:30:06 +0100956 put_bridge(context->func.parent);
957
958 err_out:
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200959 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200960 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
961
962 out:
963 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700964}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Rafael J. Wysocki454481a2014-02-04 00:37:35 +0100966/**
967 * acpiphp_enumerate_slots - Enumerate PCI slots for a given bus.
968 * @bus: PCI bus to enumerate the slots for.
969 *
970 * A "slot" is an object associated with a PCI device number. All functions
971 * (PCI devices) with the same bus and device number belong to the same slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200973void acpiphp_enumerate_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000975 struct acpiphp_bridge *bridge;
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100976 struct acpi_device *adev;
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +0200977 acpi_handle handle;
978 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000980 if (acpiphp_disabled)
981 return;
982
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100983 adev = ACPI_COMPANION(bus->bridge);
984 if (!adev)
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000985 return;
986
Rafael J. Wysockibbcbfc02014-02-04 00:39:33 +0100987 handle = adev->handle;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000988 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200989 if (!bridge) {
990 acpi_handle_err(handle, "No memory for bridge object\n");
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000991 return;
992 }
993
Yijing Wangad41dd92013-04-12 05:44:27 +0000994 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +0000995 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000996 bridge->pci_dev = pci_dev_get(bus->self);
997 bridge->pci_bus = bus;
998
999 /*
1000 * Grab a ref to the subordinate PCI bus in case the bus is
1001 * removed via PCI core logical hotplug. The ref pins the bus
1002 * (which we access during module unload).
1003 */
1004 get_device(&bus->dev);
1005
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001006 if (!pci_is_root_bus(bridge->pci_bus)) {
1007 struct acpiphp_context *context;
1008
1009 /*
1010 * This bridge should have been registered as a hotplug function
Rafael J. Wysockifd3cfeb2013-10-12 01:49:48 +02001011 * under its parent, so the context should be there, unless the
1012 * parent is going to be handled by pciehp, in which case this
1013 * bridge is not interesting to us either.
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001014 */
1015 mutex_lock(&acpiphp_context_lock);
1016 context = acpiphp_get_context(handle);
Rafael J. Wysockifd3cfeb2013-10-12 01:49:48 +02001017 if (!context) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001018 mutex_unlock(&acpiphp_context_lock);
1019 put_device(&bus->dev);
Rafael J. Wysocki5d449452013-10-11 13:20:50 +02001020 pci_dev_put(bridge->pci_dev);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001021 kfree(bridge);
1022 return;
1023 }
1024 bridge->context = context;
1025 context->bridge = bridge;
1026 /* Get a reference to the parent bridge. */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +02001027 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001028 mutex_unlock(&acpiphp_context_lock);
1029 }
1030
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001031 /* must be added to the list prior to calling register_slot */
1032 mutex_lock(&bridge_mutex);
1033 list_add(&bridge->list, &bridge_list);
1034 mutex_unlock(&bridge_mutex);
1035
1036 /* register all slot objects under this bridge */
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001037 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001038 register_slot, NULL, bridge, NULL);
1039 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001040 acpi_handle_err(handle, "failed to register slots\n");
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001041 cleanup_bridge(bridge);
1042 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Rafael J. Wysocki454481a2014-02-04 00:37:35 +01001046/**
1047 * acpiphp_remove_slots - Remove slot objects associated with a given bus.
1048 * @bus: PCI bus to remove the slot objects for.
1049 */
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001050void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001052 struct acpiphp_bridge *bridge;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001053
1054 if (acpiphp_disabled)
1055 return;
1056
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001057 mutex_lock(&bridge_mutex);
1058 list_for_each_entry(bridge, &bridge_list, list)
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001059 if (bridge->pci_bus == bus) {
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001060 mutex_unlock(&bridge_mutex);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001061 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001062 put_bridge(bridge);
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001063 return;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001064 }
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001065
1066 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069/**
1070 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001071 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 */
1073int acpiphp_enable_slot(struct acpiphp_slot *slot)
1074{
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001075 pci_lock_rescan_remove();
1076
1077 if (slot->flags & SLOT_IS_GOING_AWAY)
1078 return -ENODEV;
1079
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001080 /* configure all functions */
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001081 if (!(slot->flags & SLOT_ENABLED))
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001082 enable_slot(slot);
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001083
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001084 pci_unlock_rescan_remove();
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088/**
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001089 * acpiphp_disable_and_eject_slot - power off and eject slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001090 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001092static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001094 struct acpiphp_func *func;
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001095
1096 if (slot->flags & SLOT_IS_GOING_AWAY)
1097 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /* unconfigure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001100 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001102 list_for_each_entry(func, &slot->funcs, sibling)
1103 if (func->flags & FUNC_HAS_EJ0) {
1104 acpi_handle handle = func_to_handle(func);
1105
1106 if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
1107 acpi_handle_err(handle, "_EJ0 failed\n");
1108
1109 break;
1110 }
1111
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Rafael J. Wysocki9217a982014-01-10 15:24:41 +01001115int acpiphp_disable_slot(struct acpiphp_slot *slot)
1116{
1117 int ret;
1118
1119 pci_lock_rescan_remove();
1120 ret = acpiphp_disable_and_eject_slot(slot);
1121 pci_unlock_rescan_remove();
1122 return ret;
1123}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125/*
1126 * slot enabled: 1
1127 * slot disabled: 0
1128 */
1129u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1130{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001131 return (slot->flags & SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001135 * latch open: 1
1136 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
1138u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1139{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001140 return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143/*
1144 * adapter presence : 1
1145 * absence : 0
1146 */
1147u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1148{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001149 return !!get_slot_status(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}