blob: 716aa93fff76437ab0038de385d7c4fa7ec04834 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ACPI PCI HotPlug glue functions to ACPI CA subsystem
3 *
4 * Copyright (C) 2002,2003 Takayoshi Kochi (t-kochi@bq.jp.nec.com)
5 * Copyright (C) 2002 Hiroshi Aono (h-aono@ap.jp.nec.com)
6 * Copyright (C) 2002,2003 NEC Corporation
Rajesh Shah42f49a62005-04-28 00:25:53 -07007 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com)
8 * Copyright (C) 2003-2005 Hewlett Packard
Rajesh Shah8e7561c2005-04-28 00:25:56 -07009 * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com)
10 * Copyright (C) 2005 Intel Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * All rights reserved.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or (at
17 * your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
22 * NON INFRINGEMENT. See the GNU General Public License for more
23 * details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 *
Kristen Carlson Accardi998be202006-07-26 10:52:33 -070029 * Send feedback to <kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
Rajesh Shah42f49a62005-04-28 00:25:53 -070033/*
34 * Lifetime rules for pci_dev:
Rajesh Shah42f49a62005-04-28 00:25:53 -070035 * - The one in acpiphp_bridge has its refcount elevated by pci_get_slot()
36 * when the bridge is scanned and it loses a refcount when the bridge
37 * is removed.
Alex Chiang5d4a4b22009-03-30 10:50:14 -060038 * - When a P2P bridge is present, we elevate the refcount on the subordinate
39 * bus. It loses the refcount when the the driver unloads.
Rajesh Shah42f49a62005-04-28 00:25:53 -070040 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/init.h>
43#include <linux/module.h>
44
45#include <linux/kernel.h>
46#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070047#include <linux/pci_hotplug.h>
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090048#include <linux/pci-acpi.h>
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +010049#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Prarit Bhargava6af8bef2011-09-28 19:40:53 -040051#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "acpiphp.h"
55
56static LIST_HEAD(bridge_list);
Jiang Liu3d54a312013-04-12 05:44:28 +000057static DEFINE_MUTEX(bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define MY_NAME "acpiphp_glue"
60
61static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070062static void acpiphp_sanitize_bus(struct pci_bus *bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -060063static void acpiphp_set_hpp_values(struct pci_bus *bus);
Len Brown2b85e132006-06-27 01:50:14 -040064static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
Jiang Liu3d54a312013-04-12 05:44:28 +000065static void free_bridge(struct kref *kref);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070066
MUNEDA Takahiro5a340ed2007-11-09 19:07:02 +090067/* callback routine to check for the existence of a pci dock device */
Kristen Accardi4e8662b2006-06-28 03:08:06 -040068static acpi_status
69is_pci_dock_device(acpi_handle handle, u32 lvl, void *context, void **rv)
70{
71 int *count = (int *)context;
72
73 if (is_dock_device(handle)) {
74 (*count)++;
75 return AE_CTRL_TERMINATE;
76 } else {
77 return AE_OK;
78 }
79}
80
Jiang Liu3d54a312013-04-12 05:44:28 +000081static inline void get_bridge(struct acpiphp_bridge *bridge)
82{
83 kref_get(&bridge->ref);
84}
85
86static inline void put_bridge(struct acpiphp_bridge *bridge)
87{
88 kref_put(&bridge->ref, free_bridge);
89}
90
91static void free_bridge(struct kref *kref)
92{
93 struct acpiphp_bridge *bridge;
94 struct acpiphp_slot *slot, *next;
95 struct acpiphp_func *func, *tmp;
96
97 bridge = container_of(kref, struct acpiphp_bridge, ref);
98
99 list_for_each_entry_safe(slot, next, &bridge->slots, node) {
100 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) {
101 kfree(func);
102 }
103 kfree(slot);
104 }
105
106 /* Release reference acquired by acpiphp_bridge_handle_to_function() */
107 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func)
108 put_bridge(bridge->func->slot->bridge);
109 put_device(&bridge->pci_bus->dev);
110 pci_dev_put(bridge->pci_dev);
111 kfree(bridge);
112}
113
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400114/*
115 * the _DCK method can do funny things... and sometimes not
116 * hah-hah funny.
117 *
118 * TBD - figure out a way to only call fixups for
119 * systems that require them.
120 */
121static int post_dock_fixups(struct notifier_block *nb, unsigned long val,
122 void *v)
123{
124 struct acpiphp_func *func = container_of(nb, struct acpiphp_func, nb);
125 struct pci_bus *bus = func->slot->bridge->pci_bus;
126 u32 buses;
127
128 if (!bus->self)
129 return NOTIFY_OK;
130
131 /* fixup bad _DCK function that rewrites
132 * secondary bridge on slot
133 */
134 pci_read_config_dword(bus->self,
135 PCI_PRIMARY_BUS,
136 &buses);
137
Yinghai Lub918c622012-05-17 18:51:11 -0700138 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400139 buses = (buses & 0xff000000)
Alex Chiang2a9d3522008-12-11 11:17:55 -0700140 | ((unsigned int)(bus->primary) << 0)
Yinghai Lub918c622012-05-17 18:51:11 -0700141 | ((unsigned int)(bus->busn_res.start) << 8)
142 | ((unsigned int)(bus->busn_res.end) << 16);
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400143 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
144 }
145 return NOTIFY_OK;
146}
147
148
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400149static const struct acpi_dock_ops acpiphp_dock_ops = {
Shaohua Li1253f7a2008-08-28 10:06:16 +0800150 .handler = handle_hotplug_event_func,
151};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Jiang Liu5ba113f2012-08-22 23:16:45 +0800153/* Check whether the PCI device is managed by native PCIe hotplug driver */
154static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev)
155{
156 u32 reg32;
157 acpi_handle tmp;
158 struct acpi_pci_root *root;
159
160 /* Check whether the PCIe port supports native PCIe hotplug */
161 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32))
162 return false;
163 if (!(reg32 & PCI_EXP_SLTCAP_HPC))
164 return false;
165
166 /*
167 * Check whether native PCIe hotplug has been enabled for
168 * this PCIe hierarchy.
169 */
170 tmp = acpi_find_root_bridge_handle(pdev);
171 if (!tmp)
172 return false;
173 root = acpi_pci_find_root(tmp);
174 if (!root)
175 return false;
176 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
177 return false;
178
179 return true;
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* callback routine to register each ACPI PCI slot object */
183static acpi_status
184register_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
185{
186 struct acpiphp_bridge *bridge = (struct acpiphp_bridge *)context;
187 struct acpiphp_slot *slot;
188 struct acpiphp_func *newfunc;
189 acpi_handle tmp;
190 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400191 unsigned long long adr, sun;
Yijing Wangad41dd92013-04-12 05:44:27 +0000192 int device, function, retval, found = 0;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900193 struct pci_bus *pbus = bridge->pci_bus;
Alex Chiang9d911d72009-05-21 16:21:15 -0600194 struct pci_dev *pdev;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000195 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900197 if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return AE_OK;
199
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600200 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
201 if (ACPI_FAILURE(status)) {
202 warn("can't evaluate _ADR (%#x)\n", status);
203 return AE_OK;
204 }
205
206 device = (adr >> 16) & 0xffff;
207 function = adr & 0xffff;
208
Jiang Liu3d54a312013-04-12 05:44:28 +0000209 pdev = bridge->pci_dev;
Jiang Liu5ba113f2012-08-22 23:16:45 +0800210 if (pdev && device_is_managed_by_native_pciehp(pdev))
211 return AE_OK;
Rafael J. Wysocki619a5182011-12-13 00:02:28 +0100212
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100213 newfunc = kzalloc(sizeof(struct acpiphp_func), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (!newfunc)
215 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 newfunc->handle = handle;
218 newfunc->function = function;
Matthew Garrett56ee3252008-11-25 21:48:14 +0000219
220 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800221 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 if (ACPI_SUCCESS(acpi_get_handle(handle, "_STA", &tmp)))
224 newfunc->flags |= FUNC_HAS_STA;
225
226 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS0", &tmp)))
227 newfunc->flags |= FUNC_HAS_PS0;
228
229 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS3", &tmp)))
230 newfunc->flags |= FUNC_HAS_PS3;
231
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400232 if (ACPI_SUCCESS(acpi_get_handle(handle, "_DCK", &tmp)))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800233 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
Kristen Accardi95b38b32006-06-28 03:09:54 -0400236 if (ACPI_FAILURE(status)) {
237 /*
238 * use the count of the number of slots we've found
239 * for the number of the slot
240 */
241 sun = bridge->nr_slots+1;
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /* search for objects that share the same slot */
Yijing Wangad41dd92013-04-12 05:44:27 +0000245 list_for_each_entry(slot, &bridge->slots, node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (slot->device == device) {
247 if (slot->sun != sun)
248 warn("sibling found, but _SUN doesn't match!\n");
Yijing Wangad41dd92013-04-12 05:44:27 +0000249 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251 }
252
Yijing Wangad41dd92013-04-12 05:44:27 +0000253 if (!found) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100254 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!slot) {
256 kfree(newfunc);
257 return AE_NO_MEMORY;
258 }
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 slot->bridge = bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 slot->device = device;
262 slot->sun = sun;
263 INIT_LIST_HEAD(&slot->funcs);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100264 mutex_init(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Jiang Liu3d54a312013-04-12 05:44:28 +0000266 mutex_lock(&bridge_mutex);
Yijing Wangad41dd92013-04-12 05:44:27 +0000267 list_add_tail(&slot->node, &bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +0000268 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 bridge->nr_slots++;
270
Justin Chenb6adc192008-12-11 11:16:44 -0700271 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900272 slot->sun, pci_domain_nr(pbus), pbus->number, device);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800273 retval = acpiphp_register_hotplug_slot(slot);
274 if (retval) {
Alex Chiangf46753c2008-06-10 15:28:50 -0600275 if (retval == -EBUSY)
Justin Chenb6adc192008-12-11 11:16:44 -0700276 warn("Slot %llu already registered by another "
Alex Chiangf46753c2008-06-10 15:28:50 -0600277 "hotplug driver\n", slot->sun);
278 else
279 warn("acpiphp_register_hotplug_slot failed "
280 "(err code = 0x%x)\n", retval);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800281 goto err_exit;
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
285 newfunc->slot = slot;
Jiang Liu3d54a312013-04-12 05:44:28 +0000286 mutex_lock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 list_add_tail(&newfunc->sibling, &slot->funcs);
Jiang Liu3d54a312013-04-12 05:44:28 +0000288 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000290 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
291 &val, 60*1000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400294 if (is_dock_device(handle)) {
295 /* we don't want to call this device's _EJ0
296 * because we want the dock notify handler
297 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800298 */
299 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400300 if (register_hotplug_dock_device(handle,
Shaohua Li1253f7a2008-08-28 10:06:16 +0800301 &acpiphp_dock_ops, newfunc))
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400302 dbg("failed to register dock device\n");
303
304 /* we need to be notified when dock events happen
305 * outside of the hotplug operation, since we may
306 * need to do fixups before we can hotplug.
307 */
308 newfunc->nb.notifier_call = post_dock_fixups;
309 if (register_dock_notifier(&newfunc->nb))
310 dbg("failed to register a dock notifier");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800311 }
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800314 if (!(newfunc->flags & FUNC_HAS_DCK)) {
315 status = acpi_install_notify_handler(handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 ACPI_SYSTEM_NOTIFY,
317 handle_hotplug_event_func,
318 newfunc);
319
Kristen Accardi20416ea2006-02-23 17:56:03 -0800320 if (ACPI_FAILURE(status))
321 err("failed to register interrupt notify handler\n");
322 } else
323 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Kristen Accardi20416ea2006-02-23 17:56:03 -0800325 return status;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800326
327 err_exit:
328 bridge->nr_slots--;
Jiang Liu3d54a312013-04-12 05:44:28 +0000329 mutex_lock(&bridge_mutex);
Yijing Wangad41dd92013-04-12 05:44:27 +0000330 list_del(&slot->node);
Jiang Liu3d54a312013-04-12 05:44:28 +0000331 mutex_unlock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800332 kfree(slot);
333 kfree(newfunc);
334
335 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338
339/* see if it's worth looking at this bridge */
Alex Chiang6edd7672009-09-10 12:34:04 -0600340static int detect_ejectable_slots(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Alex Chiang7f538662009-09-10 12:34:09 -0600342 int found = acpi_pci_detect_ejectable(handle);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900343 if (!found) {
Alex Chiang6edd7672009-09-10 12:34:04 -0600344 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800345 is_pci_dock_device, NULL, (void *)&found, NULL);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900346 }
347 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
351static void init_bridge_misc(struct acpiphp_bridge *bridge)
352{
353 acpi_status status;
354
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800355 /* must be added to the list prior to calling register_slot */
Jiang Liu3d54a312013-04-12 05:44:28 +0000356 mutex_lock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800357 list_add(&bridge->list, &bridge_list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000358 mutex_unlock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /* register all slot objects under this bridge */
361 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800362 register_slot, NULL, bridge, NULL);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800363 if (ACPI_FAILURE(status)) {
Jiang Liu3d54a312013-04-12 05:44:28 +0000364 mutex_lock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800365 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000366 mutex_unlock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800367 return;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Jiang Liube6d2862013-01-31 00:10:10 +0800370 /* install notify handler for P2P bridges */
371 if (!pci_is_root_bus(bridge->pci_bus)) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900372 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
373 status = acpi_remove_notify_handler(bridge->func->handle,
374 ACPI_SYSTEM_NOTIFY,
375 handle_hotplug_event_func);
376 if (ACPI_FAILURE(status))
377 err("failed to remove notify handler\n");
378 }
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700379 status = acpi_install_notify_handler(bridge->handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 ACPI_SYSTEM_NOTIFY,
381 handle_hotplug_event_bridge,
382 bridge);
383
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700384 if (ACPI_FAILURE(status)) {
385 err("failed to register interrupt notify handler\n");
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900391/* find acpiphp_func from acpiphp_bridge */
392static struct acpiphp_func *acpiphp_bridge_handle_to_function(acpi_handle handle)
393{
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900394 struct acpiphp_bridge *bridge;
395 struct acpiphp_slot *slot;
Jiang Liu3d54a312013-04-12 05:44:28 +0000396 struct acpiphp_func *func = NULL;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900397
Jiang Liu3d54a312013-04-12 05:44:28 +0000398 mutex_lock(&bridge_mutex);
Alex Chiang58c08622009-10-26 21:25:27 -0600399 list_for_each_entry(bridge, &bridge_list, list) {
Yijing Wangad41dd92013-04-12 05:44:27 +0000400 list_for_each_entry(slot, &bridge->slots, node) {
Alex Chiang58c08622009-10-26 21:25:27 -0600401 list_for_each_entry(func, &slot->funcs, sibling) {
Jiang Liu3d54a312013-04-12 05:44:28 +0000402 if (func->handle == handle) {
403 get_bridge(func->slot->bridge);
404 mutex_unlock(&bridge_mutex);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900405 return func;
Jiang Liu3d54a312013-04-12 05:44:28 +0000406 }
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900407 }
408 }
409 }
Jiang Liu3d54a312013-04-12 05:44:28 +0000410 mutex_unlock(&bridge_mutex);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900411
412 return NULL;
413}
414
415
Rajesh Shah42f49a62005-04-28 00:25:53 -0700416static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
417{
Alex Chiang58c08622009-10-26 21:25:27 -0600418 struct acpiphp_bridge *bridge;
419
Jiang Liu3d54a312013-04-12 05:44:28 +0000420 mutex_lock(&bridge_mutex);
Alex Chiang58c08622009-10-26 21:25:27 -0600421 list_for_each_entry(bridge, &bridge_list, list)
Jiang Liu3d54a312013-04-12 05:44:28 +0000422 if (bridge->handle == handle) {
423 get_bridge(bridge);
424 mutex_unlock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700425 return bridge;
Jiang Liu3d54a312013-04-12 05:44:28 +0000426 }
427 mutex_unlock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700428
429 return NULL;
430}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Rajesh Shah364d5092005-04-28 00:25:54 -0700432static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Jiang Liu3d54a312013-04-12 05:44:28 +0000434 struct acpiphp_slot *slot;
435 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700436 acpi_status status;
Rajesh Shah364d5092005-04-28 00:25:54 -0700437 acpi_handle handle = bridge->handle;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700438
Jiang Liube6d2862013-01-31 00:10:10 +0800439 if (!pci_is_root_bus(bridge->pci_bus)) {
Yinghai Lu668192b2013-01-21 13:20:48 -0800440 status = acpi_remove_notify_handler(handle,
441 ACPI_SYSTEM_NOTIFY,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700442 handle_hotplug_event_bridge);
Yinghai Lu668192b2013-01-21 13:20:48 -0800443 if (ACPI_FAILURE(status))
444 err("failed to remove notify handler\n");
445 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700446
Jiang Liube6d2862013-01-31 00:10:10 +0800447 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900448 status = acpi_install_notify_handler(bridge->func->handle,
449 ACPI_SYSTEM_NOTIFY,
450 handle_hotplug_event_func,
451 bridge->func);
452 if (ACPI_FAILURE(status))
453 err("failed to install interrupt notify handler\n");
454 }
455
Jiang Liu3d54a312013-04-12 05:44:28 +0000456 list_for_each_entry(slot, &bridge->slots, node) {
457 list_for_each_entry(func, &slot->funcs, sibling) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400458 if (is_dock_device(func->handle)) {
459 unregister_hotplug_dock_device(func->handle);
460 unregister_dock_notifier(&func->nb);
461 }
Kristen Accardi20416ea2006-02-23 17:56:03 -0800462 if (!(func->flags & FUNC_HAS_DCK)) {
463 status = acpi_remove_notify_handler(func->handle,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700464 ACPI_SYSTEM_NOTIFY,
465 handle_hotplug_event_func);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800466 if (ACPI_FAILURE(status))
467 err("failed to remove notify handler\n");
468 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700469 }
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800470 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700471 }
472
Jiang Liu3d54a312013-04-12 05:44:28 +0000473 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700474 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000475 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static int power_on_slot(struct acpiphp_slot *slot)
479{
480 acpi_status status;
481 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int retval = 0;
483
484 /* if already enabled, just skip */
485 if (slot->flags & SLOT_POWEREDON)
486 goto err_exit;
487
Alex Chiang58c08622009-10-26 21:25:27 -0600488 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (func->flags & FUNC_HAS_PS0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800490 dbg("%s: executing _PS0\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL);
492 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800493 warn("%s: _PS0 failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 retval = -1;
495 goto err_exit;
496 } else
497 break;
498 }
499 }
500
501 /* TBD: evaluate _STA to check if the slot is enabled */
502
503 slot->flags |= SLOT_POWEREDON;
504
505 err_exit:
506 return retval;
507}
508
509
510static int power_off_slot(struct acpiphp_slot *slot)
511{
512 acpi_status status;
513 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 int retval = 0;
516
517 /* if already disabled, just skip */
518 if ((slot->flags & SLOT_POWEREDON) == 0)
519 goto err_exit;
520
Alex Chiang58c08622009-10-26 21:25:27 -0600521 list_for_each_entry(func, &slot->funcs, sibling) {
Rajesh Shah2f523b12005-04-28 00:25:55 -0700522 if (func->flags & FUNC_HAS_PS3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL);
524 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800525 warn("%s: _PS3 failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 retval = -1;
527 goto err_exit;
528 } else
529 break;
530 }
531 }
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* TBD: evaluate _STA to check if the slot is disabled */
534
535 slot->flags &= (~SLOT_POWEREDON);
536
537 err_exit:
538 return retval;
539}
540
541
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800542
543/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800544 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800545 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800546 */
547static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
548{
549 struct list_head *tmp;
550 unsigned char max, n;
551
552 /*
553 * pci_bus_max_busnr will return the highest
554 * reserved busnr for all these children.
555 * that is equivalent to the bus->subordinate
556 * value. We don't want to use the parent's
557 * bus->subordinate value because it could have
558 * padding in it.
559 */
Yinghai Lub918c622012-05-17 18:51:11 -0700560 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800561
562 list_for_each(tmp, &bus->children) {
563 n = pci_bus_max_busnr(pci_bus_b(tmp));
564 if (n > max)
565 max = n;
566 }
567 return max;
568}
569
570
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800571/**
572 * acpiphp_bus_add - add a new bus to acpi subsystem
573 * @func: acpiphp_func of the bridge
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800574 */
575static int acpiphp_bus_add(struct acpiphp_func *func)
576{
Rafael J. Wysocki636458d2012-12-21 00:36:47 +0100577 struct acpi_device *device;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800578 int ret_val;
579
Kristen Accardi20416ea2006-02-23 17:56:03 -0800580 if (!acpi_bus_get_device(func->handle, &device)) {
581 dbg("bus exists... trim\n");
582 /* this shouldn't be in here, so remove
583 * the bus then re-add it...
584 */
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100585 acpi_bus_trim(device);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800586 }
587
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +0100588 ret_val = acpi_bus_scan(func->handle);
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100589 if (!ret_val)
590 ret_val = acpi_bus_get_device(func->handle, &device);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800591
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100592 if (ret_val)
593 dbg("error adding bus, %x\n", -ret_val);
594
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800595 return ret_val;
596}
597
598
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900599/**
600 * acpiphp_bus_trim - trim a bus from acpi subsystem
601 * @handle: handle to acpi namespace
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900602 */
Adrian Bunk6d47a5e2006-08-14 23:07:38 -0700603static int acpiphp_bus_trim(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900604{
605 struct acpi_device *device;
606 int retval;
607
608 retval = acpi_bus_get_device(handle, &device);
609 if (retval) {
610 dbg("acpi_device not found\n");
611 return retval;
612 }
613
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100614 acpi_bus_trim(device);
615 return 0;
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900616}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800617
Shaohua Lid0607052010-02-25 10:59:34 +0800618static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
619{
620 struct acpiphp_func *func;
621 union acpi_object params[2];
622 struct acpi_object_list arg_list;
623
624 list_for_each_entry(func, &slot->funcs, sibling) {
625 arg_list.count = 2;
626 arg_list.pointer = params;
627 params[0].type = ACPI_TYPE_INTEGER;
628 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
629 params[1].type = ACPI_TYPE_INTEGER;
630 params[1].integer.value = 1;
631 /* _REG is optional, we don't care about if there is failure */
632 acpi_evaluate_object(func->handle, "_REG", &arg_list, NULL);
633 }
634}
635
Yinghai Lu1f96a962013-01-21 13:20:42 -0800636static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
637{
638 struct acpiphp_func *func;
639
640 if (!dev->subordinate)
641 return;
642
643 /* quirk, or pcie could set it already */
644 if (dev->is_hotplug_bridge)
645 return;
646
647 if (PCI_SLOT(dev->devfn) != slot->device)
648 return;
649
650 list_for_each_entry(func, &slot->funcs, sibling) {
651 if (PCI_FUNC(dev->devfn) == func->function) {
652 /* check if this bridge has ejectable slots */
653 if ((detect_ejectable_slots(func->handle) > 0))
654 dev->is_hotplug_bridge = 1;
655 break;
656 }
657 }
658}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/**
661 * enable_device - enable, configure a slot
662 * @slot: slot to be enabled
663 *
664 * This function should be called per *physical slot*,
665 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Sam Ravnborg0ab2b572008-02-17 10:45:28 +0100667static int __ref enable_device(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 struct pci_dev *dev;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700670 struct pci_bus *bus = slot->bridge->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700672 int num, max, pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (slot->flags & SLOT_ENABLED)
675 goto err_exit;
676
Jiang Liu2ca344e2013-01-31 00:10:09 +0800677 list_for_each_entry(func, &slot->funcs, sibling)
678 acpiphp_bus_add(func);
679
Rajesh Shah42f49a62005-04-28 00:25:53 -0700680 num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
681 if (num == 0) {
Amos Kongf382a082011-11-25 15:03:07 +0800682 /* Maybe only part of funcs are added. */
683 dbg("No new device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 goto err_exit;
685 }
686
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800687 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700688 for (pass = 0; pass < 2; pass++) {
689 list_for_each_entry(dev, &bus->devices, bus_list) {
690 if (PCI_SLOT(dev->devfn) != slot->device)
691 continue;
692 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800693 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700694 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800695 if (pass && dev->subordinate) {
696 check_hotplug_bridge(slot, dev);
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800697 pci_bus_size_bridges(dev->subordinate);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800698 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800699 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
Rajesh Shah42f49a62005-04-28 00:25:53 -0700703 pci_bus_assign_resources(bus);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700704 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600705 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800706 acpiphp_set_acpi_region(slot);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700707 pci_enable_bridges(bus);
Ian Campbell69643e42011-05-11 17:00:32 +0100708
709 list_for_each_entry(dev, &bus->devices, bus_list) {
710 /* Assume that newly added devices are powered on already. */
711 if (!dev->is_added)
712 dev->current_state = PCI_D0;
713 }
714
Rajesh Shah42f49a62005-04-28 00:25:53 -0700715 pci_bus_add_devices(bus);
716
Amos Kongf382a082011-11-25 15:03:07 +0800717 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600718 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600719 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
720 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800721 if (!dev) {
722 /* Do not set SLOT_ENABLED flag if some funcs
723 are not added. */
724 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900725 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 err_exit:
Jiang Liu3d54a312013-04-12 05:44:28 +0000731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Amos Kongce29ca32012-05-23 10:20:35 -0600734/* return first device in slot, acquiring a reference on it */
735static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
736{
737 struct pci_bus *bus = slot->bridge->pci_bus;
738 struct pci_dev *dev;
739 struct pci_dev *ret = NULL;
740
741 down_read(&pci_bus_sem);
742 list_for_each_entry(dev, &bus->devices, bus_list)
743 if (PCI_SLOT(dev->devfn) == slot->device) {
744 ret = pci_dev_get(dev);
745 break;
746 }
747 up_read(&pci_bus_sem);
748
749 return ret;
750}
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752/**
753 * disable_device - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800754 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
756static int disable_device(struct acpiphp_slot *slot)
757{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600759 struct pci_dev *pdev;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900760
Amos Kongce29ca32012-05-23 10:20:35 -0600761 /*
762 * enable_device() enumerates all functions in this device via
763 * pci_scan_slot(), whether they have associated ACPI hotplug
764 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
765 * here.
766 */
767 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600768 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600769 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700770 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700771
Alex Chiang9d911d72009-05-21 16:21:15 -0600772 list_for_each_entry(func, &slot->funcs, sibling) {
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900773 acpiphp_bus_trim(func->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775
776 slot->flags &= (~SLOT_ENABLED);
777
Alex Chiang9d911d72009-05-21 16:21:15 -0600778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
781
782/**
783 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800784 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800786 * If a slot has _STA for each function and if any one of them
787 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800789 * If a slot doesn't have _STA and if any one of its functions'
790 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800792 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
794static unsigned int get_slot_status(struct acpiphp_slot *slot)
795{
796 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400797 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 u32 dvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct acpiphp_func *func;
800
Alex Chiang58c08622009-10-26 21:25:27 -0600801 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (func->flags & FUNC_HAS_STA) {
803 status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta);
804 if (ACPI_SUCCESS(status) && sta)
805 break;
806 } else {
807 pci_bus_read_config_dword(slot->bridge->pci_bus,
808 PCI_DEVFN(slot->device,
809 func->function),
810 PCI_VENDOR_ID, &dvid);
811 if (dvid != 0xffffffff) {
812 sta = ACPI_STA_ALL;
813 break;
814 }
815 }
816 }
817
818 return (unsigned int)sta;
819}
820
821/**
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700822 * acpiphp_eject_slot - physically eject the slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800823 * @slot: ACPI PHP slot
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700824 */
Gary Hadebfceafc2007-07-05 11:10:46 -0700825int acpiphp_eject_slot(struct acpiphp_slot *slot)
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700826{
827 acpi_status status;
828 struct acpiphp_func *func;
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700829 struct acpi_object_list arg_list;
830 union acpi_object arg;
831
Alex Chiang58c08622009-10-26 21:25:27 -0600832 list_for_each_entry(func, &slot->funcs, sibling) {
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700833 /* We don't want to call _EJ0 on non-existing functions. */
834 if ((func->flags & FUNC_HAS_EJ0)) {
835 /* _EJ0 method take one argument */
836 arg_list.count = 1;
837 arg_list.pointer = &arg;
838 arg.type = ACPI_TYPE_INTEGER;
839 arg.integer.value = 1;
840
841 status = acpi_evaluate_object(func->handle, "_EJ0", &arg_list, NULL);
842 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800843 warn("%s: _EJ0 failed\n", __func__);
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700844 return -1;
845 } else
846 break;
847 }
848 }
849 return 0;
850}
851
852/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800854 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 *
856 * Iterate over all slots under this bridge and make sure that if a
857 * card is present they are enabled, and if not they are disabled.
858 */
859static int acpiphp_check_bridge(struct acpiphp_bridge *bridge)
860{
861 struct acpiphp_slot *slot;
862 int retval = 0;
863 int enabled, disabled;
864
865 enabled = disabled = 0;
866
Yijing Wangad41dd92013-04-12 05:44:27 +0000867 list_for_each_entry(slot, &bridge->slots, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 unsigned int status = get_slot_status(slot);
869 if (slot->flags & SLOT_ENABLED) {
870 if (status == ACPI_STA_ALL)
871 continue;
872 retval = acpiphp_disable_slot(slot);
873 if (retval) {
874 err("Error occurred in disabling\n");
875 goto err_exit;
Rajesh Shah8d50e3322005-04-28 00:25:57 -0700876 } else {
877 acpiphp_eject_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879 disabled++;
880 } else {
881 if (status != ACPI_STA_ALL)
882 continue;
883 retval = acpiphp_enable_slot(slot);
884 if (retval) {
885 err("Error occurred in enabling\n");
886 goto err_exit;
887 }
888 enabled++;
889 }
890 }
891
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800892 dbg("%s: %d enabled, %d disabled\n", __func__, enabled, disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 err_exit:
895 return retval;
896}
897
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600898static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700899{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700900 struct pci_dev *dev;
901
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600902 list_for_each_entry(dev, &bus->devices, bus_list)
903 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700904}
905
906/*
907 * Remove devices for which we could not assign resources, call
908 * arch specific code to fix-up the bus
909 */
910static void acpiphp_sanitize_bus(struct pci_bus *bus)
911{
Yijing Wangd65eba62013-04-12 05:44:17 +0000912 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700913 int i;
914 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
915
Yijing Wangd65eba62013-04-12 05:44:17 +0000916 list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700917 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
918 struct resource *res = &dev->resource[i];
919 if ((res->flags & type_mask) && !res->start &&
920 res->end) {
921 /* Could not assign a required resources
922 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800923 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700924 break;
925 }
926 }
927 }
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
931 * ACPI event handlers
932 */
933
Gary Hade0bbd6422007-07-05 11:10:48 -0700934static acpi_status
Gary Hade0bbd6422007-07-05 11:10:48 -0700935check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
936{
937 struct acpiphp_bridge *bridge;
938 char objname[64];
939 struct acpi_buffer buffer = { .length = sizeof(objname),
940 .pointer = objname };
941
942 bridge = acpiphp_handle_to_bridge(handle);
943 if (bridge) {
944 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
945 dbg("%s: re-enumerating slots under %s\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800946 __func__, objname);
Gary Hade0bbd6422007-07-05 11:10:48 -0700947 acpiphp_check_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +0000948 put_bridge(bridge);
Gary Hade0bbd6422007-07-05 11:10:48 -0700949 }
950 return AE_OK ;
951}
952
Yinghai Lu3f327e32013-05-07 11:06:03 -0600953void acpiphp_check_host_bridge(acpi_handle handle)
954{
955 struct acpiphp_bridge *bridge;
956
957 bridge = acpiphp_handle_to_bridge(handle);
958 if (bridge) {
959 acpiphp_check_bridge(bridge);
960 put_bridge(bridge);
961 }
962
963 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
964 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
965}
966
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400967static void _handle_hotplug_event_bridge(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct acpiphp_bridge *bridge;
970 char objname[64];
971 struct acpi_buffer buffer = { .length = sizeof(objname),
972 .pointer = objname };
Yinghai Lu92d8aff2013-01-21 13:20:47 -0800973 struct acpi_hp_work *hp_work;
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400974 acpi_handle handle;
975 u32 type;
976
Yinghai Lu92d8aff2013-01-21 13:20:47 -0800977 hp_work = container_of(work, struct acpi_hp_work, work);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400978 handle = hp_work->handle;
979 type = hp_work->type;
Jiang Liube6d2862013-01-31 00:10:10 +0800980 bridge = (struct acpiphp_bridge *)hp_work->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100982 acpi_scan_lock_acquire();
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
985
986 switch (type) {
987 case ACPI_NOTIFY_BUS_CHECK:
988 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800989 dbg("%s: Bus check notify on %s\n", __func__, objname);
Jiang Liube6d2862013-01-31 00:10:10 +0800990 dbg("%s: re-enumerating slots under %s\n", __func__, objname);
991 acpiphp_check_bridge(bridge);
992 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
993 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
995
996 case ACPI_NOTIFY_DEVICE_CHECK:
997 /* device check */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800998 dbg("%s: Device check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 acpiphp_check_bridge(bridge);
1000 break;
1001
1002 case ACPI_NOTIFY_DEVICE_WAKE:
1003 /* wake event */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001004 dbg("%s: Device wake notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 break;
1006
1007 case ACPI_NOTIFY_EJECT_REQUEST:
1008 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001009 dbg("%s: Device eject notify on %s\n", __func__, objname);
Jiang Liube6d2862013-01-31 00:10:10 +08001010 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +09001011 struct acpiphp_slot *slot;
1012 slot = bridge->func->slot;
1013 if (!acpiphp_disable_slot(slot))
1014 acpiphp_eject_slot(slot);
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 break;
1017
1018 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1019 printk(KERN_ERR "Device %s cannot be configured due"
1020 " to a frequency mismatch\n", objname);
1021 break;
1022
1023 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1024 printk(KERN_ERR "Device %s cannot be configured due"
1025 " to a bus mode mismatch\n", objname);
1026 break;
1027
1028 case ACPI_NOTIFY_POWER_FAULT:
1029 printk(KERN_ERR "Device %s has suffered a power fault\n",
1030 objname);
1031 break;
1032
1033 default:
1034 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1035 break;
1036 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001037
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001038 acpi_scan_lock_release();
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001039 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
Jiang Liu3d54a312013-04-12 05:44:28 +00001040 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/**
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001044 * handle_hotplug_event_bridge - handle ACPI event on bridges
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 * @handle: Notify()'ed acpi_handle
1046 * @type: Notify code
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001047 * @context: pointer to acpiphp_bridge structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 *
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001049 * Handles ACPI event notification on {host,p2p} bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 */
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001051static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
1052 void *context)
1053{
Jiang Liu3d54a312013-04-12 05:44:28 +00001054 struct acpiphp_bridge *bridge = context;
1055
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001056 /*
1057 * Currently the code adds all hotplug events to the kacpid_wq
1058 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1059 * The proper way to fix this is to reorganize the code so that
1060 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1061 * For now just re-add this work to the kacpi_hotplug_wq so we
1062 * don't deadlock on hotplug actions.
1063 */
Jiang Liu3d54a312013-04-12 05:44:28 +00001064 get_bridge(bridge);
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001065 alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_bridge);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001066}
1067
1068static void _handle_hotplug_event_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 struct acpiphp_func *func;
1071 char objname[64];
1072 struct acpi_buffer buffer = { .length = sizeof(objname),
1073 .pointer = objname };
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001074 struct acpi_hp_work *hp_work;
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001075 acpi_handle handle;
1076 u32 type;
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001077
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001078 hp_work = container_of(work, struct acpi_hp_work, work);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001079 handle = hp_work->handle;
1080 type = hp_work->type;
Jiang Liube6d2862013-01-31 00:10:10 +08001081 func = (struct acpiphp_func *)hp_work->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001083 acpi_scan_lock_acquire();
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 switch (type) {
1088 case ACPI_NOTIFY_BUS_CHECK:
1089 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001090 dbg("%s: Bus check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 acpiphp_enable_slot(func->slot);
1092 break;
1093
1094 case ACPI_NOTIFY_DEVICE_CHECK:
1095 /* device check : re-enumerate from parent bus */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001096 dbg("%s: Device check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 acpiphp_check_bridge(func->slot->bridge);
1098 break;
1099
1100 case ACPI_NOTIFY_DEVICE_WAKE:
1101 /* wake event */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001102 dbg("%s: Device wake notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
1104
1105 case ACPI_NOTIFY_EJECT_REQUEST:
1106 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001107 dbg("%s: Device eject notify on %s\n", __func__, objname);
Rajesh Shah8d50e3322005-04-28 00:25:57 -07001108 if (!(acpiphp_disable_slot(func->slot)))
1109 acpiphp_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 break;
1111
1112 default:
1113 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1114 break;
1115 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001116
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001117 acpi_scan_lock_release();
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001118 kfree(hp_work); /* allocated in handle_hotplug_event_func */
Jiang Liu3d54a312013-04-12 05:44:28 +00001119 put_bridge(func->slot->bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001122/**
1123 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1124 * @handle: Notify()'ed acpi_handle
1125 * @type: Notify code
1126 * @context: pointer to acpiphp_func structure
1127 *
1128 * Handles ACPI event notification on slots.
1129 */
1130static void handle_hotplug_event_func(acpi_handle handle, u32 type,
1131 void *context)
1132{
Jiang Liu3d54a312013-04-12 05:44:28 +00001133 struct acpiphp_func *func = context;
1134
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001135 /*
1136 * Currently the code adds all hotplug events to the kacpid_wq
1137 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1138 * The proper way to fix this is to reorganize the code so that
1139 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1140 * For now just re-add this work to the kacpi_hotplug_wq so we
1141 * don't deadlock on hotplug actions.
1142 */
Jiang Liu3d54a312013-04-12 05:44:28 +00001143 get_bridge(func->slot->bridge);
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001144 alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_func);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001147/*
1148 * Create hotplug slots for the PCI bus.
1149 * It should always return 0 to avoid skipping following notifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 */
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001151void acpiphp_enumerate_slots(struct pci_bus *bus, acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001153 acpi_handle dummy_handle;
1154 struct acpiphp_bridge *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001156 if (acpiphp_disabled)
1157 return;
1158
1159 if (detect_ejectable_slots(handle) <= 0)
1160 return;
1161
1162 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
1163 if (bridge == NULL) {
1164 err("out of memory\n");
1165 return;
1166 }
1167
Yijing Wangad41dd92013-04-12 05:44:27 +00001168 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +00001169 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001170 bridge->handle = handle;
1171 bridge->pci_dev = pci_dev_get(bus->self);
1172 bridge->pci_bus = bus;
1173
1174 /*
1175 * Grab a ref to the subordinate PCI bus in case the bus is
1176 * removed via PCI core logical hotplug. The ref pins the bus
1177 * (which we access during module unload).
1178 */
1179 get_device(&bus->dev);
1180
1181 if (!pci_is_root_bus(bridge->pci_bus) &&
1182 ACPI_SUCCESS(acpi_get_handle(bridge->handle,
1183 "_EJ0", &dummy_handle))) {
1184 dbg("found ejectable p2p bridge\n");
1185 bridge->flags |= BRIDGE_HAS_EJ0;
1186 bridge->func = acpiphp_bridge_handle_to_function(handle);
1187 }
1188
1189 init_bridge_misc(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001192/* Destroy hotplug slots associated with the PCI bus */
1193void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001195 struct acpiphp_bridge *bridge, *tmp;
1196
1197 if (acpiphp_disabled)
1198 return;
1199
1200 list_for_each_entry_safe(bridge, tmp, &bridge_list, list)
1201 if (bridge->pci_bus == bus) {
1202 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001203 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001204 break;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/**
1209 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001210 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 */
1212int acpiphp_enable_slot(struct acpiphp_slot *slot)
1213{
1214 int retval;
1215
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001216 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /* wake up all functions */
1219 retval = power_on_slot(slot);
1220 if (retval)
1221 goto err_exit;
1222
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001223 if (get_slot_status(slot) == ACPI_STA_ALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /* configure all functions */
1225 retval = enable_device(slot);
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001226 if (retval)
1227 power_off_slot(slot);
1228 } else {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001229 dbg("%s: Slot status is not ACPI_STA_ALL\n", __func__);
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001230 power_off_slot(slot);
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001234 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return retval;
1236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238/**
1239 * acpiphp_disable_slot - power off slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001240 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
1242int acpiphp_disable_slot(struct acpiphp_slot *slot)
1243{
1244 int retval = 0;
1245
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001246 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /* unconfigure all functions */
1249 retval = disable_device(slot);
1250 if (retval)
1251 goto err_exit;
1252
1253 /* power off all functions */
1254 retval = power_off_slot(slot);
1255 if (retval)
1256 goto err_exit;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001259 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return retval;
1261}
1262
1263
1264/*
1265 * slot enabled: 1
1266 * slot disabled: 0
1267 */
1268u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1269{
Rajesh Shah8d50e3322005-04-28 00:25:57 -07001270 return (slot->flags & SLOT_POWEREDON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
1273
1274/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001275 * latch open: 1
1276 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 */
1278u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1279{
1280 unsigned int sta;
1281
1282 sta = get_slot_status(slot);
1283
Jiang Liuce15d872013-04-12 05:44:19 +00001284 return (sta & ACPI_STA_DEVICE_UI) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
1287
1288/*
1289 * adapter presence : 1
1290 * absence : 0
1291 */
1292u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1293{
1294 unsigned int sta;
1295
1296 sta = get_slot_status(slot);
1297
1298 return (sta == 0) ? 0 : 1;
1299}