Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 7 | * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com) |
| 8 | * Copyright (C) 2003-2005 Hewlett Packard |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 9 | * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com) |
| 10 | * Copyright (C) 2005 Intel Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 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 Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 29 | * Send feedback to <kristen.c.accardi@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * |
| 31 | */ |
| 32 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 33 | /* |
| 34 | * Lifetime rules for pci_dev: |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 35 | * - 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 Chiang | 5d4a4b2 | 2009-03-30 10:50:14 -0600 | [diff] [blame] | 38 | * - 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 Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 40 | */ |
| 41 | |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 42 | #define pr_fmt(fmt) "acpiphp_glue: " fmt |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/init.h> |
| 45 | #include <linux/module.h> |
| 46 | |
| 47 | #include <linux/kernel.h> |
| 48 | #include <linux/pci.h> |
Greg Kroah-Hartman | 7a54f25 | 2006-10-13 20:05:19 -0700 | [diff] [blame] | 49 | #include <linux/pci_hotplug.h> |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 50 | #include <linux/pci-acpi.h> |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 51 | #include <linux/pm_runtime.h> |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 52 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 53 | #include <linux/slab.h> |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 54 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | #include "../pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include "acpiphp.h" |
| 58 | |
| 59 | static LIST_HEAD(bridge_list); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 60 | static DEFINE_MUTEX(bridge_mutex); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 61 | static DEFINE_MUTEX(acpiphp_context_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 63 | static void handle_hotplug_event(acpi_handle handle, u32 type, void *data); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 64 | static void acpiphp_sanitize_bus(struct pci_bus *bus); |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 65 | static void acpiphp_set_hpp_values(struct pci_bus *bus); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 66 | static void hotplug_event(acpi_handle handle, u32 type, void *data); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 67 | static void free_bridge(struct kref *kref); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 68 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 69 | static 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 | */ |
| 80 | static 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 | */ |
| 105 | static 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 | */ |
| 127 | static void acpiphp_put_context(struct acpiphp_context *context) |
| 128 | { |
| 129 | if (--context->refcount) |
| 130 | return; |
| 131 | |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 132 | WARN_ON(context->bridge); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 133 | acpi_detach_data(context->handle, acpiphp_context_handler); |
| 134 | kfree(context); |
| 135 | } |
| 136 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 137 | static inline void get_bridge(struct acpiphp_bridge *bridge) |
| 138 | { |
| 139 | kref_get(&bridge->ref); |
| 140 | } |
| 141 | |
| 142 | static inline void put_bridge(struct acpiphp_bridge *bridge) |
| 143 | { |
| 144 | kref_put(&bridge->ref, free_bridge); |
| 145 | } |
| 146 | |
| 147 | static void free_bridge(struct kref *kref) |
| 148 | { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 149 | struct acpiphp_context *context; |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 150 | struct acpiphp_bridge *bridge; |
| 151 | struct acpiphp_slot *slot, *next; |
| 152 | struct acpiphp_func *func, *tmp; |
| 153 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 154 | mutex_lock(&acpiphp_context_lock); |
| 155 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 156 | bridge = container_of(kref, struct acpiphp_bridge, ref); |
| 157 | |
| 158 | list_for_each_entry_safe(slot, next, &bridge->slots, node) { |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 159 | list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) |
| 160 | acpiphp_put_context(func_to_context(func)); |
| 161 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 162 | kfree(slot); |
| 163 | } |
| 164 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 165 | context = bridge->context; |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 166 | /* Root bridges will not have hotplug context. */ |
| 167 | if (context) { |
| 168 | /* Release the reference taken by acpiphp_enumerate_slots(). */ |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 169 | put_bridge(context->func.parent); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 170 | context->bridge = NULL; |
| 171 | acpiphp_put_context(context); |
| 172 | } |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 173 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 174 | put_device(&bridge->pci_bus->dev); |
| 175 | pci_dev_put(bridge->pci_dev); |
| 176 | kfree(bridge); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 177 | |
| 178 | mutex_unlock(&acpiphp_context_lock); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 181 | /* |
| 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. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 188 | static void post_dock_fixups(acpi_handle not_used, u32 event, void *data) |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 189 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 190 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 191 | struct pci_bus *bus = context->func.slot->bus; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 192 | u32 buses; |
| 193 | |
| 194 | if (!bus->self) |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 195 | return; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 196 | |
| 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 Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 204 | if (((buses >> 8) & 0xff) != bus->busn_res.start) { |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 205 | buses = (buses & 0xff000000) |
Alex Chiang | 2a9d352 | 2008-12-11 11:17:55 -0700 | [diff] [blame] | 206 | | ((unsigned int)(bus->primary) << 0) |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 207 | | ((unsigned int)(bus->busn_res.start) << 8) |
| 208 | | ((unsigned int)(bus->busn_res.end) << 16); |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 209 | pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses); |
| 210 | } |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 211 | } |
| 212 | |
Rafael J. Wysocki | af9d8ad | 2014-02-03 22:30:15 +0100 | [diff] [blame] | 213 | static void dock_event(acpi_handle handle, u32 type, void *data) |
| 214 | { |
| 215 | struct acpiphp_context *context; |
| 216 | |
| 217 | mutex_lock(&acpiphp_context_lock); |
| 218 | context = acpiphp_get_context(handle); |
| 219 | if (!context || WARN_ON(context->handle != handle) |
| 220 | || context->func.parent->is_going_away) { |
| 221 | mutex_unlock(&acpiphp_context_lock); |
| 222 | return; |
| 223 | } |
| 224 | get_bridge(context->func.parent); |
| 225 | acpiphp_put_context(context); |
| 226 | mutex_unlock(&acpiphp_context_lock); |
| 227 | |
| 228 | hotplug_event(handle, type, data); |
| 229 | |
| 230 | put_bridge(context->func.parent); |
| 231 | } |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 232 | |
Vasiliy Kulikov | 9c8b04b | 2011-06-25 21:07:52 +0400 | [diff] [blame] | 233 | static const struct acpi_dock_ops acpiphp_dock_ops = { |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 234 | .fixup = post_dock_fixups, |
Rafael J. Wysocki | af9d8ad | 2014-02-03 22:30:15 +0100 | [diff] [blame] | 235 | .handler = dock_event, |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 236 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Jiang Liu | 5ba113f | 2012-08-22 23:16:45 +0800 | [diff] [blame] | 238 | /* Check whether the PCI device is managed by native PCIe hotplug driver */ |
| 239 | static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev) |
| 240 | { |
| 241 | u32 reg32; |
| 242 | acpi_handle tmp; |
| 243 | struct acpi_pci_root *root; |
| 244 | |
| 245 | /* Check whether the PCIe port supports native PCIe hotplug */ |
| 246 | if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, ®32)) |
| 247 | return false; |
| 248 | if (!(reg32 & PCI_EXP_SLTCAP_HPC)) |
| 249 | return false; |
| 250 | |
| 251 | /* |
| 252 | * Check whether native PCIe hotplug has been enabled for |
| 253 | * this PCIe hierarchy. |
| 254 | */ |
| 255 | tmp = acpi_find_root_bridge_handle(pdev); |
| 256 | if (!tmp) |
| 257 | return false; |
| 258 | root = acpi_pci_find_root(tmp); |
| 259 | if (!root) |
| 260 | return false; |
| 261 | if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL)) |
| 262 | return false; |
| 263 | |
| 264 | return true; |
| 265 | } |
| 266 | |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 267 | static void acpiphp_dock_init(void *data) |
| 268 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 269 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 270 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 271 | get_bridge(context->func.parent); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | static void acpiphp_dock_release(void *data) |
| 275 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 276 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 277 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 278 | put_bridge(context->func.parent); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 279 | } |
| 280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | /* callback routine to register each ACPI PCI slot object */ |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 282 | static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data, |
| 283 | void **rv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 285 | struct acpiphp_bridge *bridge = data; |
| 286 | struct acpiphp_context *context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | struct acpiphp_slot *slot; |
| 288 | struct acpiphp_func *newfunc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | acpi_status status = AE_OK; |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 290 | unsigned long long adr; |
| 291 | int device, function; |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 292 | struct pci_bus *pbus = bridge->pci_bus; |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 293 | struct pci_dev *pdev = bridge->pci_dev; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 294 | u32 val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 296 | if (pdev && device_is_managed_by_native_pciehp(pdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | return AE_OK; |
| 298 | |
Bjorn Helgaas | dfb117b | 2012-06-20 16:18:29 -0600 | [diff] [blame] | 299 | status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); |
| 300 | if (ACPI_FAILURE(status)) { |
Toshi Kani | f26ca1d | 2013-11-27 13:33:09 -0700 | [diff] [blame] | 301 | if (status != AE_NOT_FOUND) |
| 302 | acpi_handle_warn(handle, |
| 303 | "can't evaluate _ADR (%#x)\n", status); |
Bjorn Helgaas | dfb117b | 2012-06-20 16:18:29 -0600 | [diff] [blame] | 304 | return AE_OK; |
| 305 | } |
| 306 | |
| 307 | device = (adr >> 16) & 0xffff; |
| 308 | function = adr & 0xffff; |
| 309 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 310 | mutex_lock(&acpiphp_context_lock); |
| 311 | context = acpiphp_init_context(handle); |
| 312 | if (!context) { |
| 313 | mutex_unlock(&acpiphp_context_lock); |
| 314 | acpi_handle_err(handle, "No hotplug context\n"); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 315 | return AE_NOT_EXIST; |
| 316 | } |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 317 | newfunc = &context->func; |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 318 | newfunc->function = function; |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 319 | newfunc->parent = bridge; |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 320 | mutex_unlock(&acpiphp_context_lock); |
| 321 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 322 | if (acpi_has_method(handle, "_EJ0")) |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 323 | newfunc->flags = FUNC_HAS_EJ0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 325 | if (acpi_has_method(handle, "_STA")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | newfunc->flags |= FUNC_HAS_STA; |
| 327 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 328 | if (acpi_has_method(handle, "_DCK")) |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 329 | newfunc->flags |= FUNC_HAS_DCK; |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | /* search for objects that share the same slot */ |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 332 | list_for_each_entry(slot, &bridge->slots, node) |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 333 | if (slot->device == device) |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 334 | goto slot_found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 336 | slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL); |
| 337 | if (!slot) { |
Rafael J. Wysocki | 146fc68 | 2014-02-04 00:38:15 +0100 | [diff] [blame] | 338 | mutex_lock(&acpiphp_context_lock); |
| 339 | acpiphp_put_context(context); |
| 340 | mutex_unlock(&acpiphp_context_lock); |
| 341 | return AE_NO_MEMORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 344 | slot->bus = bridge->pci_bus; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 345 | slot->device = device; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 346 | INIT_LIST_HEAD(&slot->funcs); |
| 347 | mutex_init(&slot->crit_sect); |
| 348 | |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 349 | list_add_tail(&slot->node, &bridge->slots); |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 350 | |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 351 | /* Register slots for ejectable functions only. */ |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 352 | if (acpi_pci_check_ejectable(pbus, handle) || is_dock_device(handle)) { |
| 353 | unsigned long long sun; |
| 354 | int retval; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 355 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 356 | bridge->nr_slots++; |
| 357 | status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun); |
| 358 | if (ACPI_FAILURE(status)) |
| 359 | sun = bridge->nr_slots; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 360 | |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 361 | pr_debug("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n", |
Rafael J. Wysocki | 7342798 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 362 | sun, pci_domain_nr(pbus), pbus->number, device); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 363 | |
Rafael J. Wysocki | 7342798 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 364 | retval = acpiphp_register_hotplug_slot(slot, sun); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 365 | if (retval) { |
Rafael J. Wysocki | 1aaac07 | 2013-08-17 22:16:33 +0200 | [diff] [blame] | 366 | slot->slot = NULL; |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 367 | bridge->nr_slots--; |
| 368 | if (retval == -EBUSY) |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 369 | pr_warn("Slot %llu already registered by another " |
Rafael J. Wysocki | 7342798 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 370 | "hotplug driver\n", sun); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 371 | else |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 372 | pr_warn("acpiphp_register_hotplug_slot failed " |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 373 | "(err code = 0x%x)\n", retval); |
| 374 | } |
| 375 | /* Even if the slot registration fails, we can still use it. */ |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | slot_found: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | newfunc->slot = slot; |
| 380 | list_add_tail(&newfunc->sibling, &slot->funcs); |
| 381 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 382 | if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function), |
| 383 | &val, 60*1000)) |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 384 | slot->flags |= SLOT_ENABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 386 | if (is_dock_device(handle)) { |
| 387 | /* we don't want to call this device's _EJ0 |
| 388 | * because we want the dock notify handler |
| 389 | * to call it after it calls _DCK |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 390 | */ |
| 391 | newfunc->flags &= ~FUNC_HAS_EJ0; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 392 | if (register_hotplug_dock_device(handle, |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 393 | &acpiphp_dock_ops, context, |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 394 | acpiphp_dock_init, acpiphp_dock_release)) |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 395 | pr_debug("failed to register dock device\n"); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 396 | } |
| 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | /* install notify handler */ |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 399 | if (!(newfunc->flags & FUNC_HAS_DCK)) { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 400 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
| 401 | handle_hotplug_event, |
| 402 | context); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 403 | if (ACPI_FAILURE(status)) |
| 404 | acpi_handle_err(handle, |
| 405 | "failed to install notify handler\n"); |
Rafael J. Wysocki | 2e862c5 | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 406 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Rafael J. Wysocki | 2e862c5 | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 408 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 411 | static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle) |
| 412 | { |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 413 | struct acpiphp_context *context; |
| 414 | struct acpiphp_bridge *bridge = NULL; |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 415 | |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 416 | mutex_lock(&acpiphp_context_lock); |
| 417 | context = acpiphp_get_context(handle); |
| 418 | if (context) { |
| 419 | bridge = context->bridge; |
| 420 | if (bridge) |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 421 | get_bridge(bridge); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 422 | |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 423 | acpiphp_put_context(context); |
| 424 | } |
| 425 | mutex_unlock(&acpiphp_context_lock); |
| 426 | return bridge; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 427 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Rajesh Shah | 364d509 | 2005-04-28 00:25:54 -0700 | [diff] [blame] | 429 | static void cleanup_bridge(struct acpiphp_bridge *bridge) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 431 | struct acpiphp_slot *slot; |
| 432 | struct acpiphp_func *func; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 433 | acpi_status status; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 434 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 435 | list_for_each_entry(slot, &bridge->slots, node) { |
| 436 | list_for_each_entry(func, &slot->funcs, sibling) { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 437 | acpi_handle handle = func_to_handle(func); |
| 438 | |
| 439 | if (is_dock_device(handle)) |
| 440 | unregister_hotplug_dock_device(handle); |
| 441 | |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 442 | if (!(func->flags & FUNC_HAS_DCK)) { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 443 | status = acpi_remove_notify_handler(handle, |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 444 | ACPI_SYSTEM_NOTIFY, |
| 445 | handle_hotplug_event); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 446 | if (ACPI_FAILURE(status)) |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 447 | pr_err("failed to remove notify handler\n"); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 448 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 449 | } |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 450 | slot->flags |= SLOT_IS_GOING_AWAY; |
Rafael J. Wysocki | 1aaac07 | 2013-08-17 22:16:33 +0200 | [diff] [blame] | 451 | if (slot->slot) |
| 452 | acpiphp_unregister_hotplug_slot(slot); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 453 | } |
| 454 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 455 | mutex_lock(&bridge_mutex); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 456 | list_del(&bridge->list); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 457 | mutex_unlock(&bridge_mutex); |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 458 | |
Rafael J. Wysocki | 1b360f4 | 2014-02-03 22:30:06 +0100 | [diff] [blame] | 459 | mutex_lock(&acpiphp_context_lock); |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 460 | bridge->is_going_away = true; |
Rafael J. Wysocki | 1b360f4 | 2014-02-03 22:30:06 +0100 | [diff] [blame] | 461 | mutex_unlock(&acpiphp_context_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 464 | /** |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 465 | * acpiphp_max_busnr - return the highest reserved bus number under the given bus. |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 466 | * @bus: bus to start search with |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 467 | */ |
| 468 | static unsigned char acpiphp_max_busnr(struct pci_bus *bus) |
| 469 | { |
| 470 | struct list_head *tmp; |
| 471 | unsigned char max, n; |
| 472 | |
| 473 | /* |
| 474 | * pci_bus_max_busnr will return the highest |
| 475 | * reserved busnr for all these children. |
| 476 | * that is equivalent to the bus->subordinate |
| 477 | * value. We don't want to use the parent's |
| 478 | * bus->subordinate value because it could have |
| 479 | * padding in it. |
| 480 | */ |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 481 | max = bus->busn_res.start; |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 482 | |
| 483 | list_for_each(tmp, &bus->children) { |
| 484 | n = pci_bus_max_busnr(pci_bus_b(tmp)); |
| 485 | if (n > max) |
| 486 | max = n; |
| 487 | } |
| 488 | return max; |
| 489 | } |
| 490 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 491 | /** |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 492 | * acpiphp_bus_add - Scan ACPI namespace subtree. |
| 493 | * @handle: ACPI object handle to start the scan from. |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 494 | */ |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 495 | static void acpiphp_bus_add(acpi_handle handle) |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 496 | { |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 497 | struct acpi_device *adev = NULL; |
| 498 | |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 499 | acpi_bus_scan(handle); |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 500 | acpi_bus_get_device(handle, &adev); |
Rafael J. Wysocki | 202317a | 2013-11-22 21:54:37 +0100 | [diff] [blame] | 501 | if (acpi_device_enumerated(adev)) |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 502 | acpi_device_set_power(adev, ACPI_STATE_D0); |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 503 | } |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 504 | |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 505 | static void acpiphp_set_acpi_region(struct acpiphp_slot *slot) |
| 506 | { |
| 507 | struct acpiphp_func *func; |
| 508 | union acpi_object params[2]; |
| 509 | struct acpi_object_list arg_list; |
| 510 | |
| 511 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 512 | arg_list.count = 2; |
| 513 | arg_list.pointer = params; |
| 514 | params[0].type = ACPI_TYPE_INTEGER; |
| 515 | params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG; |
| 516 | params[1].type = ACPI_TYPE_INTEGER; |
| 517 | params[1].integer.value = 1; |
| 518 | /* _REG is optional, we don't care about if there is failure */ |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 519 | acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list, |
| 520 | NULL); |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 521 | } |
| 522 | } |
| 523 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 524 | static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev) |
| 525 | { |
| 526 | struct acpiphp_func *func; |
| 527 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 528 | /* quirk, or pcie could set it already */ |
| 529 | if (dev->is_hotplug_bridge) |
| 530 | return; |
| 531 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 532 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 533 | if (PCI_FUNC(dev->devfn) == func->function) { |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 534 | dev->is_hotplug_bridge = 1; |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 535 | break; |
| 536 | } |
| 537 | } |
| 538 | } |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 539 | |
Rafael J. Wysocki | a47d8c8 | 2013-09-08 00:07:28 +0200 | [diff] [blame] | 540 | static int acpiphp_rescan_slot(struct acpiphp_slot *slot) |
| 541 | { |
| 542 | struct acpiphp_func *func; |
| 543 | |
| 544 | list_for_each_entry(func, &slot->funcs, sibling) |
| 545 | acpiphp_bus_add(func_to_handle(func)); |
| 546 | |
| 547 | return pci_scan_slot(slot->bus, PCI_DEVFN(slot->device, 0)); |
| 548 | } |
| 549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | /** |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 551 | * enable_slot - enable, configure a slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | * @slot: slot to be enabled |
| 553 | * |
| 554 | * This function should be called per *physical slot*, |
| 555 | * not per each slot object in ACPI namespace. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 557 | static void __ref enable_slot(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | struct pci_dev *dev; |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 560 | struct pci_bus *bus = slot->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | struct acpiphp_func *func; |
Kirill A. Shutemov | b91182a | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 562 | int max, pass; |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 563 | LIST_HEAD(add_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Mika Westerberg | ab12259 | 2013-10-30 14:40:36 +0200 | [diff] [blame] | 565 | acpiphp_rescan_slot(slot); |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 566 | max = acpiphp_max_busnr(bus); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 567 | for (pass = 0; pass < 2; pass++) { |
| 568 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 569 | if (PCI_SLOT(dev->devfn) != slot->device) |
| 570 | continue; |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 571 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 572 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || |
Kristen Accardi | c64b5ee | 2005-12-14 09:37:26 -0800 | [diff] [blame] | 573 | dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 574 | max = pci_scan_bridge(bus, dev, max, pass); |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 575 | if (pass && dev->subordinate) { |
| 576 | check_hotplug_bridge(slot, dev); |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 577 | pcibios_resource_survey_bus(dev->subordinate); |
| 578 | __pci_bus_size_bridges(dev->subordinate, |
| 579 | &add_list); |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 580 | } |
Kristen Accardi | c64b5ee | 2005-12-14 09:37:26 -0800 | [diff] [blame] | 581 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 582 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | } |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 584 | __pci_bus_assign_resources(bus, &add_list, NULL); |
Rafael J. Wysocki | 2dc4128 | 2013-09-06 15:41:32 +0200 | [diff] [blame] | 585 | |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 586 | acpiphp_sanitize_bus(bus); |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 587 | acpiphp_set_hpp_values(bus); |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 588 | acpiphp_set_acpi_region(slot); |
Ian Campbell | 69643e4 | 2011-05-11 17:00:32 +0100 | [diff] [blame] | 589 | |
| 590 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 591 | /* Assume that newly added devices are powered on already. */ |
| 592 | if (!dev->is_added) |
| 593 | dev->current_state = PCI_D0; |
| 594 | } |
| 595 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 596 | pci_bus_add_devices(bus); |
| 597 | |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 598 | slot->flags |= SLOT_ENABLED; |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 599 | list_for_each_entry(func, &slot->funcs, sibling) { |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 600 | dev = pci_get_slot(bus, PCI_DEVFN(slot->device, |
| 601 | func->function)); |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 602 | if (!dev) { |
| 603 | /* Do not set SLOT_ENABLED flag if some funcs |
| 604 | are not added. */ |
| 605 | slot->flags &= (~SLOT_ENABLED); |
MUNEDA Takahiro | 551bcb7 | 2006-03-22 14:49:20 +0900 | [diff] [blame] | 606 | continue; |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 607 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | /** |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 612 | * disable_slot - disable a slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 613 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 615 | static void disable_slot(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | { |
Rafael J. Wysocki | 1c0c544 | 2014-02-04 00:37:02 +0100 | [diff] [blame] | 617 | struct pci_bus *bus = slot->bus; |
| 618 | struct pci_dev *dev, *prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | struct acpiphp_func *func; |
MUNEDA Takahiro | 551bcb7 | 2006-03-22 14:49:20 +0900 | [diff] [blame] | 620 | |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 621 | /* |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 622 | * enable_slot() enumerates all functions in this device via |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 623 | * pci_scan_slot(), whether they have associated ACPI hotplug |
| 624 | * methods (_EJ0, etc.) or not. Therefore, we remove all functions |
| 625 | * here. |
| 626 | */ |
Rafael J. Wysocki | 1c0c544 | 2014-02-04 00:37:02 +0100 | [diff] [blame] | 627 | list_for_each_entry_safe_reverse(dev, prev, &bus->devices, bus_list) |
| 628 | if (PCI_SLOT(dev->devfn) == slot->device) |
| 629 | pci_stop_and_remove_bus_device(dev); |
Satoru Takeuchi | 0dad351 | 2006-09-12 10:17:46 -0700 | [diff] [blame] | 630 | |
Rafael J. Wysocki | 4dc3082 | 2014-02-04 00:38:52 +0100 | [diff] [blame] | 631 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 632 | struct acpi_device *adev; |
| 633 | |
| 634 | if (!acpi_bus_get_device(func_to_handle(func), &adev)) |
| 635 | acpi_bus_trim(adev); |
| 636 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
| 638 | slot->flags &= (~SLOT_ENABLED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
Rafael J. Wysocki | b2118d6 | 2014-02-04 00:39:20 +0100 | [diff] [blame^] | 641 | static bool acpiphp_no_hotplug(struct acpi_device *adev) |
Rafael J. Wysocki | f244d8b | 2013-12-31 13:39:42 +0100 | [diff] [blame] | 642 | { |
Rafael J. Wysocki | f244d8b | 2013-12-31 13:39:42 +0100 | [diff] [blame] | 643 | return adev && adev->flags.no_hotplug; |
| 644 | } |
| 645 | |
| 646 | static bool slot_no_hotplug(struct acpiphp_slot *slot) |
| 647 | { |
| 648 | struct acpiphp_func *func; |
| 649 | |
Rafael J. Wysocki | b2118d6 | 2014-02-04 00:39:20 +0100 | [diff] [blame^] | 650 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 651 | struct acpi_device *adev = NULL; |
Rafael J. Wysocki | f244d8b | 2013-12-31 13:39:42 +0100 | [diff] [blame] | 652 | |
Rafael J. Wysocki | b2118d6 | 2014-02-04 00:39:20 +0100 | [diff] [blame^] | 653 | acpi_bus_get_device(func_to_handle(func), &adev); |
| 654 | if (acpiphp_no_hotplug(adev)) |
| 655 | return true; |
| 656 | } |
Rafael J. Wysocki | f244d8b | 2013-12-31 13:39:42 +0100 | [diff] [blame] | 657 | return false; |
| 658 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
| 660 | /** |
| 661 | * get_slot_status - get ACPI slot status |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 662 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 664 | * If a slot has _STA for each function and if any one of them |
| 665 | * returned non-zero status, return it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 667 | * If a slot doesn't have _STA and if any one of its functions' |
| 668 | * configuration space is configured, return 0x0f as a _STA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 670 | * Otherwise return 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | */ |
| 672 | static unsigned int get_slot_status(struct acpiphp_slot *slot) |
| 673 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 674 | unsigned long long sta = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | struct acpiphp_func *func; |
| 676 | |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 677 | list_for_each_entry(func, &slot->funcs, sibling) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | if (func->flags & FUNC_HAS_STA) { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 679 | acpi_status status; |
| 680 | |
| 681 | status = acpi_evaluate_integer(func_to_handle(func), |
| 682 | "_STA", NULL, &sta); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | if (ACPI_SUCCESS(status) && sta) |
| 684 | break; |
| 685 | } else { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 686 | u32 dvid; |
| 687 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 688 | pci_bus_read_config_dword(slot->bus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | PCI_DEVFN(slot->device, |
| 690 | func->function), |
| 691 | PCI_VENDOR_ID, &dvid); |
| 692 | if (dvid != 0xffffffff) { |
| 693 | sta = ACPI_STA_ALL; |
| 694 | break; |
| 695 | } |
| 696 | } |
| 697 | } |
| 698 | |
| 699 | return (unsigned int)sta; |
| 700 | } |
| 701 | |
| 702 | /** |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 703 | * trim_stale_devices - remove PCI devices that are not responding. |
| 704 | * @dev: PCI device to start walking the hierarchy from. |
| 705 | */ |
| 706 | static void trim_stale_devices(struct pci_dev *dev) |
| 707 | { |
Rafael J. Wysocki | 4dc3082 | 2014-02-04 00:38:52 +0100 | [diff] [blame] | 708 | struct acpi_device *adev = ACPI_COMPANION(&dev->dev); |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 709 | struct pci_bus *bus = dev->subordinate; |
| 710 | bool alive = false; |
| 711 | |
Rafael J. Wysocki | 4dc3082 | 2014-02-04 00:38:52 +0100 | [diff] [blame] | 712 | if (adev) { |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 713 | acpi_status status; |
| 714 | unsigned long long sta; |
| 715 | |
Rafael J. Wysocki | b2118d6 | 2014-02-04 00:39:20 +0100 | [diff] [blame^] | 716 | status = acpi_evaluate_integer(adev->handle, "_STA", NULL, &sta); |
Rafael J. Wysocki | f244d8b | 2013-12-31 13:39:42 +0100 | [diff] [blame] | 717 | alive = (ACPI_SUCCESS(status) && sta == ACPI_STA_ALL) |
Rafael J. Wysocki | b2118d6 | 2014-02-04 00:39:20 +0100 | [diff] [blame^] | 718 | || acpiphp_no_hotplug(adev); |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 719 | } |
| 720 | if (!alive) { |
| 721 | u32 v; |
| 722 | |
| 723 | /* Check if the device responds. */ |
| 724 | alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0); |
| 725 | } |
| 726 | if (!alive) { |
| 727 | pci_stop_and_remove_bus_device(dev); |
Rafael J. Wysocki | 4dc3082 | 2014-02-04 00:38:52 +0100 | [diff] [blame] | 728 | if (adev) |
| 729 | acpi_bus_trim(adev); |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 730 | } else if (bus) { |
| 731 | struct pci_dev *child, *tmp; |
| 732 | |
| 733 | /* The device is a bridge. so check the bus below it. */ |
| 734 | pm_runtime_get_sync(&dev->dev); |
Rafael J. Wysocki | 2d7c1b7 | 2014-02-03 02:22:07 +0100 | [diff] [blame] | 735 | list_for_each_entry_safe_reverse(child, tmp, &bus->devices, bus_list) |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 736 | trim_stale_devices(child); |
| 737 | |
| 738 | pm_runtime_put(&dev->dev); |
| 739 | } |
| 740 | } |
| 741 | |
| 742 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | * acpiphp_check_bridge - re-enumerate devices |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 744 | * @bridge: where to begin re-enumeration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | * |
| 746 | * Iterate over all slots under this bridge and make sure that if a |
| 747 | * card is present they are enabled, and if not they are disabled. |
| 748 | */ |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 749 | static void acpiphp_check_bridge(struct acpiphp_bridge *bridge) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | { |
| 751 | struct acpiphp_slot *slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 753 | /* Bail out if the bridge is going away. */ |
| 754 | if (bridge->is_going_away) |
| 755 | return; |
| 756 | |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 757 | list_for_each_entry(slot, &bridge->slots, node) { |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 758 | struct pci_bus *bus = slot->bus; |
| 759 | struct pci_dev *dev, *tmp; |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 760 | |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 761 | mutex_lock(&slot->crit_sect); |
Rafael J. Wysocki | f244d8b | 2013-12-31 13:39:42 +0100 | [diff] [blame] | 762 | if (slot_no_hotplug(slot)) { |
| 763 | ; /* do nothing */ |
| 764 | } else if (get_slot_status(slot) == ACPI_STA_ALL) { |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 765 | /* remove stale devices if any */ |
Rafael J. Wysocki | 2d7c1b7 | 2014-02-03 02:22:07 +0100 | [diff] [blame] | 766 | list_for_each_entry_safe_reverse(dev, tmp, |
| 767 | &bus->devices, bus_list) |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 768 | if (PCI_SLOT(dev->devfn) == slot->device) |
| 769 | trim_stale_devices(dev); |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 770 | |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 771 | /* configure all functions */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 772 | enable_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } else { |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 774 | disable_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | } |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 776 | mutex_unlock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 780 | static void acpiphp_set_hpp_values(struct pci_bus *bus) |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 781 | { |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 782 | struct pci_dev *dev; |
| 783 | |
Bjorn Helgaas | e81995b | 2009-09-14 16:35:35 -0600 | [diff] [blame] | 784 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 785 | pci_configure_slot(dev); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | /* |
| 789 | * Remove devices for which we could not assign resources, call |
| 790 | * arch specific code to fix-up the bus |
| 791 | */ |
| 792 | static void acpiphp_sanitize_bus(struct pci_bus *bus) |
| 793 | { |
Yijing Wang | d65eba6 | 2013-04-12 05:44:17 +0000 | [diff] [blame] | 794 | struct pci_dev *dev, *tmp; |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 795 | int i; |
| 796 | unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM; |
| 797 | |
Rafael J. Wysocki | 2d7c1b7 | 2014-02-03 02:22:07 +0100 | [diff] [blame] | 798 | list_for_each_entry_safe_reverse(dev, tmp, &bus->devices, bus_list) { |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 799 | for (i=0; i<PCI_BRIDGE_RESOURCES; i++) { |
| 800 | struct resource *res = &dev->resource[i]; |
| 801 | if ((res->flags & type_mask) && !res->start && |
| 802 | res->end) { |
| 803 | /* Could not assign a required resources |
| 804 | * for this device, remove it */ |
Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 805 | pci_stop_and_remove_bus_device(dev); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 806 | break; |
| 807 | } |
| 808 | } |
| 809 | } |
| 810 | } |
| 811 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | /* |
| 813 | * ACPI event handlers |
| 814 | */ |
| 815 | |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 816 | void acpiphp_check_host_bridge(acpi_handle handle) |
| 817 | { |
| 818 | struct acpiphp_bridge *bridge; |
| 819 | |
| 820 | bridge = acpiphp_handle_to_bridge(handle); |
| 821 | if (bridge) { |
Rafael J. Wysocki | d42f5da | 2014-02-03 02:22:27 +0100 | [diff] [blame] | 822 | pci_lock_rescan_remove(); |
| 823 | |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 824 | acpiphp_check_bridge(bridge); |
Rafael J. Wysocki | d42f5da | 2014-02-03 02:22:27 +0100 | [diff] [blame] | 825 | |
| 826 | pci_unlock_rescan_remove(); |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 827 | put_bridge(bridge); |
| 828 | } |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 829 | } |
| 830 | |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 831 | static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot); |
| 832 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 833 | static void hotplug_event(acpi_handle handle, u32 type, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 835 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 836 | struct acpiphp_func *func = &context->func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | struct acpiphp_bridge *bridge; |
| 838 | char objname[64]; |
| 839 | struct acpi_buffer buffer = { .length = sizeof(objname), |
| 840 | .pointer = objname }; |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 841 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 842 | mutex_lock(&acpiphp_context_lock); |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 843 | bridge = context->bridge; |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 844 | if (bridge) |
| 845 | get_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 847 | mutex_unlock(&acpiphp_context_lock); |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 848 | |
Rafael J. Wysocki | f41b326 | 2014-02-03 02:22:17 +0100 | [diff] [blame] | 849 | pci_lock_rescan_remove(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 851 | |
| 852 | switch (type) { |
| 853 | case ACPI_NOTIFY_BUS_CHECK: |
| 854 | /* bus re-enumerate */ |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 855 | pr_debug("%s: Bus check notify on %s\n", __func__, objname); |
| 856 | pr_debug("%s: re-enumerating slots under %s\n", |
| 857 | __func__, objname); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 858 | if (bridge) { |
| 859 | acpiphp_check_bridge(bridge); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 860 | } else { |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 861 | struct acpiphp_slot *slot = func->slot; |
| 862 | |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 863 | if (slot->flags & SLOT_IS_GOING_AWAY) |
| 864 | break; |
| 865 | |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 866 | mutex_lock(&slot->crit_sect); |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 867 | enable_slot(slot); |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 868 | mutex_unlock(&slot->crit_sect); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 869 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | break; |
| 871 | |
| 872 | case ACPI_NOTIFY_DEVICE_CHECK: |
| 873 | /* device check */ |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 874 | pr_debug("%s: Device check notify on %s\n", __func__, objname); |
Rafael J. Wysocki | a47d8c8 | 2013-09-08 00:07:28 +0200 | [diff] [blame] | 875 | if (bridge) { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 876 | acpiphp_check_bridge(bridge); |
Rafael J. Wysocki | a47d8c8 | 2013-09-08 00:07:28 +0200 | [diff] [blame] | 877 | } else { |
| 878 | struct acpiphp_slot *slot = func->slot; |
| 879 | int ret; |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 880 | |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 881 | if (slot->flags & SLOT_IS_GOING_AWAY) |
| 882 | break; |
| 883 | |
Rafael J. Wysocki | a47d8c8 | 2013-09-08 00:07:28 +0200 | [diff] [blame] | 884 | /* |
| 885 | * Check if anything has changed in the slot and rescan |
| 886 | * from the parent if that's the case. |
| 887 | */ |
| 888 | mutex_lock(&slot->crit_sect); |
| 889 | ret = acpiphp_rescan_slot(slot); |
| 890 | mutex_unlock(&slot->crit_sect); |
| 891 | if (ret) |
| 892 | acpiphp_check_bridge(func->parent); |
| 893 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | break; |
| 895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | case ACPI_NOTIFY_EJECT_REQUEST: |
| 897 | /* request device eject */ |
Lan Tianyu | bd95079 | 2013-09-24 18:11:48 -0600 | [diff] [blame] | 898 | pr_debug("%s: Device eject notify on %s\n", __func__, objname); |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 899 | acpiphp_disable_and_eject_slot(func->slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | } |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 902 | |
Rafael J. Wysocki | f41b326 | 2014-02-03 02:22:17 +0100 | [diff] [blame] | 903 | pci_unlock_rescan_remove(); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 904 | if (bridge) |
| 905 | put_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | } |
| 907 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 908 | static void hotplug_event_work(void *data, u32 type) |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 909 | { |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 910 | struct acpiphp_context *context = data; |
| 911 | acpi_handle handle = context->handle; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 912 | |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 913 | acpi_scan_lock_acquire(); |
| 914 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 915 | hotplug_event(handle, type, context); |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 916 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 917 | acpi_scan_lock_release(); |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 918 | acpi_evaluate_hotplug_ost(handle, type, ACPI_OST_SC_SUCCESS, NULL); |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 919 | put_bridge(context->func.parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 922 | /** |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 923 | * handle_hotplug_event - handle ACPI hotplug event |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 924 | * @handle: Notify()'ed acpi_handle |
| 925 | * @type: Notify code |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 926 | * @data: pointer to acpiphp_context structure |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 927 | * |
| 928 | * Handles ACPI event notification on slots. |
| 929 | */ |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 930 | static void handle_hotplug_event(acpi_handle handle, u32 type, void *data) |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 931 | { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 932 | struct acpiphp_context *context; |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 933 | u32 ost_code = ACPI_OST_SC_SUCCESS; |
Rafael J. Wysocki | 1b360f4 | 2014-02-03 22:30:06 +0100 | [diff] [blame] | 934 | acpi_status status; |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 935 | |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 936 | switch (type) { |
| 937 | case ACPI_NOTIFY_BUS_CHECK: |
| 938 | case ACPI_NOTIFY_DEVICE_CHECK: |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 939 | break; |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 940 | case ACPI_NOTIFY_EJECT_REQUEST: |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 941 | ost_code = ACPI_OST_SC_EJECT_IN_PROGRESS; |
| 942 | acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL); |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 943 | break; |
| 944 | |
| 945 | case ACPI_NOTIFY_DEVICE_WAKE: |
| 946 | return; |
| 947 | |
| 948 | case ACPI_NOTIFY_FREQUENCY_MISMATCH: |
| 949 | acpi_handle_err(handle, "Device cannot be configured due " |
| 950 | "to a frequency mismatch\n"); |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 951 | goto out; |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 952 | |
| 953 | case ACPI_NOTIFY_BUS_MODE_MISMATCH: |
| 954 | acpi_handle_err(handle, "Device cannot be configured due " |
| 955 | "to a bus mode mismatch\n"); |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 956 | goto out; |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 957 | |
| 958 | case ACPI_NOTIFY_POWER_FAULT: |
| 959 | acpi_handle_err(handle, "Device has suffered a power fault\n"); |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 960 | goto out; |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 961 | |
| 962 | default: |
| 963 | acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type); |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 964 | ost_code = ACPI_OST_SC_UNRECOGNIZED_NOTIFY; |
| 965 | goto out; |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 966 | } |
| 967 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 968 | mutex_lock(&acpiphp_context_lock); |
| 969 | context = acpiphp_get_context(handle); |
Rafael J. Wysocki | 1b360f4 | 2014-02-03 22:30:06 +0100 | [diff] [blame] | 970 | if (!context || WARN_ON(context->handle != handle) |
| 971 | || context->func.parent->is_going_away) |
| 972 | goto err_out; |
| 973 | |
| 974 | get_bridge(context->func.parent); |
| 975 | acpiphp_put_context(context); |
| 976 | status = acpi_hotplug_execute(hotplug_event_work, context, type); |
| 977 | if (ACPI_SUCCESS(status)) { |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 978 | mutex_unlock(&acpiphp_context_lock); |
| 979 | return; |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 980 | } |
Rafael J. Wysocki | 1b360f4 | 2014-02-03 22:30:06 +0100 | [diff] [blame] | 981 | put_bridge(context->func.parent); |
| 982 | |
| 983 | err_out: |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 984 | mutex_unlock(&acpiphp_context_lock); |
Rafael J. Wysocki | e532e84 | 2013-09-06 15:41:41 +0200 | [diff] [blame] | 985 | ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; |
| 986 | |
| 987 | out: |
| 988 | acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
Rafael J. Wysocki | 454481a | 2014-02-04 00:37:35 +0100 | [diff] [blame] | 991 | /** |
| 992 | * acpiphp_enumerate_slots - Enumerate PCI slots for a given bus. |
| 993 | * @bus: PCI bus to enumerate the slots for. |
| 994 | * |
| 995 | * A "slot" is an object associated with a PCI device number. All functions |
| 996 | * (PCI devices) with the same bus and device number belong to the same slot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | */ |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 998 | void acpiphp_enumerate_slots(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | { |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1000 | struct acpiphp_bridge *bridge; |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1001 | acpi_handle handle; |
| 1002 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1004 | if (acpiphp_disabled) |
| 1005 | return; |
| 1006 | |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1007 | handle = ACPI_HANDLE(bus->bridge); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1008 | if (!handle) |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1009 | return; |
| 1010 | |
| 1011 | bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1012 | if (!bridge) { |
| 1013 | acpi_handle_err(handle, "No memory for bridge object\n"); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1014 | return; |
| 1015 | } |
| 1016 | |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 1017 | INIT_LIST_HEAD(&bridge->slots); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 1018 | kref_init(&bridge->ref); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1019 | bridge->pci_dev = pci_dev_get(bus->self); |
| 1020 | bridge->pci_bus = bus; |
| 1021 | |
| 1022 | /* |
| 1023 | * Grab a ref to the subordinate PCI bus in case the bus is |
| 1024 | * removed via PCI core logical hotplug. The ref pins the bus |
| 1025 | * (which we access during module unload). |
| 1026 | */ |
| 1027 | get_device(&bus->dev); |
| 1028 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1029 | if (!pci_is_root_bus(bridge->pci_bus)) { |
| 1030 | struct acpiphp_context *context; |
| 1031 | |
| 1032 | /* |
| 1033 | * This bridge should have been registered as a hotplug function |
Rafael J. Wysocki | fd3cfeb | 2013-10-12 01:49:48 +0200 | [diff] [blame] | 1034 | * under its parent, so the context should be there, unless the |
| 1035 | * parent is going to be handled by pciehp, in which case this |
| 1036 | * bridge is not interesting to us either. |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1037 | */ |
| 1038 | mutex_lock(&acpiphp_context_lock); |
| 1039 | context = acpiphp_get_context(handle); |
Rafael J. Wysocki | fd3cfeb | 2013-10-12 01:49:48 +0200 | [diff] [blame] | 1040 | if (!context) { |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1041 | mutex_unlock(&acpiphp_context_lock); |
| 1042 | put_device(&bus->dev); |
Rafael J. Wysocki | 5d44945 | 2013-10-11 13:20:50 +0200 | [diff] [blame] | 1043 | pci_dev_put(bridge->pci_dev); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1044 | kfree(bridge); |
| 1045 | return; |
| 1046 | } |
| 1047 | bridge->context = context; |
| 1048 | context->bridge = bridge; |
| 1049 | /* Get a reference to the parent bridge. */ |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 1050 | get_bridge(context->func.parent); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1051 | mutex_unlock(&acpiphp_context_lock); |
| 1052 | } |
| 1053 | |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1054 | /* must be added to the list prior to calling register_slot */ |
| 1055 | mutex_lock(&bridge_mutex); |
| 1056 | list_add(&bridge->list, &bridge_list); |
| 1057 | mutex_unlock(&bridge_mutex); |
| 1058 | |
| 1059 | /* register all slot objects under this bridge */ |
Rafael J. Wysocki | 89373a5 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 1060 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1, |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1061 | register_slot, NULL, bridge, NULL); |
| 1062 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | 89373a5 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 1063 | acpi_handle_err(handle, "failed to register slots\n"); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1064 | cleanup_bridge(bridge); |
| 1065 | put_bridge(bridge); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1066 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
Rafael J. Wysocki | 454481a | 2014-02-04 00:37:35 +0100 | [diff] [blame] | 1069 | /** |
| 1070 | * acpiphp_remove_slots - Remove slot objects associated with a given bus. |
| 1071 | * @bus: PCI bus to remove the slot objects for. |
| 1072 | */ |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1073 | void acpiphp_remove_slots(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | { |
Rafael J. Wysocki | ff181e5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1075 | struct acpiphp_bridge *bridge; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1076 | |
| 1077 | if (acpiphp_disabled) |
| 1078 | return; |
| 1079 | |
Rafael J. Wysocki | ff181e5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1080 | mutex_lock(&bridge_mutex); |
| 1081 | list_for_each_entry(bridge, &bridge_list, list) |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1082 | if (bridge->pci_bus == bus) { |
Rafael J. Wysocki | ff181e5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1083 | mutex_unlock(&bridge_mutex); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1084 | cleanup_bridge(bridge); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 1085 | put_bridge(bridge); |
Rafael J. Wysocki | ff181e5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1086 | return; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1087 | } |
Rafael J. Wysocki | ff181e5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1088 | |
| 1089 | mutex_unlock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | } |
| 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | /** |
| 1093 | * acpiphp_enable_slot - power on slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 1094 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | */ |
| 1096 | int acpiphp_enable_slot(struct acpiphp_slot *slot) |
| 1097 | { |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 1098 | pci_lock_rescan_remove(); |
| 1099 | |
| 1100 | if (slot->flags & SLOT_IS_GOING_AWAY) |
| 1101 | return -ENODEV; |
| 1102 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1103 | mutex_lock(&slot->crit_sect); |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1104 | /* configure all functions */ |
Kirill A. Shutemov | 55502dd | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1105 | if (!(slot->flags & SLOT_ENABLED)) |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1106 | enable_slot(slot); |
Kirill A. Shutemov | 55502dd | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1107 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1108 | mutex_unlock(&slot->crit_sect); |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 1109 | |
| 1110 | pci_unlock_rescan_remove(); |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1111 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | /** |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1115 | * acpiphp_disable_and_eject_slot - power off and eject slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 1116 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | */ |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 1118 | static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | { |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1120 | struct acpiphp_func *func; |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 1121 | |
| 1122 | if (slot->flags & SLOT_IS_GOING_AWAY) |
| 1123 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1125 | mutex_lock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
| 1127 | /* unconfigure all functions */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1128 | disable_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1130 | list_for_each_entry(func, &slot->funcs, sibling) |
| 1131 | if (func->flags & FUNC_HAS_EJ0) { |
| 1132 | acpi_handle handle = func_to_handle(func); |
| 1133 | |
| 1134 | if (ACPI_FAILURE(acpi_evaluate_ej0(handle))) |
| 1135 | acpi_handle_err(handle, "_EJ0 failed\n"); |
| 1136 | |
| 1137 | break; |
| 1138 | } |
| 1139 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1140 | mutex_unlock(&slot->crit_sect); |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 1141 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | } |
| 1143 | |
Rafael J. Wysocki | 9217a98 | 2014-01-10 15:24:41 +0100 | [diff] [blame] | 1144 | int acpiphp_disable_slot(struct acpiphp_slot *slot) |
| 1145 | { |
| 1146 | int ret; |
| 1147 | |
| 1148 | pci_lock_rescan_remove(); |
| 1149 | ret = acpiphp_disable_and_eject_slot(slot); |
| 1150 | pci_unlock_rescan_remove(); |
| 1151 | return ret; |
| 1152 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
| 1154 | /* |
| 1155 | * slot enabled: 1 |
| 1156 | * slot disabled: 0 |
| 1157 | */ |
| 1158 | u8 acpiphp_get_power_status(struct acpiphp_slot *slot) |
| 1159 | { |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1160 | return (slot->flags & SLOT_ENABLED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | } |
| 1162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | /* |
MUNEDA Takahiro | 35ae61a | 2006-10-25 11:44:57 -0700 | [diff] [blame] | 1164 | * latch open: 1 |
| 1165 | * latch closed: 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | */ |
| 1167 | u8 acpiphp_get_latch_status(struct acpiphp_slot *slot) |
| 1168 | { |
Mika Westerberg | 1ad3790 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1169 | return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | } |
| 1171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | /* |
| 1173 | * adapter presence : 1 |
| 1174 | * absence : 0 |
| 1175 | */ |
| 1176 | u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot) |
| 1177 | { |
Mika Westerberg | 1ad3790 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1178 | return !!get_slot_status(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |