blob: 59df8575a48ce834fb48ea002689ed97ed9ca51a [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);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +020064static void hotplug_event_func(acpi_handle handle, u32 type, void *context);
Len Brown2b85e132006-06-27 01:50:14 -040065static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
Jiang Liu3d54a312013-04-12 05:44:28 +000066static void free_bridge(struct kref *kref);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070067
MUNEDA Takahiro5a340ed2007-11-09 19:07:02 +090068/* callback routine to check for the existence of a pci dock device */
Kristen Accardi4e8662b2006-06-28 03:08:06 -040069static acpi_status
70is_pci_dock_device(acpi_handle handle, u32 lvl, void *context, void **rv)
71{
72 int *count = (int *)context;
73
74 if (is_dock_device(handle)) {
75 (*count)++;
76 return AE_CTRL_TERMINATE;
77 } else {
78 return AE_OK;
79 }
80}
81
Jiang Liu3d54a312013-04-12 05:44:28 +000082static inline void get_bridge(struct acpiphp_bridge *bridge)
83{
84 kref_get(&bridge->ref);
85}
86
87static inline void put_bridge(struct acpiphp_bridge *bridge)
88{
89 kref_put(&bridge->ref, free_bridge);
90}
91
92static void free_bridge(struct kref *kref)
93{
94 struct acpiphp_bridge *bridge;
95 struct acpiphp_slot *slot, *next;
96 struct acpiphp_func *func, *tmp;
97
98 bridge = container_of(kref, struct acpiphp_bridge, ref);
99
100 list_for_each_entry_safe(slot, next, &bridge->slots, node) {
101 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) {
102 kfree(func);
103 }
104 kfree(slot);
105 }
106
107 /* Release reference acquired by acpiphp_bridge_handle_to_function() */
108 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func)
109 put_bridge(bridge->func->slot->bridge);
110 put_device(&bridge->pci_bus->dev);
111 pci_dev_put(bridge->pci_dev);
112 kfree(bridge);
113}
114
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400115/*
116 * the _DCK method can do funny things... and sometimes not
117 * hah-hah funny.
118 *
119 * TBD - figure out a way to only call fixups for
120 * systems that require them.
121 */
122static int post_dock_fixups(struct notifier_block *nb, unsigned long val,
123 void *v)
124{
125 struct acpiphp_func *func = container_of(nb, struct acpiphp_func, nb);
126 struct pci_bus *bus = func->slot->bridge->pci_bus;
127 u32 buses;
128
129 if (!bus->self)
130 return NOTIFY_OK;
131
132 /* fixup bad _DCK function that rewrites
133 * secondary bridge on slot
134 */
135 pci_read_config_dword(bus->self,
136 PCI_PRIMARY_BUS,
137 &buses);
138
Yinghai Lub918c622012-05-17 18:51:11 -0700139 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400140 buses = (buses & 0xff000000)
Alex Chiang2a9d3522008-12-11 11:17:55 -0700141 | ((unsigned int)(bus->primary) << 0)
Yinghai Lub918c622012-05-17 18:51:11 -0700142 | ((unsigned int)(bus->busn_res.start) << 8)
143 | ((unsigned int)(bus->busn_res.end) << 16);
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400144 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
145 }
146 return NOTIFY_OK;
147}
148
149
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400150static const struct acpi_dock_ops acpiphp_dock_ops = {
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200151 .handler = hotplug_event_func,
Shaohua Li1253f7a2008-08-28 10:06:16 +0800152};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Jiang Liu5ba113f2012-08-22 23:16:45 +0800154/* Check whether the PCI device is managed by native PCIe hotplug driver */
155static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev)
156{
157 u32 reg32;
158 acpi_handle tmp;
159 struct acpi_pci_root *root;
160
161 /* Check whether the PCIe port supports native PCIe hotplug */
162 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32))
163 return false;
164 if (!(reg32 & PCI_EXP_SLTCAP_HPC))
165 return false;
166
167 /*
168 * Check whether native PCIe hotplug has been enabled for
169 * this PCIe hierarchy.
170 */
171 tmp = acpi_find_root_bridge_handle(pdev);
172 if (!tmp)
173 return false;
174 root = acpi_pci_find_root(tmp);
175 if (!root)
176 return false;
177 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
178 return false;
179
180 return true;
181}
182
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200183static void acpiphp_dock_init(void *data)
184{
185 struct acpiphp_func *func = data;
186
187 get_bridge(func->slot->bridge);
188}
189
190static void acpiphp_dock_release(void *data)
191{
192 struct acpiphp_func *func = data;
193
194 put_bridge(func->slot->bridge);
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/* callback routine to register each ACPI PCI slot object */
198static acpi_status
199register_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
200{
201 struct acpiphp_bridge *bridge = (struct acpiphp_bridge *)context;
202 struct acpiphp_slot *slot;
203 struct acpiphp_func *newfunc;
204 acpi_handle tmp;
205 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400206 unsigned long long adr, sun;
Yijing Wangad41dd92013-04-12 05:44:27 +0000207 int device, function, retval, found = 0;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900208 struct pci_bus *pbus = bridge->pci_bus;
Alex Chiang9d911d72009-05-21 16:21:15 -0600209 struct pci_dev *pdev;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000210 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900212 if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return AE_OK;
214
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600215 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
216 if (ACPI_FAILURE(status)) {
217 warn("can't evaluate _ADR (%#x)\n", status);
218 return AE_OK;
219 }
220
221 device = (adr >> 16) & 0xffff;
222 function = adr & 0xffff;
223
Jiang Liu3d54a312013-04-12 05:44:28 +0000224 pdev = bridge->pci_dev;
Jiang Liu5ba113f2012-08-22 23:16:45 +0800225 if (pdev && device_is_managed_by_native_pciehp(pdev))
226 return AE_OK;
Rafael J. Wysocki619a5182011-12-13 00:02:28 +0100227
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100228 newfunc = kzalloc(sizeof(struct acpiphp_func), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!newfunc)
230 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 newfunc->handle = handle;
233 newfunc->function = function;
Matthew Garrett56ee3252008-11-25 21:48:14 +0000234
235 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800236 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 if (ACPI_SUCCESS(acpi_get_handle(handle, "_STA", &tmp)))
239 newfunc->flags |= FUNC_HAS_STA;
240
241 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS0", &tmp)))
242 newfunc->flags |= FUNC_HAS_PS0;
243
244 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS3", &tmp)))
245 newfunc->flags |= FUNC_HAS_PS3;
246
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400247 if (ACPI_SUCCESS(acpi_get_handle(handle, "_DCK", &tmp)))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800248 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
Kristen Accardi95b38b32006-06-28 03:09:54 -0400251 if (ACPI_FAILURE(status)) {
252 /*
253 * use the count of the number of slots we've found
254 * for the number of the slot
255 */
256 sun = bridge->nr_slots+1;
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* search for objects that share the same slot */
Yijing Wangad41dd92013-04-12 05:44:27 +0000260 list_for_each_entry(slot, &bridge->slots, node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (slot->device == device) {
262 if (slot->sun != sun)
263 warn("sibling found, but _SUN doesn't match!\n");
Yijing Wangad41dd92013-04-12 05:44:27 +0000264 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 break;
266 }
267
Yijing Wangad41dd92013-04-12 05:44:27 +0000268 if (!found) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100269 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (!slot) {
271 kfree(newfunc);
272 return AE_NO_MEMORY;
273 }
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 slot->bridge = bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 slot->device = device;
277 slot->sun = sun;
278 INIT_LIST_HEAD(&slot->funcs);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100279 mutex_init(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jiang Liu3d54a312013-04-12 05:44:28 +0000281 mutex_lock(&bridge_mutex);
Yijing Wangad41dd92013-04-12 05:44:27 +0000282 list_add_tail(&slot->node, &bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +0000283 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 bridge->nr_slots++;
285
Justin Chenb6adc192008-12-11 11:16:44 -0700286 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900287 slot->sun, pci_domain_nr(pbus), pbus->number, device);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800288 retval = acpiphp_register_hotplug_slot(slot);
289 if (retval) {
Alex Chiangf46753c2008-06-10 15:28:50 -0600290 if (retval == -EBUSY)
Justin Chenb6adc192008-12-11 11:16:44 -0700291 warn("Slot %llu already registered by another "
Alex Chiangf46753c2008-06-10 15:28:50 -0600292 "hotplug driver\n", slot->sun);
293 else
294 warn("acpiphp_register_hotplug_slot failed "
295 "(err code = 0x%x)\n", retval);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800296 goto err_exit;
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
300 newfunc->slot = slot;
Jiang Liu3d54a312013-04-12 05:44:28 +0000301 mutex_lock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 list_add_tail(&newfunc->sibling, &slot->funcs);
Jiang Liu3d54a312013-04-12 05:44:28 +0000303 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000305 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
306 &val, 60*1000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400309 if (is_dock_device(handle)) {
310 /* we don't want to call this device's _EJ0
311 * because we want the dock notify handler
312 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800313 */
314 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400315 if (register_hotplug_dock_device(handle,
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200316 &acpiphp_dock_ops, newfunc,
317 acpiphp_dock_init, acpiphp_dock_release))
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400318 dbg("failed to register dock device\n");
319
320 /* we need to be notified when dock events happen
321 * outside of the hotplug operation, since we may
322 * need to do fixups before we can hotplug.
323 */
324 newfunc->nb.notifier_call = post_dock_fixups;
325 if (register_dock_notifier(&newfunc->nb))
326 dbg("failed to register a dock notifier");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800327 }
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800330 if (!(newfunc->flags & FUNC_HAS_DCK)) {
331 status = acpi_install_notify_handler(handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ACPI_SYSTEM_NOTIFY,
333 handle_hotplug_event_func,
334 newfunc);
335
Kristen Accardi20416ea2006-02-23 17:56:03 -0800336 if (ACPI_FAILURE(status))
337 err("failed to register interrupt notify handler\n");
338 } else
339 status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Kristen Accardi20416ea2006-02-23 17:56:03 -0800341 return status;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800342
343 err_exit:
344 bridge->nr_slots--;
Jiang Liu3d54a312013-04-12 05:44:28 +0000345 mutex_lock(&bridge_mutex);
Yijing Wangad41dd92013-04-12 05:44:27 +0000346 list_del(&slot->node);
Jiang Liu3d54a312013-04-12 05:44:28 +0000347 mutex_unlock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800348 kfree(slot);
349 kfree(newfunc);
350
351 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354
355/* see if it's worth looking at this bridge */
Alex Chiang6edd7672009-09-10 12:34:04 -0600356static int detect_ejectable_slots(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Alex Chiang7f538662009-09-10 12:34:09 -0600358 int found = acpi_pci_detect_ejectable(handle);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900359 if (!found) {
Alex Chiang6edd7672009-09-10 12:34:04 -0600360 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800361 is_pci_dock_device, NULL, (void *)&found, NULL);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900362 }
363 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
367static void init_bridge_misc(struct acpiphp_bridge *bridge)
368{
369 acpi_status status;
370
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800371 /* must be added to the list prior to calling register_slot */
Jiang Liu3d54a312013-04-12 05:44:28 +0000372 mutex_lock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800373 list_add(&bridge->list, &bridge_list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000374 mutex_unlock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* register all slot objects under this bridge */
377 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, (u32)1,
Lin Ming22635762009-11-13 10:06:08 +0800378 register_slot, NULL, bridge, NULL);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800379 if (ACPI_FAILURE(status)) {
Jiang Liu3d54a312013-04-12 05:44:28 +0000380 mutex_lock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800381 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000382 mutex_unlock(&bridge_mutex);
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800383 return;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jiang Liube6d2862013-01-31 00:10:10 +0800386 /* install notify handler for P2P bridges */
387 if (!pci_is_root_bus(bridge->pci_bus)) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900388 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
389 status = acpi_remove_notify_handler(bridge->func->handle,
390 ACPI_SYSTEM_NOTIFY,
391 handle_hotplug_event_func);
392 if (ACPI_FAILURE(status))
393 err("failed to remove notify handler\n");
394 }
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700395 status = acpi_install_notify_handler(bridge->handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 ACPI_SYSTEM_NOTIFY,
397 handle_hotplug_event_bridge,
398 bridge);
399
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700400 if (ACPI_FAILURE(status)) {
401 err("failed to register interrupt notify handler\n");
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900407/* find acpiphp_func from acpiphp_bridge */
408static struct acpiphp_func *acpiphp_bridge_handle_to_function(acpi_handle handle)
409{
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900410 struct acpiphp_bridge *bridge;
411 struct acpiphp_slot *slot;
Jiang Liu3d54a312013-04-12 05:44:28 +0000412 struct acpiphp_func *func = NULL;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900413
Jiang Liu3d54a312013-04-12 05:44:28 +0000414 mutex_lock(&bridge_mutex);
Alex Chiang58c08622009-10-26 21:25:27 -0600415 list_for_each_entry(bridge, &bridge_list, list) {
Yijing Wangad41dd92013-04-12 05:44:27 +0000416 list_for_each_entry(slot, &bridge->slots, node) {
Alex Chiang58c08622009-10-26 21:25:27 -0600417 list_for_each_entry(func, &slot->funcs, sibling) {
Jiang Liu3d54a312013-04-12 05:44:28 +0000418 if (func->handle == handle) {
419 get_bridge(func->slot->bridge);
420 mutex_unlock(&bridge_mutex);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900421 return func;
Jiang Liu3d54a312013-04-12 05:44:28 +0000422 }
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900423 }
424 }
425 }
Jiang Liu3d54a312013-04-12 05:44:28 +0000426 mutex_unlock(&bridge_mutex);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900427
428 return NULL;
429}
430
431
Rajesh Shah42f49a62005-04-28 00:25:53 -0700432static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
433{
Alex Chiang58c08622009-10-26 21:25:27 -0600434 struct acpiphp_bridge *bridge;
435
Jiang Liu3d54a312013-04-12 05:44:28 +0000436 mutex_lock(&bridge_mutex);
Alex Chiang58c08622009-10-26 21:25:27 -0600437 list_for_each_entry(bridge, &bridge_list, list)
Jiang Liu3d54a312013-04-12 05:44:28 +0000438 if (bridge->handle == handle) {
439 get_bridge(bridge);
440 mutex_unlock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700441 return bridge;
Jiang Liu3d54a312013-04-12 05:44:28 +0000442 }
443 mutex_unlock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700444
445 return NULL;
446}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Rajesh Shah364d5092005-04-28 00:25:54 -0700448static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Jiang Liu3d54a312013-04-12 05:44:28 +0000450 struct acpiphp_slot *slot;
451 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700452 acpi_status status;
Rajesh Shah364d5092005-04-28 00:25:54 -0700453 acpi_handle handle = bridge->handle;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700454
Jiang Liube6d2862013-01-31 00:10:10 +0800455 if (!pci_is_root_bus(bridge->pci_bus)) {
Yinghai Lu668192b2013-01-21 13:20:48 -0800456 status = acpi_remove_notify_handler(handle,
457 ACPI_SYSTEM_NOTIFY,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700458 handle_hotplug_event_bridge);
Yinghai Lu668192b2013-01-21 13:20:48 -0800459 if (ACPI_FAILURE(status))
460 err("failed to remove notify handler\n");
461 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700462
Jiang Liube6d2862013-01-31 00:10:10 +0800463 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900464 status = acpi_install_notify_handler(bridge->func->handle,
465 ACPI_SYSTEM_NOTIFY,
466 handle_hotplug_event_func,
467 bridge->func);
468 if (ACPI_FAILURE(status))
469 err("failed to install interrupt notify handler\n");
470 }
471
Jiang Liu3d54a312013-04-12 05:44:28 +0000472 list_for_each_entry(slot, &bridge->slots, node) {
473 list_for_each_entry(func, &slot->funcs, sibling) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400474 if (is_dock_device(func->handle)) {
475 unregister_hotplug_dock_device(func->handle);
476 unregister_dock_notifier(&func->nb);
477 }
Kristen Accardi20416ea2006-02-23 17:56:03 -0800478 if (!(func->flags & FUNC_HAS_DCK)) {
479 status = acpi_remove_notify_handler(func->handle,
Rajesh Shah42f49a62005-04-28 00:25:53 -0700480 ACPI_SYSTEM_NOTIFY,
481 handle_hotplug_event_func);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800482 if (ACPI_FAILURE(status))
483 err("failed to remove notify handler\n");
484 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700485 }
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800486 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700487 }
488
Jiang Liu3d54a312013-04-12 05:44:28 +0000489 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700490 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000491 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static int power_on_slot(struct acpiphp_slot *slot)
495{
496 acpi_status status;
497 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 int retval = 0;
499
500 /* if already enabled, just skip */
501 if (slot->flags & SLOT_POWEREDON)
502 goto err_exit;
503
Alex Chiang58c08622009-10-26 21:25:27 -0600504 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (func->flags & FUNC_HAS_PS0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800506 dbg("%s: executing _PS0\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL);
508 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800509 warn("%s: _PS0 failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 retval = -1;
511 goto err_exit;
512 } else
513 break;
514 }
515 }
516
517 /* TBD: evaluate _STA to check if the slot is enabled */
518
519 slot->flags |= SLOT_POWEREDON;
520
521 err_exit:
522 return retval;
523}
524
525
526static int power_off_slot(struct acpiphp_slot *slot)
527{
528 acpi_status status;
529 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 int retval = 0;
532
533 /* if already disabled, just skip */
534 if ((slot->flags & SLOT_POWEREDON) == 0)
535 goto err_exit;
536
Alex Chiang58c08622009-10-26 21:25:27 -0600537 list_for_each_entry(func, &slot->funcs, sibling) {
Rajesh Shah2f523b12005-04-28 00:25:55 -0700538 if (func->flags & FUNC_HAS_PS3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL);
540 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800541 warn("%s: _PS3 failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 retval = -1;
543 goto err_exit;
544 } else
545 break;
546 }
547 }
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* TBD: evaluate _STA to check if the slot is disabled */
550
551 slot->flags &= (~SLOT_POWEREDON);
552
553 err_exit:
554 return retval;
555}
556
557
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800558
559/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800560 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800561 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800562 */
563static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
564{
565 struct list_head *tmp;
566 unsigned char max, n;
567
568 /*
569 * pci_bus_max_busnr will return the highest
570 * reserved busnr for all these children.
571 * that is equivalent to the bus->subordinate
572 * value. We don't want to use the parent's
573 * bus->subordinate value because it could have
574 * padding in it.
575 */
Yinghai Lub918c622012-05-17 18:51:11 -0700576 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800577
578 list_for_each(tmp, &bus->children) {
579 n = pci_bus_max_busnr(pci_bus_b(tmp));
580 if (n > max)
581 max = n;
582 }
583 return max;
584}
585
586
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800587/**
588 * acpiphp_bus_add - add a new bus to acpi subsystem
589 * @func: acpiphp_func of the bridge
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800590 */
591static int acpiphp_bus_add(struct acpiphp_func *func)
592{
Rafael J. Wysocki636458d2012-12-21 00:36:47 +0100593 struct acpi_device *device;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800594 int ret_val;
595
Kristen Accardi20416ea2006-02-23 17:56:03 -0800596 if (!acpi_bus_get_device(func->handle, &device)) {
597 dbg("bus exists... trim\n");
598 /* this shouldn't be in here, so remove
599 * the bus then re-add it...
600 */
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100601 acpi_bus_trim(device);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800602 }
603
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +0100604 ret_val = acpi_bus_scan(func->handle);
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100605 if (!ret_val)
606 ret_val = acpi_bus_get_device(func->handle, &device);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800607
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +0100608 if (ret_val)
609 dbg("error adding bus, %x\n", -ret_val);
610
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800611 return ret_val;
612}
613
614
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900615/**
616 * acpiphp_bus_trim - trim a bus from acpi subsystem
617 * @handle: handle to acpi namespace
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900618 */
Adrian Bunk6d47a5e2006-08-14 23:07:38 -0700619static int acpiphp_bus_trim(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900620{
621 struct acpi_device *device;
622 int retval;
623
624 retval = acpi_bus_get_device(handle, &device);
625 if (retval) {
626 dbg("acpi_device not found\n");
627 return retval;
628 }
629
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100630 acpi_bus_trim(device);
631 return 0;
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900632}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800633
Shaohua Lid0607052010-02-25 10:59:34 +0800634static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
635{
636 struct acpiphp_func *func;
637 union acpi_object params[2];
638 struct acpi_object_list arg_list;
639
640 list_for_each_entry(func, &slot->funcs, sibling) {
641 arg_list.count = 2;
642 arg_list.pointer = params;
643 params[0].type = ACPI_TYPE_INTEGER;
644 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
645 params[1].type = ACPI_TYPE_INTEGER;
646 params[1].integer.value = 1;
647 /* _REG is optional, we don't care about if there is failure */
648 acpi_evaluate_object(func->handle, "_REG", &arg_list, NULL);
649 }
650}
651
Yinghai Lu1f96a962013-01-21 13:20:42 -0800652static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
653{
654 struct acpiphp_func *func;
655
656 if (!dev->subordinate)
657 return;
658
659 /* quirk, or pcie could set it already */
660 if (dev->is_hotplug_bridge)
661 return;
662
663 if (PCI_SLOT(dev->devfn) != slot->device)
664 return;
665
666 list_for_each_entry(func, &slot->funcs, sibling) {
667 if (PCI_FUNC(dev->devfn) == func->function) {
668 /* check if this bridge has ejectable slots */
669 if ((detect_ejectable_slots(func->handle) > 0))
670 dev->is_hotplug_bridge = 1;
671 break;
672 }
673 }
674}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/**
677 * enable_device - enable, configure a slot
678 * @slot: slot to be enabled
679 *
680 * This function should be called per *physical slot*,
681 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 */
Sam Ravnborg0ab2b572008-02-17 10:45:28 +0100683static int __ref enable_device(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct pci_dev *dev;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700686 struct pci_bus *bus = slot->bridge->pci_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700688 int num, max, pass;
Jiang Liud66ecb72013-06-23 01:01:35 +0200689 LIST_HEAD(add_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 if (slot->flags & SLOT_ENABLED)
692 goto err_exit;
693
Jiang Liu2ca344e2013-01-31 00:10:09 +0800694 list_for_each_entry(func, &slot->funcs, sibling)
695 acpiphp_bus_add(func);
696
Rajesh Shah42f49a62005-04-28 00:25:53 -0700697 num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
698 if (num == 0) {
Amos Kongf382a082011-11-25 15:03:07 +0800699 /* Maybe only part of funcs are added. */
700 dbg("No new device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 goto err_exit;
702 }
703
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800704 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700705 for (pass = 0; pass < 2; pass++) {
706 list_for_each_entry(dev, &bus->devices, bus_list) {
707 if (PCI_SLOT(dev->devfn) != slot->device)
708 continue;
709 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800710 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700711 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800712 if (pass && dev->subordinate) {
713 check_hotplug_bridge(slot, dev);
Jiang Liud66ecb72013-06-23 01:01:35 +0200714 pcibios_resource_survey_bus(dev->subordinate);
715 __pci_bus_size_bridges(dev->subordinate,
716 &add_list);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800717 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800718 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
Jiang Liud66ecb72013-06-23 01:01:35 +0200722 __pci_bus_assign_resources(bus, &add_list, NULL);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700723 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600724 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800725 acpiphp_set_acpi_region(slot);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700726 pci_enable_bridges(bus);
Ian Campbell69643e42011-05-11 17:00:32 +0100727
728 list_for_each_entry(dev, &bus->devices, bus_list) {
729 /* Assume that newly added devices are powered on already. */
730 if (!dev->is_added)
731 dev->current_state = PCI_D0;
732 }
733
Rajesh Shah42f49a62005-04-28 00:25:53 -0700734 pci_bus_add_devices(bus);
735
Amos Kongf382a082011-11-25 15:03:07 +0800736 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600737 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600738 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
739 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800740 if (!dev) {
741 /* Do not set SLOT_ENABLED flag if some funcs
742 are not added. */
743 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900744 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 err_exit:
Jiang Liu3d54a312013-04-12 05:44:28 +0000750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Amos Kongce29ca32012-05-23 10:20:35 -0600753/* return first device in slot, acquiring a reference on it */
754static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
755{
756 struct pci_bus *bus = slot->bridge->pci_bus;
757 struct pci_dev *dev;
758 struct pci_dev *ret = NULL;
759
760 down_read(&pci_bus_sem);
761 list_for_each_entry(dev, &bus->devices, bus_list)
762 if (PCI_SLOT(dev->devfn) == slot->device) {
763 ret = pci_dev_get(dev);
764 break;
765 }
766 up_read(&pci_bus_sem);
767
768 return ret;
769}
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/**
772 * disable_device - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800773 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
775static int disable_device(struct acpiphp_slot *slot)
776{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600778 struct pci_dev *pdev;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900779
Amos Kongce29ca32012-05-23 10:20:35 -0600780 /*
781 * enable_device() enumerates all functions in this device via
782 * pci_scan_slot(), whether they have associated ACPI hotplug
783 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
784 * here.
785 */
786 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600787 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600788 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700789 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700790
Alex Chiang9d911d72009-05-21 16:21:15 -0600791 list_for_each_entry(func, &slot->funcs, sibling) {
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900792 acpiphp_bus_trim(func->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794
795 slot->flags &= (~SLOT_ENABLED);
796
Alex Chiang9d911d72009-05-21 16:21:15 -0600797 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800
801/**
802 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800803 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800805 * If a slot has _STA for each function and if any one of them
806 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800808 * If a slot doesn't have _STA and if any one of its functions'
809 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800811 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 */
813static unsigned int get_slot_status(struct acpiphp_slot *slot)
814{
815 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400816 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 u32 dvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct acpiphp_func *func;
819
Alex Chiang58c08622009-10-26 21:25:27 -0600820 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (func->flags & FUNC_HAS_STA) {
822 status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta);
823 if (ACPI_SUCCESS(status) && sta)
824 break;
825 } else {
826 pci_bus_read_config_dword(slot->bridge->pci_bus,
827 PCI_DEVFN(slot->device,
828 func->function),
829 PCI_VENDOR_ID, &dvid);
830 if (dvid != 0xffffffff) {
831 sta = ACPI_STA_ALL;
832 break;
833 }
834 }
835 }
836
837 return (unsigned int)sta;
838}
839
840/**
Rajesh Shah8d50e332005-04-28 00:25:57 -0700841 * acpiphp_eject_slot - physically eject the slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800842 * @slot: ACPI PHP slot
Rajesh Shah8d50e332005-04-28 00:25:57 -0700843 */
Gary Hadebfceafc2007-07-05 11:10:46 -0700844int acpiphp_eject_slot(struct acpiphp_slot *slot)
Rajesh Shah8d50e332005-04-28 00:25:57 -0700845{
846 acpi_status status;
847 struct acpiphp_func *func;
Rajesh Shah8d50e332005-04-28 00:25:57 -0700848 struct acpi_object_list arg_list;
849 union acpi_object arg;
850
Alex Chiang58c08622009-10-26 21:25:27 -0600851 list_for_each_entry(func, &slot->funcs, sibling) {
Rajesh Shah8d50e332005-04-28 00:25:57 -0700852 /* We don't want to call _EJ0 on non-existing functions. */
853 if ((func->flags & FUNC_HAS_EJ0)) {
854 /* _EJ0 method take one argument */
855 arg_list.count = 1;
856 arg_list.pointer = &arg;
857 arg.type = ACPI_TYPE_INTEGER;
858 arg.integer.value = 1;
859
860 status = acpi_evaluate_object(func->handle, "_EJ0", &arg_list, NULL);
861 if (ACPI_FAILURE(status)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800862 warn("%s: _EJ0 failed\n", __func__);
Rajesh Shah8d50e332005-04-28 00:25:57 -0700863 return -1;
864 } else
865 break;
866 }
867 }
868 return 0;
869}
870
871/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800873 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 *
875 * Iterate over all slots under this bridge and make sure that if a
876 * card is present they are enabled, and if not they are disabled.
877 */
878static int acpiphp_check_bridge(struct acpiphp_bridge *bridge)
879{
880 struct acpiphp_slot *slot;
881 int retval = 0;
882 int enabled, disabled;
883
884 enabled = disabled = 0;
885
Yijing Wangad41dd92013-04-12 05:44:27 +0000886 list_for_each_entry(slot, &bridge->slots, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 unsigned int status = get_slot_status(slot);
888 if (slot->flags & SLOT_ENABLED) {
889 if (status == ACPI_STA_ALL)
890 continue;
891 retval = acpiphp_disable_slot(slot);
892 if (retval) {
893 err("Error occurred in disabling\n");
894 goto err_exit;
Rajesh Shah8d50e332005-04-28 00:25:57 -0700895 } else {
896 acpiphp_eject_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898 disabled++;
899 } else {
900 if (status != ACPI_STA_ALL)
901 continue;
902 retval = acpiphp_enable_slot(slot);
903 if (retval) {
904 err("Error occurred in enabling\n");
905 goto err_exit;
906 }
907 enabled++;
908 }
909 }
910
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800911 dbg("%s: %d enabled, %d disabled\n", __func__, enabled, disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 err_exit:
914 return retval;
915}
916
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600917static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700918{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700919 struct pci_dev *dev;
920
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600921 list_for_each_entry(dev, &bus->devices, bus_list)
922 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700923}
924
925/*
926 * Remove devices for which we could not assign resources, call
927 * arch specific code to fix-up the bus
928 */
929static void acpiphp_sanitize_bus(struct pci_bus *bus)
930{
Yijing Wangd65eba62013-04-12 05:44:17 +0000931 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700932 int i;
933 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
934
Yijing Wangd65eba62013-04-12 05:44:17 +0000935 list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700936 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
937 struct resource *res = &dev->resource[i];
938 if ((res->flags & type_mask) && !res->start &&
939 res->end) {
940 /* Could not assign a required resources
941 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800942 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700943 break;
944 }
945 }
946 }
947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
950 * ACPI event handlers
951 */
952
Gary Hade0bbd6422007-07-05 11:10:48 -0700953static acpi_status
Gary Hade0bbd6422007-07-05 11:10:48 -0700954check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
955{
956 struct acpiphp_bridge *bridge;
957 char objname[64];
958 struct acpi_buffer buffer = { .length = sizeof(objname),
959 .pointer = objname };
960
961 bridge = acpiphp_handle_to_bridge(handle);
962 if (bridge) {
963 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
964 dbg("%s: re-enumerating slots under %s\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800965 __func__, objname);
Gary Hade0bbd6422007-07-05 11:10:48 -0700966 acpiphp_check_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +0000967 put_bridge(bridge);
Gary Hade0bbd6422007-07-05 11:10:48 -0700968 }
969 return AE_OK ;
970}
971
Yinghai Lu3f327e32013-05-07 11:06:03 -0600972void acpiphp_check_host_bridge(acpi_handle handle)
973{
974 struct acpiphp_bridge *bridge;
975
976 bridge = acpiphp_handle_to_bridge(handle);
977 if (bridge) {
978 acpiphp_check_bridge(bridge);
979 put_bridge(bridge);
980 }
981
982 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
983 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
984}
985
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400986static void _handle_hotplug_event_bridge(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct acpiphp_bridge *bridge;
989 char objname[64];
990 struct acpi_buffer buffer = { .length = sizeof(objname),
991 .pointer = objname };
Yinghai Lu92d8aff2013-01-21 13:20:47 -0800992 struct acpi_hp_work *hp_work;
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400993 acpi_handle handle;
994 u32 type;
995
Yinghai Lu92d8aff2013-01-21 13:20:47 -0800996 hp_work = container_of(work, struct acpi_hp_work, work);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400997 handle = hp_work->handle;
998 type = hp_work->type;
Jiang Liube6d2862013-01-31 00:10:10 +0800999 bridge = (struct acpiphp_bridge *)hp_work->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001001 acpi_scan_lock_acquire();
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1004
1005 switch (type) {
1006 case ACPI_NOTIFY_BUS_CHECK:
1007 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001008 dbg("%s: Bus check notify on %s\n", __func__, objname);
Jiang Liube6d2862013-01-31 00:10:10 +08001009 dbg("%s: re-enumerating slots under %s\n", __func__, objname);
1010 acpiphp_check_bridge(bridge);
1011 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
1012 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
1014
1015 case ACPI_NOTIFY_DEVICE_CHECK:
1016 /* device check */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001017 dbg("%s: Device check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 acpiphp_check_bridge(bridge);
1019 break;
1020
1021 case ACPI_NOTIFY_DEVICE_WAKE:
1022 /* wake event */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001023 dbg("%s: Device wake notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 break;
1025
1026 case ACPI_NOTIFY_EJECT_REQUEST:
1027 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001028 dbg("%s: Device eject notify on %s\n", __func__, objname);
Jiang Liube6d2862013-01-31 00:10:10 +08001029 if ((bridge->flags & BRIDGE_HAS_EJ0) && bridge->func) {
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +09001030 struct acpiphp_slot *slot;
1031 slot = bridge->func->slot;
1032 if (!acpiphp_disable_slot(slot))
1033 acpiphp_eject_slot(slot);
1034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036
1037 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1038 printk(KERN_ERR "Device %s cannot be configured due"
1039 " to a frequency mismatch\n", objname);
1040 break;
1041
1042 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1043 printk(KERN_ERR "Device %s cannot be configured due"
1044 " to a bus mode mismatch\n", objname);
1045 break;
1046
1047 case ACPI_NOTIFY_POWER_FAULT:
1048 printk(KERN_ERR "Device %s has suffered a power fault\n",
1049 objname);
1050 break;
1051
1052 default:
1053 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1054 break;
1055 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001056
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001057 acpi_scan_lock_release();
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001058 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
Jiang Liu3d54a312013-04-12 05:44:28 +00001059 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062/**
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001063 * handle_hotplug_event_bridge - handle ACPI event on bridges
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * @handle: Notify()'ed acpi_handle
1065 * @type: Notify code
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001066 * @context: pointer to acpiphp_bridge structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 *
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001068 * Handles ACPI event notification on {host,p2p} bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 */
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001070static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
1071 void *context)
1072{
Jiang Liu3d54a312013-04-12 05:44:28 +00001073 struct acpiphp_bridge *bridge = context;
1074
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001075 /*
1076 * Currently the code adds all hotplug events to the kacpid_wq
1077 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1078 * The proper way to fix this is to reorganize the code so that
1079 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1080 * For now just re-add this work to the kacpi_hotplug_wq so we
1081 * don't deadlock on hotplug actions.
1082 */
Jiang Liu3d54a312013-04-12 05:44:28 +00001083 get_bridge(bridge);
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001084 alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_bridge);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001085}
1086
Rafael J. Wysocki21a31012013-06-24 11:22:53 +02001087static void hotplug_event_func(acpi_handle handle, u32 type, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Rafael J. Wysocki21a31012013-06-24 11:22:53 +02001089 struct acpiphp_func *func = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 char objname[64];
1091 struct acpi_buffer buffer = { .length = sizeof(objname),
1092 .pointer = objname };
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 switch (type) {
1097 case ACPI_NOTIFY_BUS_CHECK:
1098 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001099 dbg("%s: Bus check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 acpiphp_enable_slot(func->slot);
1101 break;
1102
1103 case ACPI_NOTIFY_DEVICE_CHECK:
1104 /* device check : re-enumerate from parent bus */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001105 dbg("%s: Device check notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 acpiphp_check_bridge(func->slot->bridge);
1107 break;
1108
1109 case ACPI_NOTIFY_DEVICE_WAKE:
1110 /* wake event */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001111 dbg("%s: Device wake notify on %s\n", __func__, objname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113
1114 case ACPI_NOTIFY_EJECT_REQUEST:
1115 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001116 dbg("%s: Device eject notify on %s\n", __func__, objname);
Rajesh Shah8d50e332005-04-28 00:25:57 -07001117 if (!(acpiphp_disable_slot(func->slot)))
1118 acpiphp_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 break;
1120
1121 default:
1122 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1123 break;
1124 }
Rafael J. Wysocki21a31012013-06-24 11:22:53 +02001125}
1126
1127static void _handle_hotplug_event_func(struct work_struct *work)
1128{
1129 struct acpi_hp_work *hp_work;
1130 struct acpiphp_func *func;
1131
1132 hp_work = container_of(work, struct acpi_hp_work, work);
1133 func = hp_work->context;
1134 acpi_scan_lock_acquire();
1135
1136 hotplug_event_func(hp_work->handle, hp_work->type, func);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001137
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001138 acpi_scan_lock_release();
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001139 kfree(hp_work); /* allocated in handle_hotplug_event_func */
Jiang Liu3d54a312013-04-12 05:44:28 +00001140 put_bridge(func->slot->bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001143/**
1144 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1145 * @handle: Notify()'ed acpi_handle
1146 * @type: Notify code
1147 * @context: pointer to acpiphp_func structure
1148 *
1149 * Handles ACPI event notification on slots.
1150 */
1151static void handle_hotplug_event_func(acpi_handle handle, u32 type,
1152 void *context)
1153{
Jiang Liu3d54a312013-04-12 05:44:28 +00001154 struct acpiphp_func *func = context;
1155
Prarit Bhargava6af8bef2011-09-28 19:40:53 -04001156 /*
1157 * Currently the code adds all hotplug events to the kacpid_wq
1158 * queue when it should add hotplug events to the kacpi_hotplug_wq.
1159 * The proper way to fix this is to reorganize the code so that
1160 * drivers (dock, etc.) do not call acpi_os_execute(), etc.
1161 * For now just re-add this work to the kacpi_hotplug_wq so we
1162 * don't deadlock on hotplug actions.
1163 */
Jiang Liu3d54a312013-04-12 05:44:28 +00001164 get_bridge(func->slot->bridge);
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001165 alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_func);
Rajesh Shah8e7561c2005-04-28 00:25:56 -07001166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001168/*
1169 * Create hotplug slots for the PCI bus.
1170 * It should always return 0 to avoid skipping following notifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 */
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001172void acpiphp_enumerate_slots(struct pci_bus *bus, acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001174 acpi_handle dummy_handle;
1175 struct acpiphp_bridge *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001177 if (acpiphp_disabled)
1178 return;
1179
1180 if (detect_ejectable_slots(handle) <= 0)
1181 return;
1182
1183 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
1184 if (bridge == NULL) {
1185 err("out of memory\n");
1186 return;
1187 }
1188
Yijing Wangad41dd92013-04-12 05:44:27 +00001189 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +00001190 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001191 bridge->handle = handle;
1192 bridge->pci_dev = pci_dev_get(bus->self);
1193 bridge->pci_bus = bus;
1194
1195 /*
1196 * Grab a ref to the subordinate PCI bus in case the bus is
1197 * removed via PCI core logical hotplug. The ref pins the bus
1198 * (which we access during module unload).
1199 */
1200 get_device(&bus->dev);
1201
1202 if (!pci_is_root_bus(bridge->pci_bus) &&
1203 ACPI_SUCCESS(acpi_get_handle(bridge->handle,
1204 "_EJ0", &dummy_handle))) {
1205 dbg("found ejectable p2p bridge\n");
1206 bridge->flags |= BRIDGE_HAS_EJ0;
1207 bridge->func = acpiphp_bridge_handle_to_function(handle);
1208 }
1209
1210 init_bridge_misc(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001213/* Destroy hotplug slots associated with the PCI bus */
1214void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001216 struct acpiphp_bridge *bridge, *tmp;
1217
1218 if (acpiphp_disabled)
1219 return;
1220
1221 list_for_each_entry_safe(bridge, tmp, &bridge_list, list)
1222 if (bridge->pci_bus == bus) {
1223 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001224 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001225 break;
1226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229/**
1230 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001231 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 */
1233int acpiphp_enable_slot(struct acpiphp_slot *slot)
1234{
1235 int retval;
1236
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001237 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /* wake up all functions */
1240 retval = power_on_slot(slot);
1241 if (retval)
1242 goto err_exit;
1243
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001244 if (get_slot_status(slot) == ACPI_STA_ALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /* configure all functions */
1246 retval = enable_device(slot);
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001247 if (retval)
1248 power_off_slot(slot);
1249 } else {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001250 dbg("%s: Slot status is not ACPI_STA_ALL\n", __func__);
MUNEDA Takahirocde0e5d2006-03-22 14:49:33 +09001251 power_off_slot(slot);
1252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001255 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return retval;
1257}
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259/**
1260 * acpiphp_disable_slot - power off slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001261 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 */
1263int acpiphp_disable_slot(struct acpiphp_slot *slot)
1264{
1265 int retval = 0;
1266
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001267 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 /* unconfigure all functions */
1270 retval = disable_device(slot);
1271 if (retval)
1272 goto err_exit;
1273
1274 /* power off all functions */
1275 retval = power_off_slot(slot);
1276 if (retval)
1277 goto err_exit;
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001280 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return retval;
1282}
1283
1284
1285/*
1286 * slot enabled: 1
1287 * slot disabled: 0
1288 */
1289u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1290{
Rajesh Shah8d50e332005-04-28 00:25:57 -07001291 return (slot->flags & SLOT_POWEREDON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294
1295/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001296 * latch open: 1
1297 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 */
1299u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1300{
1301 unsigned int sta;
1302
1303 sta = get_slot_status(slot);
1304
Jiang Liuce15d872013-04-12 05:44:19 +00001305 return (sta & ACPI_STA_DEVICE_UI) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
1308
1309/*
1310 * adapter presence : 1
1311 * absence : 0
1312 */
1313u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1314{
1315 unsigned int sta;
1316
1317 sta = get_slot_status(slot);
1318
1319 return (sta == 0) ? 0 : 1;
1320}