blob: e2e5e3088816b253b9910f483ffd19e377ed9af7 [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
326 mutex_lock(&bridge_mutex);
327 list_add_tail(&slot->node, &bridge->slots);
328 mutex_unlock(&bridge_mutex);
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200329
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200330 /* Register slots for ejectable funtions only. */
331 if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) {
332 unsigned long long sun;
333 int retval;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200334
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200335 bridge->nr_slots++;
336 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
337 if (ACPI_FAILURE(status))
338 sun = bridge->nr_slots;
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200339
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200340 dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n",
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200341 sun, pci_domain_nr(pbus), pbus->number, device);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200342
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200343 retval = acpiphp_register_hotplug_slot(slot, sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200344 if (retval) {
345 bridge->nr_slots--;
346 if (retval == -EBUSY)
347 warn("Slot %llu already registered by another "
Rafael J. Wysocki73427982013-07-13 23:27:25 +0200348 "hotplug driver\n", sun);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200349 else
350 warn("acpiphp_register_hotplug_slot failed "
351 "(err code = 0x%x)\n", retval);
352 }
353 /* Even if the slot registration fails, we can still use it. */
Rafael J. Wysockiac372332013-07-13 23:27:24 +0200354 }
355
356 slot_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 newfunc->slot = slot;
Jiang Liu3d54a312013-04-12 05:44:28 +0000358 mutex_lock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 list_add_tail(&newfunc->sibling, &slot->funcs);
Jiang Liu3d54a312013-04-12 05:44:28 +0000360 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000362 if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function),
363 &val, 60*1000))
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200364 slot->flags |= SLOT_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400366 if (is_dock_device(handle)) {
367 /* we don't want to call this device's _EJ0
368 * because we want the dock notify handler
369 * to call it after it calls _DCK
Kristen Accardi20416ea2006-02-23 17:56:03 -0800370 */
371 newfunc->flags &= ~FUNC_HAS_EJ0;
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400372 if (register_hotplug_dock_device(handle,
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200373 &acpiphp_dock_ops, context,
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200374 acpiphp_dock_init, acpiphp_dock_release))
Kristen Accardi4e8662b2006-06-28 03:08:06 -0400375 dbg("failed to register dock device\n");
Kristen Accardi20416ea2006-02-23 17:56:03 -0800376 }
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* install notify handler */
Kristen Accardi20416ea2006-02-23 17:56:03 -0800379 if (!(newfunc->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200380 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
381 handle_hotplug_event,
382 context);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200383 if (ACPI_FAILURE(status))
384 acpi_handle_err(handle,
385 "failed to install notify handler\n");
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Rafael J. Wysocki2e862c52013-07-13 23:27:23 +0200388 return AE_OK;
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800389
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200390 err:
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200391 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200392 acpiphp_put_context(context);
393 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200394 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Rajesh Shah42f49a62005-04-28 00:25:53 -0700397static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
398{
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200399 struct acpiphp_context *context;
400 struct acpiphp_bridge *bridge = NULL;
Alex Chiang58c08622009-10-26 21:25:27 -0600401
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200402 mutex_lock(&acpiphp_context_lock);
403 context = acpiphp_get_context(handle);
404 if (context) {
405 bridge = context->bridge;
406 if (bridge)
Jiang Liu3d54a312013-04-12 05:44:28 +0000407 get_bridge(bridge);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700408
Rafael J. Wysockied13feb2013-07-13 23:27:24 +0200409 acpiphp_put_context(context);
410 }
411 mutex_unlock(&acpiphp_context_lock);
412 return bridge;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Rajesh Shah364d5092005-04-28 00:25:54 -0700415static void cleanup_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Jiang Liu3d54a312013-04-12 05:44:28 +0000417 struct acpiphp_slot *slot;
418 struct acpiphp_func *func;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700419 acpi_status status;
Rajesh Shah42f49a62005-04-28 00:25:53 -0700420
Jiang Liu3d54a312013-04-12 05:44:28 +0000421 list_for_each_entry(slot, &bridge->slots, node) {
422 list_for_each_entry(func, &slot->funcs, sibling) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200423 acpi_handle handle = func_to_handle(func);
424
425 if (is_dock_device(handle))
426 unregister_hotplug_dock_device(handle);
427
Kristen Accardi20416ea2006-02-23 17:56:03 -0800428 if (!(func->flags & FUNC_HAS_DCK)) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200429 status = acpi_remove_notify_handler(handle,
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200430 ACPI_SYSTEM_NOTIFY,
431 handle_hotplug_event);
Kristen Accardi20416ea2006-02-23 17:56:03 -0800432 if (ACPI_FAILURE(status))
433 err("failed to remove notify handler\n");
434 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700435 }
MUNEDA Takahiroe27da382006-02-23 17:56:08 -0800436 acpiphp_unregister_hotplug_slot(slot);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700437 }
438
Jiang Liu3d54a312013-04-12 05:44:28 +0000439 mutex_lock(&bridge_mutex);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700440 list_del(&bridge->list);
Jiang Liu3d54a312013-04-12 05:44:28 +0000441 mutex_unlock(&bridge_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800444/**
Randy Dunlap26e6c662007-11-28 09:04:30 -0800445 * acpiphp_max_busnr - return the highest reserved bus number under the given bus.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800446 * @bus: bus to start search with
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800447 */
448static unsigned char acpiphp_max_busnr(struct pci_bus *bus)
449{
450 struct list_head *tmp;
451 unsigned char max, n;
452
453 /*
454 * pci_bus_max_busnr will return the highest
455 * reserved busnr for all these children.
456 * that is equivalent to the bus->subordinate
457 * value. We don't want to use the parent's
458 * bus->subordinate value because it could have
459 * padding in it.
460 */
Yinghai Lub918c622012-05-17 18:51:11 -0700461 max = bus->busn_res.start;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800462
463 list_for_each(tmp, &bus->children) {
464 n = pci_bus_max_busnr(pci_bus_b(tmp));
465 if (n > max)
466 max = n;
467 }
468 return max;
469}
470
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800471/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200472 * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree.
473 * @handle: ACPI device object handle to start from.
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800474 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200475static void acpiphp_bus_trim(acpi_handle handle)
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800476{
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200477 struct acpi_device *adev = NULL;
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800478
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200479 acpi_bus_get_device(handle, &adev);
480 if (adev)
481 acpi_bus_trim(adev);
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800482}
483
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900484/**
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200485 * acpiphp_bus_add - Scan ACPI namespace subtree.
486 * @handle: ACPI object handle to start the scan from.
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900487 */
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200488static void acpiphp_bus_add(acpi_handle handle)
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900489{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200490 struct acpi_device *adev = NULL;
491
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200492 acpiphp_bus_trim(handle);
493 acpi_bus_scan(handle);
Rafael J. Wysockibc805a52013-07-13 23:27:26 +0200494 acpi_bus_get_device(handle, &adev);
495 if (adev)
496 acpi_device_set_power(adev, ACPI_STATE_D0);
MUNEDA Takahiro92c9be92006-03-22 14:49:09 +0900497}
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800498
Shaohua Lid0607052010-02-25 10:59:34 +0800499static void acpiphp_set_acpi_region(struct acpiphp_slot *slot)
500{
501 struct acpiphp_func *func;
502 union acpi_object params[2];
503 struct acpi_object_list arg_list;
504
505 list_for_each_entry(func, &slot->funcs, sibling) {
506 arg_list.count = 2;
507 arg_list.pointer = params;
508 params[0].type = ACPI_TYPE_INTEGER;
509 params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG;
510 params[1].type = ACPI_TYPE_INTEGER;
511 params[1].integer.value = 1;
512 /* _REG is optional, we don't care about if there is failure */
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200513 acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list,
514 NULL);
Shaohua Lid0607052010-02-25 10:59:34 +0800515 }
516}
517
Yinghai Lu1f96a962013-01-21 13:20:42 -0800518static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev)
519{
520 struct acpiphp_func *func;
521
Yinghai Lu1f96a962013-01-21 13:20:42 -0800522 /* quirk, or pcie could set it already */
523 if (dev->is_hotplug_bridge)
524 return;
525
Yinghai Lu1f96a962013-01-21 13:20:42 -0800526 list_for_each_entry(func, &slot->funcs, sibling) {
527 if (PCI_FUNC(dev->devfn) == func->function) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200528 dev->is_hotplug_bridge = 1;
Yinghai Lu1f96a962013-01-21 13:20:42 -0800529 break;
530 }
531 }
532}
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/**
535 * enable_device - enable, configure a slot
536 * @slot: slot to be enabled
537 *
538 * This function should be called per *physical slot*,
539 * not per each slot object in ACPI namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
Sam Ravnborg0ab2b572008-02-17 10:45:28 +0100541static int __ref enable_device(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct pci_dev *dev;
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200544 struct pci_bus *bus = slot->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct acpiphp_func *func;
Kirill A. Shutemovb91182a2013-07-13 23:27:26 +0200546 int max, pass;
Jiang Liud66ecb72013-06-23 01:01:35 +0200547 LIST_HEAD(add_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Jiang Liu2ca344e2013-01-31 00:10:09 +0800549 list_for_each_entry(func, &slot->funcs, sibling)
Rafael J. Wysocki236e2622013-07-13 23:27:25 +0200550 acpiphp_bus_add(func_to_handle(func));
Jiang Liu2ca344e2013-01-31 00:10:09 +0800551
Kirill A. Shutemovb91182a2013-07-13 23:27:26 +0200552 pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Kristen Accardi15a1ae72006-02-23 17:55:58 -0800554 max = acpiphp_max_busnr(bus);
Rajesh Shah42f49a62005-04-28 00:25:53 -0700555 for (pass = 0; pass < 2; pass++) {
556 list_for_each_entry(dev, &bus->devices, bus_list) {
557 if (PCI_SLOT(dev->devfn) != slot->device)
558 continue;
559 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800560 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) {
Rajesh Shah42f49a62005-04-28 00:25:53 -0700561 max = pci_scan_bridge(bus, dev, max, pass);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800562 if (pass && dev->subordinate) {
563 check_hotplug_bridge(slot, dev);
Jiang Liud66ecb72013-06-23 01:01:35 +0200564 pcibios_resource_survey_bus(dev->subordinate);
565 __pci_bus_size_bridges(dev->subordinate,
566 &add_list);
Yinghai Lu1f96a962013-01-21 13:20:42 -0800567 }
Kristen Accardic64b5ee2005-12-14 09:37:26 -0800568 }
Rajesh Shah42f49a62005-04-28 00:25:53 -0700569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Jiang Liud66ecb72013-06-23 01:01:35 +0200572 __pci_bus_assign_resources(bus, &add_list, NULL);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700573 acpiphp_sanitize_bus(bus);
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600574 acpiphp_set_hpp_values(bus);
Shaohua Lid0607052010-02-25 10:59:34 +0800575 acpiphp_set_acpi_region(slot);
Kristen Accardi8e5dce32005-10-18 17:21:40 -0700576 pci_enable_bridges(bus);
Ian Campbell69643e42011-05-11 17:00:32 +0100577
578 list_for_each_entry(dev, &bus->devices, bus_list) {
579 /* Assume that newly added devices are powered on already. */
580 if (!dev->is_added)
581 dev->current_state = PCI_D0;
582 }
583
Rajesh Shah42f49a62005-04-28 00:25:53 -0700584 pci_bus_add_devices(bus);
585
Amos Kongf382a082011-11-25 15:03:07 +0800586 slot->flags |= SLOT_ENABLED;
Alex Chiang58c08622009-10-26 21:25:27 -0600587 list_for_each_entry(func, &slot->funcs, sibling) {
Alex Chiang9d911d72009-05-21 16:21:15 -0600588 dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
589 func->function));
Amos Kongf382a082011-11-25 15:03:07 +0800590 if (!dev) {
591 /* Do not set SLOT_ENABLED flag if some funcs
592 are not added. */
593 slot->flags &= (~SLOT_ENABLED);
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900594 continue;
Amos Kongf382a082011-11-25 15:03:07 +0800595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
Jiang Liu3d54a312013-04-12 05:44:28 +0000598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Amos Kongce29ca32012-05-23 10:20:35 -0600601/* return first device in slot, acquiring a reference on it */
602static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot)
603{
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200604 struct pci_bus *bus = slot->bus;
Amos Kongce29ca32012-05-23 10:20:35 -0600605 struct pci_dev *dev;
606 struct pci_dev *ret = NULL;
607
608 down_read(&pci_bus_sem);
609 list_for_each_entry(dev, &bus->devices, bus_list)
610 if (PCI_SLOT(dev->devfn) == slot->device) {
611 ret = pci_dev_get(dev);
612 break;
613 }
614 up_read(&pci_bus_sem);
615
616 return ret;
617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/**
620 * disable_device - disable a slot
Randy Dunlap26e6c662007-11-28 09:04:30 -0800621 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
623static int disable_device(struct acpiphp_slot *slot)
624{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct acpiphp_func *func;
Alex Chiang9d911d72009-05-21 16:21:15 -0600626 struct pci_dev *pdev;
MUNEDA Takahiro551bcb72006-03-22 14:49:20 +0900627
Amos Kongce29ca32012-05-23 10:20:35 -0600628 /*
629 * enable_device() enumerates all functions in this device via
630 * pci_scan_slot(), whether they have associated ACPI hotplug
631 * methods (_EJ0, etc.) or not. Therefore, we remove all functions
632 * here.
633 */
634 while ((pdev = dev_in_slot(slot))) {
Bjorn Helgaas34e54842012-08-17 10:03:47 -0600635 pci_stop_and_remove_bus_device(pdev);
Amos Kongce29ca32012-05-23 10:20:35 -0600636 pci_dev_put(pdev);
Satoru Takeuchi600812e2006-09-12 10:22:53 -0700637 }
Satoru Takeuchi0dad3512006-09-12 10:17:46 -0700638
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200639 list_for_each_entry(func, &slot->funcs, sibling)
640 acpiphp_bus_trim(func_to_handle(func));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 slot->flags &= (~SLOT_ENABLED);
643
Alex Chiang9d911d72009-05-21 16:21:15 -0600644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647
648/**
649 * get_slot_status - get ACPI slot status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800650 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800652 * If a slot has _STA for each function and if any one of them
653 * returned non-zero status, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800655 * If a slot doesn't have _STA and if any one of its functions'
656 * configuration space is configured, return 0x0f as a _STA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800658 * Otherwise return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 */
660static unsigned int get_slot_status(struct acpiphp_slot *slot)
661{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400662 unsigned long long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 struct acpiphp_func *func;
664
Alex Chiang58c08622009-10-26 21:25:27 -0600665 list_for_each_entry(func, &slot->funcs, sibling) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (func->flags & FUNC_HAS_STA) {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200667 acpi_status status;
668
669 status = acpi_evaluate_integer(func_to_handle(func),
670 "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (ACPI_SUCCESS(status) && sta)
672 break;
673 } else {
Rafael J. Wysocki5a3bc572013-07-13 23:27:25 +0200674 u32 dvid;
675
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200676 pci_bus_read_config_dword(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 PCI_DEVFN(slot->device,
678 func->function),
679 PCI_VENDOR_ID, &dvid);
680 if (dvid != 0xffffffff) {
681 sta = ACPI_STA_ALL;
682 break;
683 }
684 }
685 }
686
687 return (unsigned int)sta;
688}
689
690/**
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200691 * trim_stale_devices - remove PCI devices that are not responding.
692 * @dev: PCI device to start walking the hierarchy from.
693 */
694static void trim_stale_devices(struct pci_dev *dev)
695{
696 acpi_handle handle = ACPI_HANDLE(&dev->dev);
697 struct pci_bus *bus = dev->subordinate;
698 bool alive = false;
699
700 if (handle) {
701 acpi_status status;
702 unsigned long long sta;
703
704 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
705 alive = ACPI_SUCCESS(status) && sta == ACPI_STA_ALL;
706 }
707 if (!alive) {
708 u32 v;
709
710 /* Check if the device responds. */
711 alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0);
712 }
713 if (!alive) {
714 pci_stop_and_remove_bus_device(dev);
715 if (handle)
716 acpiphp_bus_trim(handle);
717 } else if (bus) {
718 struct pci_dev *child, *tmp;
719
720 /* The device is a bridge. so check the bus below it. */
721 pm_runtime_get_sync(&dev->dev);
722 list_for_each_entry_safe(child, tmp, &bus->devices, bus_list)
723 trim_stale_devices(child);
724
725 pm_runtime_put(&dev->dev);
726 }
727}
728
729/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * acpiphp_check_bridge - re-enumerate devices
Randy Dunlap26e6c662007-11-28 09:04:30 -0800731 * @bridge: where to begin re-enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 *
733 * Iterate over all slots under this bridge and make sure that if a
734 * card is present they are enabled, and if not they are disabled.
735 */
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200736static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct acpiphp_slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Yijing Wangad41dd92013-04-12 05:44:27 +0000740 list_for_each_entry(slot, &bridge->slots, node) {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200741 struct pci_bus *bus = slot->bus;
742 struct pci_dev *dev, *tmp;
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200743
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200744 mutex_lock(&slot->crit_sect);
745 /* wake up all functions */
746 if (get_slot_status(slot) == ACPI_STA_ALL) {
747 /* remove stale devices if any */
748 list_for_each_entry_safe(dev, tmp, &bus->devices,
749 bus_list)
750 if (PCI_SLOT(dev->devfn) == slot->device)
751 trim_stale_devices(dev);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200752
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200753 /* configure all functions */
754 enable_device(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 } else {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200756 disable_device(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200758 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Bjorn Helgaasfca68252009-09-14 16:35:10 -0600762static void acpiphp_set_hpp_values(struct pci_bus *bus)
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700763{
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700764 struct pci_dev *dev;
765
Bjorn Helgaase81995b2009-09-14 16:35:35 -0600766 list_for_each_entry(dev, &bus->devices, bus_list)
767 pci_configure_slot(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700768}
769
770/*
771 * Remove devices for which we could not assign resources, call
772 * arch specific code to fix-up the bus
773 */
774static void acpiphp_sanitize_bus(struct pci_bus *bus)
775{
Yijing Wangd65eba62013-04-12 05:44:17 +0000776 struct pci_dev *dev, *tmp;
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700777 int i;
778 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
779
Yijing Wangd65eba62013-04-12 05:44:17 +0000780 list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700781 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
782 struct resource *res = &dev->resource[i];
783 if ((res->flags & type_mask) && !res->start &&
784 res->end) {
785 /* Could not assign a required resources
786 * for this device, remove it */
Yinghai Lu210647a2012-02-25 13:54:20 -0800787 pci_stop_and_remove_bus_device(dev);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700788 break;
789 }
790 }
791 }
792}
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794/*
795 * ACPI event handlers
796 */
797
Gary Hade0bbd6422007-07-05 11:10:48 -0700798static acpi_status
Gary Hade0bbd6422007-07-05 11:10:48 -0700799check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
800{
801 struct acpiphp_bridge *bridge;
802 char objname[64];
803 struct acpi_buffer buffer = { .length = sizeof(objname),
804 .pointer = objname };
805
806 bridge = acpiphp_handle_to_bridge(handle);
807 if (bridge) {
808 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
809 dbg("%s: re-enumerating slots under %s\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800810 __func__, objname);
Gary Hade0bbd6422007-07-05 11:10:48 -0700811 acpiphp_check_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +0000812 put_bridge(bridge);
Gary Hade0bbd6422007-07-05 11:10:48 -0700813 }
814 return AE_OK ;
815}
816
Yinghai Lu3f327e32013-05-07 11:06:03 -0600817void acpiphp_check_host_bridge(acpi_handle handle)
818{
819 struct acpiphp_bridge *bridge;
820
821 bridge = acpiphp_handle_to_bridge(handle);
822 if (bridge) {
823 acpiphp_check_bridge(bridge);
824 put_bridge(bridge);
825 }
826
827 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
828 ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL);
829}
830
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200831static void hotplug_event(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200833 struct acpiphp_context *context = data;
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +0200834 struct acpiphp_func *func = &context->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct acpiphp_bridge *bridge;
836 char objname[64];
837 struct acpi_buffer buffer = { .length = sizeof(objname),
838 .pointer = objname };
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400839
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200840 mutex_lock(&acpiphp_context_lock);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200841 bridge = context->bridge;
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200842 if (bridge)
843 get_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200845 mutex_unlock(&acpiphp_context_lock);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
848
849 switch (type) {
850 case ACPI_NOTIFY_BUS_CHECK:
851 /* bus re-enumerate */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800852 dbg("%s: Bus check notify on %s\n", __func__, objname);
Jiang Liube6d2862013-01-31 00:10:10 +0800853 dbg("%s: re-enumerating slots under %s\n", __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200854 if (bridge) {
855 acpiphp_check_bridge(bridge);
856 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
857 ACPI_UINT32_MAX, check_sub_bridges,
858 NULL, NULL, NULL);
859 } else {
Rafael J. Wysocki4ebe3452013-07-16 22:10:35 +0200860 struct acpiphp_slot *slot = func->slot;
861
862 mutex_lock(&slot->crit_sect);
863 enable_device(slot);
864 mutex_unlock(&slot->crit_sect);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 break;
867
868 case ACPI_NOTIFY_DEVICE_CHECK:
869 /* device check */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800870 dbg("%s: Device check notify on %s\n", __func__, objname);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200871 if (bridge)
872 acpiphp_check_bridge(bridge);
873 else
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200874 acpiphp_check_bridge(func->parent);
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 break;
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 case ACPI_NOTIFY_EJECT_REQUEST:
879 /* request device eject */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800880 dbg("%s: Device eject notify on %s\n", __func__, objname);
Mika Westerbergad21d2d2013-07-13 23:27:26 +0200881 acpiphp_disable_and_eject_slot(func->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400884
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200885 if (bridge)
886 put_bridge(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200889static void hotplug_event_work(struct work_struct *work)
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200890{
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200891 struct acpiphp_context *context;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200892 struct acpi_hp_work *hp_work;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200893
894 hp_work = container_of(work, struct acpi_hp_work, work);
Rafael J. Wysockic8ebcf12013-07-13 23:27:24 +0200895 context = hp_work->context;
Rafael J. Wysocki21a31012013-06-24 11:22:53 +0200896 acpi_scan_lock_acquire();
897
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200898 hotplug_event(hp_work->handle, hp_work->type, context);
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400899
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100900 acpi_scan_lock_release();
Rafael J. Wysocki43e5c092013-07-13 23:27:24 +0200901 kfree(hp_work); /* allocated in handle_hotplug_event() */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200902 put_bridge(context->func.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400905/**
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200906 * handle_hotplug_event - handle ACPI hotplug event
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400907 * @handle: Notify()'ed acpi_handle
908 * @type: Notify code
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200909 * @data: pointer to acpiphp_context structure
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400910 *
911 * Handles ACPI event notification on slots.
912 */
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200913static void handle_hotplug_event(acpi_handle handle, u32 type, void *data)
Prarit Bhargava6af8bef2011-09-28 19:40:53 -0400914{
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200915 struct acpiphp_context *context;
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200916
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200917 switch (type) {
918 case ACPI_NOTIFY_BUS_CHECK:
919 case ACPI_NOTIFY_DEVICE_CHECK:
920 case ACPI_NOTIFY_EJECT_REQUEST:
921 break;
922
923 case ACPI_NOTIFY_DEVICE_WAKE:
924 return;
925
926 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
927 acpi_handle_err(handle, "Device cannot be configured due "
928 "to a frequency mismatch\n");
929 return;
930
931 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
932 acpi_handle_err(handle, "Device cannot be configured due "
933 "to a bus mode mismatch\n");
934 return;
935
936 case ACPI_NOTIFY_POWER_FAULT:
937 acpi_handle_err(handle, "Device has suffered a power fault\n");
938 return;
939
940 default:
941 acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type);
942 return;
943 }
944
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200945 mutex_lock(&acpiphp_context_lock);
946 context = acpiphp_get_context(handle);
947 if (context) {
Rafael J. Wysockibda46db2013-07-13 23:27:25 +0200948 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200949 acpiphp_put_context(context);
Rafael J. Wysocki5c8d0e12013-07-13 23:27:26 +0200950 alloc_acpi_hp_work(handle, type, context, hotplug_event_work);
Rafael J. Wysocki87831272013-07-13 23:27:24 +0200951 }
952 mutex_unlock(&acpiphp_context_lock);
Rajesh Shah8e7561c2005-04-28 00:25:56 -0700953}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000955/*
956 * Create hotplug slots for the PCI bus.
957 * It should always return 0 to avoid skipping following notifiers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200959void acpiphp_enumerate_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000961 struct acpiphp_bridge *bridge;
Rafael J. Wysocki25520022013-07-13 23:27:23 +0200962 acpi_handle handle;
963 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000965 if (acpiphp_disabled)
966 return;
967
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200968 handle = ACPI_HANDLE(bus->bridge);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200969 if (!handle)
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000970 return;
971
972 bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
Rafael J. Wysockicb7b8ce2013-07-13 23:27:24 +0200973 if (!bridge) {
974 acpi_handle_err(handle, "No memory for bridge object\n");
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000975 return;
976 }
977
Yijing Wangad41dd92013-04-12 05:44:27 +0000978 INIT_LIST_HEAD(&bridge->slots);
Jiang Liu3d54a312013-04-12 05:44:28 +0000979 kref_init(&bridge->ref);
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000980 bridge->pci_dev = pci_dev_get(bus->self);
981 bridge->pci_bus = bus;
982
983 /*
984 * Grab a ref to the subordinate PCI bus in case the bus is
985 * removed via PCI core logical hotplug. The ref pins the bus
986 * (which we access during module unload).
987 */
988 get_device(&bus->dev);
989
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +0200990 if (!pci_is_root_bus(bridge->pci_bus)) {
991 struct acpiphp_context *context;
992
993 /*
994 * This bridge should have been registered as a hotplug function
995 * under its parent, so the context has to be there. If not, we
996 * are in deep goo.
997 */
998 mutex_lock(&acpiphp_context_lock);
999 context = acpiphp_get_context(handle);
Rafael J. Wysockibd4674d2013-07-13 23:27:25 +02001000 if (WARN_ON(!context)) {
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001001 mutex_unlock(&acpiphp_context_lock);
1002 put_device(&bus->dev);
1003 kfree(bridge);
1004 return;
1005 }
1006 bridge->context = context;
1007 context->bridge = bridge;
1008 /* Get a reference to the parent bridge. */
Rafael J. Wysockibda46db2013-07-13 23:27:25 +02001009 get_bridge(context->func.parent);
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001010 mutex_unlock(&acpiphp_context_lock);
1011 }
1012
Rafael J. Wysocki25520022013-07-13 23:27:23 +02001013 /* must be added to the list prior to calling register_slot */
1014 mutex_lock(&bridge_mutex);
1015 list_add(&bridge->list, &bridge_list);
1016 mutex_unlock(&bridge_mutex);
1017
1018 /* register all slot objects under this bridge */
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001019 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Rafael J. Wysocki25520022013-07-13 23:27:23 +02001020 register_slot, NULL, bridge, NULL);
1021 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki89373a52013-07-13 23:27:25 +02001022 acpi_handle_err(handle, "failed to register slots\n");
Rafael J. Wysockibbd34fc2013-07-13 23:27:24 +02001023 cleanup_bridge(bridge);
1024 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001028/* Destroy hotplug slots associated with the PCI bus */
1029void acpiphp_remove_slots(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001031 struct acpiphp_bridge *bridge, *tmp;
1032
1033 if (acpiphp_disabled)
1034 return;
1035
1036 list_for_each_entry_safe(bridge, tmp, &bridge_list, list)
1037 if (bridge->pci_bus == bus) {
1038 cleanup_bridge(bridge);
Jiang Liu3d54a312013-04-12 05:44:28 +00001039 put_bridge(bridge);
Jiang Liu3b63aaa2013-04-12 05:44:26 +00001040 break;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044/**
1045 * acpiphp_enable_slot - power on slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001046 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 */
1048int acpiphp_enable_slot(struct acpiphp_slot *slot)
1049{
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001050 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001052 mutex_lock(&slot->crit_sect);
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001053
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001054 /* configure all functions */
Kirill A. Shutemov55502dd2013-07-13 23:27:26 +02001055 if (!(slot->flags & SLOT_ENABLED))
1056 retval = enable_device(slot);
1057
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001058 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return retval;
1060}
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062/**
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001063 * acpiphp_disable_and_eject_slot - power off and eject slot
Randy Dunlap26e6c662007-11-28 09:04:30 -08001064 * @slot: ACPI PHP slot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001066int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001068 struct acpiphp_func *func;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int retval = 0;
1070
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001071 mutex_lock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 /* unconfigure all functions */
1074 retval = disable_device(slot);
1075 if (retval)
1076 goto err_exit;
1077
Mika Westerbergad21d2d2013-07-13 23:27:26 +02001078 list_for_each_entry(func, &slot->funcs, sibling)
1079 if (func->flags & FUNC_HAS_EJ0) {
1080 acpi_handle handle = func_to_handle(func);
1081
1082 if (ACPI_FAILURE(acpi_evaluate_ej0(handle)))
1083 acpi_handle_err(handle, "_EJ0 failed\n");
1084
1085 break;
1086 }
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 err_exit:
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001089 mutex_unlock(&slot->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return retval;
1091}
1092
1093
1094/*
1095 * slot enabled: 1
1096 * slot disabled: 0
1097 */
1098u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1099{
Rafael J. Wysockibc805a52013-07-13 23:27:26 +02001100 return (slot->flags & SLOT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103
1104/*
MUNEDA Takahiro35ae61a2006-10-25 11:44:57 -07001105 * latch open: 1
1106 * latch closed: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
1108u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1109{
1110 unsigned int sta;
1111
1112 sta = get_slot_status(slot);
1113
Jiang Liuce15d872013-04-12 05:44:19 +00001114 return (sta & ACPI_STA_DEVICE_UI) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
1117
1118/*
1119 * adapter presence : 1
1120 * absence : 0
1121 */
1122u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1123{
1124 unsigned int sta;
1125
1126 sta = get_slot_status(slot);
1127
1128 return (sta == 0) ? 0 : 1;
1129}