blob: 1971d2943de455cf1594e5827a8062635b63a91f [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>
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +020049#include <linux/pm_runtime.h>
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +010050#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Prarit Bhargava6af8bef2011-09-28 19:40:53 -040052#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include "acpiphp.h"
56
57static LIST_HEAD(bridge_list);
Jiang Liu3d54a312013-04-12 05:44:28 +000058static DEFINE_MUTEX(bridge_mutex);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020059static DEFINE_MUTEX(acpiphp_context_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#define MY_NAME "acpiphp_glue"
62
Rafael J. Wysocki87831272013-07-13 23:27:24 +020063static void handle_hotplug_event(acpi_handle handle, u32 type, void *data);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070064static void acpiphp_sanitize_bus(struct pci_bus *bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -060065static void acpiphp_set_hpp_values(struct pci_bus *bus);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +020066static void hotplug_event(acpi_handle handle, u32 type, void *data);
Jiang Liu3d54a312013-04-12 05:44:28 +000067static void free_bridge(struct kref *kref);
Kristen Accardi8e5dce32005-10-18 17:21:40 -070068
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +020069static void acpiphp_context_handler(acpi_handle handle, void *context)
70{
71 /* Intentionally empty. */
72}
73
74/**
75 * acpiphp_init_context - Create hotplug context and grab a reference to it.
76 * @handle: ACPI object handle to create the context for.
77 *
78 * Call under acpiphp_context_lock.
79 */
80static struct acpiphp_context *acpiphp_init_context(acpi_handle handle)
81{
82 struct acpiphp_context *context;
83 acpi_status status;
84
85 context = kzalloc(sizeof(*context), GFP_KERNEL);
86 if (!context)
87 return NULL;
88
89 context->handle = handle;
90 context->refcount = 1;
91 status = acpi_attach_data(handle, acpiphp_context_handler, context);
92 if (ACPI_FAILURE(status)) {
93 kfree(context);
94 return NULL;
95 }
96 return context;
97}
98
99/**
100 * acpiphp_get_context - Get hotplug context and grab a reference to it.
101 * @handle: ACPI object handle to get the context for.
102 *
103 * Call under acpiphp_context_lock.
104 */
105static struct acpiphp_context *acpiphp_get_context(acpi_handle handle)
106{
107 struct acpiphp_context *context = NULL;
108 acpi_status status;
109 void *data;
110
111 status = acpi_get_data(handle, acpiphp_context_handler, &data);
112 if (ACPI_SUCCESS(status)) {
113 context = data;
114 context->refcount++;
115 }
116 return context;
117}
118
119/**
120 * acpiphp_put_context - Drop a reference to ACPI hotplug context.
121 * @handle: ACPI object handle to put the context for.
122 *
123 * The context object is removed if there are no more references to it.
124 *
125 * Call under acpiphp_context_lock.
126 */
127static void acpiphp_put_context(struct acpiphp_context *context)
128{
129 if (--context->refcount)
130 return;
131
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200132 WARN_ON(context->bridge);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200133 acpi_detach_data(context->handle, acpiphp_context_handler);
134 kfree(context);
135}
136
Jiang Liu3d54a312013-04-12 05:44:28 +0000137static inline void get_bridge(struct acpiphp_bridge *bridge)
138{
139 kref_get(&bridge->ref);
140}
141
142static inline void put_bridge(struct acpiphp_bridge *bridge)
143{
144 kref_put(&bridge->ref, free_bridge);
145}
146
147static void free_bridge(struct kref *kref)
148{
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200149 struct acpiphp_context *context;
Jiang Liu3d54a312013-04-12 05:44:28 +0000150 struct acpiphp_bridge *bridge;
151 struct acpiphp_slot *slot, *next;
152 struct acpiphp_func *func, *tmp;
153
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200154 mutex_lock(&acpiphp_context_lock);
155
Jiang Liu3d54a312013-04-12 05:44:28 +0000156 bridge = container_of(kref, struct acpiphp_bridge, ref);
157
158 list_for_each_entry_safe(slot, next, &bridge->slots, node) {
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200159 list_for_each_entry_safe(func, tmp, &slot->funcs, sibling)
160 acpiphp_put_context(func_to_context(func));
161
Jiang Liu3d54a312013-04-12 05:44:28 +0000162 kfree(slot);
163 }
164
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200165 context = bridge->context;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200166 /* Root bridges will not have hotplug context. */
167 if (context) {
168 /* Release the reference taken by acpiphp_enumerate_slots(). */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200169 put_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200170 context->bridge = NULL;
171 acpiphp_put_context(context);
172 }
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200173
Jiang Liu3d54a312013-04-12 05:44:28 +0000174 put_device(&bridge->pci_bus->dev);
175 pci_dev_put(bridge->pci_dev);
176 kfree(bridge);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200177
178 mutex_unlock(&acpiphp_context_lock);
Jiang Liu3d54a312013-04-12 05:44:28 +0000179}
180
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400181/*
182 * the _DCK method can do funny things... and sometimes not
183 * hah-hah funny.
184 *
185 * TBD - figure out a way to only call fixups for
186 * systems that require them.
187 */
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200188static void post_dock_fixups(acpi_handle not_used, u32 event, void *data)
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400189{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200190 struct acpiphp_context *context = data;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200191 struct pci_bus *bus = context->func.slot->bus;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400192 u32 buses;
193
194 if (!bus->self)
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200195 return;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400196
197 /* fixup bad _DCK function that rewrites
198 * secondary bridge on slot
199 */
200 pci_read_config_dword(bus->self,
201 PCI_PRIMARY_BUS,
202 &buses);
203
Yinghai Lub918c622012-05-17 18:51:11 -0700204 if (((buses >> 8) & 0xff) != bus->busn_res.start) {
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400205 buses = (buses & 0xff000000)
Alex Chiang2a9d3522008-12-11 11:17:55 -0700206 | ((unsigned int)(bus->primary) << 0)
Yinghai Lub918c622012-05-17 18:51:11 -0700207 | ((unsigned int)(bus->busn_res.start) << 8)
208 | ((unsigned int)(bus->busn_res.end) << 16);
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400209 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses);
210 }
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400211}
212
213
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400214static const struct acpi_dock_ops acpiphp_dock_ops = {
Rafael J. Wysockif09ce742013-07-05 03:03:25 +0200215 .fixup = post_dock_fixups,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200216 .handler = hotplug_event,
Shaohua Li1253f7a2008-08-28 10:06:16 +0800217};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Jiang Liu5ba113f2012-08-22 23:16:45 +0800219/* Check whether the PCI device is managed by native PCIe hotplug driver */
220static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev)
221{
222 u32 reg32;
223 acpi_handle tmp;
224 struct acpi_pci_root *root;
225
226 /* Check whether the PCIe port supports native PCIe hotplug */
227 if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32))
228 return false;
229 if (!(reg32 & PCI_EXP_SLTCAP_HPC))
230 return false;
231
232 /*
233 * Check whether native PCIe hotplug has been enabled for
234 * this PCIe hierarchy.
235 */
236 tmp = acpi_find_root_bridge_handle(pdev);
237 if (!tmp)
238 return false;
239 root = acpi_pci_find_root(tmp);
240 if (!root)
241 return false;
242 if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL))
243 return false;
244
245 return true;
246}
247
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200248static void acpiphp_dock_init(void *data)
249{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200250 struct acpiphp_context *context = data;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200251
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200252 get_bridge(context->func.parent);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200253}
254
255static void acpiphp_dock_release(void *data)
256{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200257 struct acpiphp_context *context = data;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200258
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200259 put_bridge(context->func.parent);
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/* callback routine to register each ACPI PCI slot object */
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200263static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data,
264 void **rv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200266 struct acpiphp_bridge *bridge = data;
267 struct acpiphp_context *context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct acpiphp_slot *slot;
269 struct acpiphp_func *newfunc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 acpi_status status = AE_OK;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200271 unsigned long long adr;
272 int device, function;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900273 struct pci_bus *pbus = bridge->pci_bus;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200274 struct pci_dev *pdev = bridge->pci_dev;
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000275 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200277 if (pdev && device_is_managed_by_native_pciehp(pdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return AE_OK;
279
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600280 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
281 if (ACPI_FAILURE(status)) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200282 acpi_handle_warn(handle, "can't evaluate _ADR (%#x)\n", status);
Bjorn Helgaasdfb117b2012-06-20 16:18:29 -0600283 return AE_OK;
284 }
285
286 device = (adr >> 16) & 0xffff;
287 function = adr & 0xffff;
288
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200289 mutex_lock(&acpiphp_context_lock);
290 context = acpiphp_init_context(handle);
291 if (!context) {
292 mutex_unlock(&acpiphp_context_lock);
293 acpi_handle_err(handle, "No hotplug context\n");
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200294 return AE_NOT_EXIST;
295 }
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200296 newfunc = &context->func;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200297 newfunc->function = function;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200298 newfunc->parent = bridge;
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200299 mutex_unlock(&acpiphp_context_lock);
300
Jiang Liuecd046d2013-06-29 00:24:43 +0800301 if (acpi_has_method(handle, "_EJ0"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800302 newfunc->flags = FUNC_HAS_EJ0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Jiang Liuecd046d2013-06-29 00:24:43 +0800304 if (acpi_has_method(handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 newfunc->flags |= FUNC_HAS_STA;
306
Jiang Liuecd046d2013-06-29 00:24:43 +0800307 if (acpi_has_method(handle, "_DCK"))
Kristen Accardi20416ea2006-02-23 17:56:03 -0800308 newfunc->flags |= FUNC_HAS_DCK;
Kristen Accardi20416ea2006-02-23 17:56:03 -0800309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* search for objects that share the same slot */
Yijing Wangad41dd92013-04-12 05:44:27 +0000311 list_for_each_entry(slot, &bridge->slots, node)
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200312 if (slot->device == device)
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200313 goto slot_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200315 slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
316 if (!slot) {
317 status = AE_NO_MEMORY;
318 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200321 slot->bus = bridge->pci_bus;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200322 slot->device = device;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200323 INIT_LIST_HEAD(&slot->funcs);
324 mutex_init(&slot->crit_sect);
325
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200326 list_add_tail(&slot->node, &bridge->slots);
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200327
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200328 /* Register slots for ejectable funtions only. */
329 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) {
330 unsigned long long sun;
331 int retval;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200332
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200333 bridge->nr_slots++;
334 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
335 if (ACPI_FAILURE(status))
336 sun = bridge->nr_slots;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200337
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200338 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200339 sun, pci_domain_nr(pbus), pbus->number, device);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200340
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200341 retval = acpiphp_register_hotplug_slot(slot, sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200342 if (retval) {
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200343 slot->slot = NULL;
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200344 bridge->nr_slots--;
345 if (retval == -EBUSY)
346 warn("Slot %llu already registered by another "
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200347 "hotplug driver\n", sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200348 else
349 warn("acpiphp_register_hotplug_slot failed "
350 "(err code = 0x%x)\n", retval);
351 }
352 /* Even if the slot registration fails, we can still use it. */
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200353 }
354
355 slot_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 newfunc->slot = slot;
357 list_add_tail(&newfunc->sibling, &slot->funcs);
358
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000359 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
360 &val, 60*1000))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200361 slot->flags |= SLOT_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400363 if (is_dock_device(handle)) {
364 /* we don't want to call this device's _EJ0
365 * because we want the dock notify handler
366 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800367 */
368 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400369 if (register_hotplug_dock_device(handle,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200370 &acpiphp_dock_ops, context,
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200371 acpiphp_dock_init, acpiphp_dock_release))
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400372 dbg("failed to register dock device\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800373 }
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800376 if (!(newfunc->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200377 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
378 handle_hotplug_event,
379 context);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200380 if (ACPI_FAILURE(status))
381 acpi_handle_err(handle,
382 "failed to install notify handler\n");
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200385 return AE_OK;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800386
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200387 err:
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200388 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200389 acpiphp_put_context(context);
390 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200391 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Rajesh Shah42f49a62005-04-28 00:25:53 -0700394static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
395{
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200396 struct acpiphp_context *context;
397 struct acpiphp_bridge *bridge = NULL;
Alex Chiang58c08622009-10-26 21:25:27 -0600398
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200399 mutex_lock(&acpiphp_context_lock);
400 context = acpiphp_get_context(handle);
401 if (context) {
402 bridge = context->bridge;
403 if (bridge)
Jiang Liu3d54a312013-04-12 05:44:28 +0000404 get_bridge(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700405
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200406 acpiphp_put_context(context);
407 }
408 mutex_unlock(&acpiphp_context_lock);
409 return bridge;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700410}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Rajesh Shah364d5092005-04-28 00:25:54 -0700412static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Jiang Liu3d54a312013-04-12 05:44:28 +0000414 struct acpiphp_slot *slot;
415 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700416 acpi_status status;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700417
Jiang Liu3d54a312013-04-12 05:44:28 +0000418 list_for_each_entry(slot, &bridge->slots, node) {
419 list_for_each_entry(func, &slot->funcs, sibling) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200420 acpi_handle handle = func_to_handle(func);
421
422 if (is_dock_device(handle))
423 unregister_hotplug_dock_device(handle);
424
Kristen Accardi20416ea2006-02-23 17:56:03 -0800425 if (!(func->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200426 status = acpi_remove_notify_handler(handle,
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200427 ACPI_SYSTEM_NOTIFY,
428 handle_hotplug_event);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800429 if (ACPI_FAILURE(status))
430 err("failed to remove notify handler\n");
431 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700432 }
Rafael J. Wysocki1aaac072013-08-17 22:16:33 +0200433 if (slot->slot)
434 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700435 }
436
Jiang Liu3d54a312013-04-12 05:44:28 +0000437 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700438 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000439 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800442/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800443 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800444 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800445 */
446static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
447{
448 struct list_head *tmp;
449 unsigned char max, n;
450
451 /*
452 * pci_bus_max_busnr will return the highest
453 * reserved busnr for all these children.
454 * that is equivalent to the bus->subordinate
455 * value. We don't want to use the parent's
456 * bus->subordinate value because it could have
457 * padding in it.
458 */
Yinghai Lub918c622012-05-17 18:51:11 -0700459 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800460
461 list_for_each(tmp, &bus->children) {
462 n = pci_bus_max_busnr(pci_bus_b(tmp));
463 if (n > max)
464 max = n;
465 }
466 return max;
467}
468
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800469/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200470 * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree.
471 * @handle: ACPI device object handle to start from.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800472 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200473static void acpiphp_bus_trim(acpi_handle handle)
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800474{
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200475 struct acpi_device *adev = NULL;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800476
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200477 acpi_bus_get_device(handle, &adev);
478 if (adev)
479 acpi_bus_trim(adev);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800480}
481
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900482/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200483 * acpiphp_bus_add - Scan ACPI namespace subtree.
484 * @handle: ACPI object handle to start the scan from.
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900485 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200486static void acpiphp_bus_add(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900487{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200488 struct acpi_device *adev = NULL;
489
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200490 acpi_bus_scan(handle);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200491 acpi_bus_get_device(handle, &adev);
492 if (adev)
493 acpi_device_set_power(adev, ACPI_STATE_D0);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900494}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800495
Shaohua Lid0607052010-02-25 10:59:34 +0800496static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
497{
498 struct acpiphp_func *func;
499 union acpi_object params[2];
500 struct acpi_object_list arg_list;
501
502 list_for_each_entry(func, &slot->funcs, sibling) {
503 arg_list.count = 2;
504 arg_list.pointer = params;
505 params[0].type = ACPI_TYPE_INTEGER;
506 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
507 params[1].type = ACPI_TYPE_INTEGER;
508 params[1].integer.value = 1;
509 /* _REG is optional, we don't care about if there is failure */
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200510 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
511 NULL);
Shaohua Lid0607052010-02-25 10:59:34 +0800512 }
513}
514
Yinghai Lu1f96a962013-01-21 13:20:42 -0800515static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
516{
517 struct acpiphp_func *func;
518
Yinghai Lu1f96a962013-01-21 13:20:42 -0800519 /* quirk, or pcie could set it already */
520 if (dev->is_hotplug_bridge)
521 return;
522
Yinghai Lu1f96a962013-01-21 13:20:42 -0800523 list_for_each_entry(func, &slot->funcs, sibling) {
524 if (PCI_FUNC(dev->devfn) == func->function) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200525 dev->is_hotplug_bridge = 1;
Yinghai Lu1f96a962013-01-21 13:20:42 -0800526 break;
527 }
528 }
529}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200532 * enable_slot - enable, configure a slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * @slot: slot to be enabled
534 *
535 * This function should be called per *physical slot*,
536 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200538static void __ref enable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct pci_dev *dev;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200541 struct pci_bus *bus = slot->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct acpiphp_func *func;
Kirill A. Shutemovb91182a2013-07-13 23:27:26 +0200543 int max, pass;
Jiang Liud66ecb72013-06-23 01:01:35 +0200544 LIST_HEAD(add_list);
Rafael J. Wysocki2dc41282013-09-06 15:41:32 +0200545 int nr_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Jiang Liu2ca344e2013-01-31 00:10:09 +0800547 list_for_each_entry(func, &slot->funcs, sibling)
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200548 acpiphp_bus_add(func_to_handle(func));
Jiang Liu2ca344e2013-01-31 00:10:09 +0800549
Rafael J. Wysocki2dc41282013-09-06 15:41:32 +0200550 nr_found = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800551 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700552 for (pass = 0; pass < 2; pass++) {
553 list_for_each_entry(dev, &bus->devices, bus_list) {
554 if (PCI_SLOT(dev->devfn) != slot->device)
555 continue;
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200556
Rajesh Shah42f49a62005-04-28 00:25:53 -0700557 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800558 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700559 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800560 if (pass && dev->subordinate) {
561 check_hotplug_bridge(slot, dev);
Jiang Liud66ecb72013-06-23 01:01:35 +0200562 pcibios_resource_survey_bus(dev->subordinate);
563 __pci_bus_size_bridges(dev->subordinate,
564 &add_list);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800565 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800566 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Jiang Liud66ecb72013-06-23 01:01:35 +0200569 __pci_bus_assign_resources(bus, &add_list, NULL);
Rafael J. Wysocki2dc41282013-09-06 15:41:32 +0200570 /* Nothing more to do here if there are no new devices on this bus. */
571 if (!nr_found && (slot->flags & SLOT_ENABLED))
572 return;
573
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700574 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600575 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800576 acpiphp_set_acpi_region(slot);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700577 pci_enable_bridges(bus);
Ian Campbell69643e42011-05-11 17:00:32 +0100578
579 list_for_each_entry(dev, &bus->devices, bus_list) {
580 /* Assume that newly added devices are powered on already. */
581 if (!dev->is_added)
582 dev->current_state = PCI_D0;
583 }
584
Rajesh Shah42f49a62005-04-28 00:25:53 -0700585 pci_bus_add_devices(bus);
586
Amos Kongf382a082011-11-25 15:03:07 +0800587 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600588 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600589 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
590 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800591 if (!dev) {
592 /* Do not set SLOT_ENABLED flag if some funcs
593 are not added. */
594 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900595 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Amos Kongce29ca32012-05-23 10:20:35 -0600600/* return first device in slot, acquiring a reference on it */
601static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
602{
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200603 struct pci_bus *bus = slot->bus;
Amos Kongce29ca32012-05-23 10:20:35 -0600604 struct pci_dev *dev;
605 struct pci_dev *ret = NULL;
606
607 down_read(&pci_bus_sem);
608 list_for_each_entry(dev, &bus->devices, bus_list)
609 if (PCI_SLOT(dev->devfn) == slot->device) {
610 ret = pci_dev_get(dev);
611 break;
612 }
613 up_read(&pci_bus_sem);
614
615 return ret;
616}
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/**
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200619 * disable_slot - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800620 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200622static void disable_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600625 struct pci_dev *pdev;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900626
Amos Kongce29ca32012-05-23 10:20:35 -0600627 /*
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200628 * enable_slot() enumerates all functions in this device via
Amos Kongce29ca32012-05-23 10:20:35 -0600629 * pci_scan_slot(), whether they have associated ACPI hotplug
630 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
631 * here.
632 */
633 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600634 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600635 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700636 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700637
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200638 list_for_each_entry(func, &slot->funcs, sibling)
639 acpiphp_bus_trim(func_to_handle(func));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 slot->flags &= (~SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644
645/**
646 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800647 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800649 * If a slot has _STA for each function and if any one of them
650 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800652 * If a slot doesn't have _STA and if any one of its functions'
653 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800655 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
657static unsigned int get_slot_status(struct acpiphp_slot *slot)
658{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400659 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 struct acpiphp_func *func;
661
Alex Chiang58c08622009-10-26 21:25:27 -0600662 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (func->flags & FUNC_HAS_STA) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200664 acpi_status status;
665
666 status = acpi_evaluate_integer(func_to_handle(func),
667 "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (ACPI_SUCCESS(status) && sta)
669 break;
670 } else {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200671 u32 dvid;
672
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200673 pci_bus_read_config_dword(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 PCI_DEVFN(slot->device,
675 func->function),
676 PCI_VENDOR_ID, &dvid);
677 if (dvid != 0xffffffff) {
678 sta = ACPI_STA_ALL;
679 break;
680 }
681 }
682 }
683
684 return (unsigned int)sta;
685}
686
687/**
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200688 * trim_stale_devices - remove PCI devices that are not responding.
689 * @dev: PCI device to start walking the hierarchy from.
690 */
691static void trim_stale_devices(struct pci_dev *dev)
692{
693 acpi_handle handle = ACPI_HANDLE(&dev->dev);
694 struct pci_bus *bus = dev->subordinate;
695 bool alive = false;
696
697 if (handle) {
698 acpi_status status;
699 unsigned long long sta;
700
701 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
702 alive = ACPI_SUCCESS(status) && sta == ACPI_STA_ALL;
703 }
704 if (!alive) {
705 u32 v;
706
707 /* Check if the device responds. */
708 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0);
709 }
710 if (!alive) {
711 pci_stop_and_remove_bus_device(dev);
712 if (handle)
713 acpiphp_bus_trim(handle);
714 } else if (bus) {
715 struct pci_dev *child, *tmp;
716
717 /* The device is a bridge. so check the bus below it. */
718 pm_runtime_get_sync(&dev->dev);
719 list_for_each_entry_safe(child, tmp, &bus->devices, bus_list)
720 trim_stale_devices(child);
721
722 pm_runtime_put(&dev->dev);
723 }
724}
725
726/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800728 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
730 * Iterate over all slots under this bridge and make sure that if a
731 * card is present they are enabled, and if not they are disabled.
732 */
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200733static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 struct acpiphp_slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Yijing Wangad41dd92013-04-12 05:44:27 +0000737 list_for_each_entry(slot, &bridge->slots, node) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200738 struct pci_bus *bus = slot->bus;
739 struct pci_dev *dev, *tmp;
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200740
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200741 mutex_lock(&slot->crit_sect);
742 /* wake up all functions */
743 if (get_slot_status(slot) == ACPI_STA_ALL) {
744 /* remove stale devices if any */
745 list_for_each_entry_safe(dev, tmp, &bus->devices,
746 bus_list)
747 if (PCI_SLOT(dev->devfn) == slot->device)
748 trim_stale_devices(dev);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200749
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200750 /* configure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200751 enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 } else {
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200753 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200755 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600759static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700760{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700761 struct pci_dev *dev;
762
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600763 list_for_each_entry(dev, &bus->devices, bus_list)
764 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700765}
766
767/*
768 * Remove devices for which we could not assign resources, call
769 * arch specific code to fix-up the bus
770 */
771static void acpiphp_sanitize_bus(struct pci_bus *bus)
772{
Yijing Wangd65eba62013-04-12 05:44:17 +0000773 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700774 int i;
775 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
776
Yijing Wangd65eba62013-04-12 05:44:17 +0000777 list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700778 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
779 struct resource *res = &dev->resource[i];
780 if ((res->flags & type_mask) && !res->start &&
781 res->end) {
782 /* Could not assign a required resources
783 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800784 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700785 break;
786 }
787 }
788 }
789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/*
792 * ACPI event handlers
793 */
794
Yinghai Lu3f327e32013-05-07 11:06:03 -0600795void acpiphp_check_host_bridge(acpi_handle handle)
796{
797 struct acpiphp_bridge *bridge;
798
799 bridge = acpiphp_handle_to_bridge(handle);
800 if (bridge) {
801 acpiphp_check_bridge(bridge);
802 put_bridge(bridge);
803 }
Yinghai Lu3f327e32013-05-07 11:06:03 -0600804}
805
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200806static void hotplug_event(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200808 struct acpiphp_context *context = data;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200809 struct acpiphp_func *func = &context->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct acpiphp_bridge *bridge;
811 char objname[64];
812 struct acpi_buffer buffer = { .length = sizeof(objname),
813 .pointer = objname };
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400814
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200815 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200816 bridge = context->bridge;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200817 if (bridge)
818 get_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200820 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
823
824 switch (type) {
825 case ACPI_NOTIFY_BUS_CHECK:
826 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800827 dbg("%s: Bus check notify on %s\n", __func__, objname);
Jiang Liube6d2862013-01-31 00:10:10 +0800828 dbg("%s: re-enumerating slots under %s\n", __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200829 if (bridge) {
830 acpiphp_check_bridge(bridge);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200831 } else {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200832 struct acpiphp_slot *slot = func->slot;
833
834 mutex_lock(&slot->crit_sect);
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +0200835 enable_slot(slot);
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200836 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839
840 case ACPI_NOTIFY_DEVICE_CHECK:
841 /* device check */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800842 dbg("%s: Device check notify on %s\n", __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200843 if (bridge)
844 acpiphp_check_bridge(bridge);
845 else
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200846 acpiphp_check_bridge(func->parent);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 break;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 case ACPI_NOTIFY_EJECT_REQUEST:
851 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800852 dbg("%s: Device eject notify on %s\n", __func__, objname);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200853 acpiphp_disable_and_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400856
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200857 if (bridge)
858 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200861static void hotplug_event_work(struct work_struct *work)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200862{
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200863 struct acpiphp_context *context;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200864 struct acpi_hp_work *hp_work;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200865
866 hp_work = container_of(work, struct acpi_hp_work, work);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200867 context = hp_work->context;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200868 acpi_scan_lock_acquire();
869
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200870 hotplug_event(hp_work->handle, hp_work->type, context);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400871
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100872 acpi_scan_lock_release();
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200873 acpi_evaluate_hotplug_ost(hp_work->handle, hp_work->type,
874 ACPI_OST_SC_SUCCESS, NULL);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200875 kfree(hp_work); /* allocated in handle_hotplug_event() */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200876 put_bridge(context->func.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400879/**
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200880 * handle_hotplug_event - handle ACPI hotplug event
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400881 * @handle: Notify()'ed acpi_handle
882 * @type: Notify code
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200883 * @data: pointer to acpiphp_context structure
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400884 *
885 * Handles ACPI event notification on slots.
886 */
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200887static void handle_hotplug_event(acpi_handle handle, u32 type, void *data)
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400888{
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200889 struct acpiphp_context *context;
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200890 u32 ost_code = ACPI_OST_SC_SUCCESS;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200891
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200892 switch (type) {
893 case ACPI_NOTIFY_BUS_CHECK:
894 case ACPI_NOTIFY_DEVICE_CHECK:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200895 break;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200896 case ACPI_NOTIFY_EJECT_REQUEST:
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200897 ost_code = ACPI_OST_SC_EJECT_IN_PROGRESS;
898 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200899 break;
900
901 case ACPI_NOTIFY_DEVICE_WAKE:
902 return;
903
904 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
905 acpi_handle_err(handle, "Device cannot be configured due "
906 "to a frequency mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200907 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200908
909 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
910 acpi_handle_err(handle, "Device cannot be configured due "
911 "to a bus mode mismatch\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200912 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200913
914 case ACPI_NOTIFY_POWER_FAULT:
915 acpi_handle_err(handle, "Device has suffered a power fault\n");
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200916 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200917
918 default:
919 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200920 ost_code = ACPI_OST_SC_UNRECOGNIZED_NOTIFY;
921 goto out;
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200922 }
923
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200924 mutex_lock(&acpiphp_context_lock);
925 context = acpiphp_get_context(handle);
926 if (context) {
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200927 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200928 acpiphp_put_context(context);
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200929 alloc_acpi_hp_work(handle, type, context, hotplug_event_work);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200930 mutex_unlock(&acpiphp_context_lock);
931 return;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200932 }
933 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockie532e842013-09-06 15:41:41 +0200934 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
935
936 out:
937 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700938}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000940/*
941 * Create hotplug slots for the PCI bus.
942 * It should always return 0 to avoid skipping following notifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200944void acpiphp_enumerate_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000946 struct acpiphp_bridge *bridge;
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +0200947 acpi_handle handle;
948 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000950 if (acpiphp_disabled)
951 return;
952
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200953 handle = ACPI_HANDLE(bus->bridge);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200954 if (!handle)
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000955 return;
956
957 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200958 if (!bridge) {
959 acpi_handle_err(handle, "No memory for bridge object\n");
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000960 return;
961 }
962
Yijing Wangad41dd92013-04-12 05:44:27 +0000963 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +0000964 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000965 bridge->pci_dev = pci_dev_get(bus->self);
966 bridge->pci_bus = bus;
967
968 /*
969 * Grab a ref to the subordinate PCI bus in case the bus is
970 * removed via PCI core logical hotplug. The ref pins the bus
971 * (which we access during module unload).
972 */
973 get_device(&bus->dev);
974
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200975 if (!pci_is_root_bus(bridge->pci_bus)) {
976 struct acpiphp_context *context;
977
978 /*
979 * This bridge should have been registered as a hotplug function
980 * under its parent, so the context has to be there. If not, we
981 * are in deep goo.
982 */
983 mutex_lock(&acpiphp_context_lock);
984 context = acpiphp_get_context(handle);
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200985 if (WARN_ON(!context)) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200986 mutex_unlock(&acpiphp_context_lock);
987 put_device(&bus->dev);
988 kfree(bridge);
989 return;
990 }
991 bridge->context = context;
992 context->bridge = bridge;
993 /* Get a reference to the parent bridge. */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200994 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200995 mutex_unlock(&acpiphp_context_lock);
996 }
997
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +0200998 /* must be added to the list prior to calling register_slot */
999 mutex_lock(&bridge_mutex);
1000 list_add(&bridge->list, &bridge_list);
1001 mutex_unlock(&bridge_mutex);
1002
1003 /* register all slot objects under this bridge */
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001004 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Rafael J. Wysocki2552002a2013-07-13 23:27:23 +02001005 register_slot, NULL, bridge, NULL);
1006 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001007 acpi_handle_err(handle, "failed to register slots\n");
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001008 cleanup_bridge(bridge);
1009 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001013/* Destroy hotplug slots associated with the PCI bus */
1014void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001016 struct acpiphp_bridge *bridge;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001017
1018 if (acpiphp_disabled)
1019 return;
1020
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001021 mutex_lock(&bridge_mutex);
1022 list_for_each_entry(bridge, &bridge_list, list)
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001023 if (bridge->pci_bus == bus) {
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001024 mutex_unlock(&bridge_mutex);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001025 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001026 put_bridge(bridge);
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001027 return;
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001028 }
Rafael J. Wysockiff181e52013-07-13 23:27:26 +02001029
1030 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/**
1034 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001035 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
1037int acpiphp_enable_slot(struct acpiphp_slot *slot)
1038{
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001039 mutex_lock(&slot->crit_sect);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001040 /* configure all functions */
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001041 if (!(slot->flags & SLOT_ENABLED))
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001042 enable_slot(slot);
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001043
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001044 mutex_unlock(&slot->crit_sect);
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001045 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/**
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001049 * acpiphp_disable_and_eject_slot - power off and eject slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001050 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 */
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001052int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001054 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 int retval = 0;
1056
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001057 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 /* unconfigure all functions */
Rafael J. Wysockia1d0abc2013-07-13 23:27:26 +02001060 disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001062 list_for_each_entry(func, &slot->funcs, sibling)
1063 if (func->flags & FUNC_HAS_EJ0) {
1064 acpi_handle handle = func_to_handle(func);
1065
1066 if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
1067 acpi_handle_err(handle, "_EJ0 failed\n");
1068
1069 break;
1070 }
1071
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001072 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return retval;
1074}
1075
1076
1077/*
1078 * slot enabled: 1
1079 * slot disabled: 0
1080 */
1081u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1082{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001083 return (slot->flags & SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
1086
1087/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001088 * latch open: 1
1089 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 */
1091u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1092{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001093 return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
1096
1097/*
1098 * adapter presence : 1
1099 * absence : 0
1100 */
1101u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1102{
Mika Westerberg1ad37902013-07-13 23:27:26 +02001103 return !!get_slot_status(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}