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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/init.h> |
| 43 | #include <linux/module.h> |
| 44 | |
| 45 | #include <linux/kernel.h> |
| 46 | #include <linux/pci.h> |
Greg Kroah-Hartman | 7a54f25 | 2006-10-13 20:05:19 -0700 | [diff] [blame] | 47 | #include <linux/pci_hotplug.h> |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 48 | #include <linux/pci-acpi.h> |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 49 | #include <linux/pm_runtime.h> |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 50 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 51 | #include <linux/slab.h> |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 52 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | #include "../pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include "acpiphp.h" |
| 56 | |
| 57 | static LIST_HEAD(bridge_list); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 58 | static DEFINE_MUTEX(bridge_mutex); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 59 | static DEFINE_MUTEX(acpiphp_context_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | #define MY_NAME "acpiphp_glue" |
| 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 | |
| 213 | |
Vasiliy Kulikov | 9c8b04b | 2011-06-25 21:07:52 +0400 | [diff] [blame] | 214 | static const struct acpi_dock_ops acpiphp_dock_ops = { |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 215 | .fixup = post_dock_fixups, |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 216 | .handler = hotplug_event, |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 217 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Jiang Liu | 5ba113f | 2012-08-22 23:16:45 +0800 | [diff] [blame] | 219 | /* Check whether the PCI device is managed by native PCIe hotplug driver */ |
| 220 | static 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, ®32)) |
| 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. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 248 | static void acpiphp_dock_init(void *data) |
| 249 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 250 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 251 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 252 | get_bridge(context->func.parent); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | static void acpiphp_dock_release(void *data) |
| 256 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 257 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 258 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 259 | put_bridge(context->func.parent); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | /* callback routine to register each ACPI PCI slot object */ |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 263 | static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data, |
| 264 | void **rv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 266 | struct acpiphp_bridge *bridge = data; |
| 267 | struct acpiphp_context *context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | struct acpiphp_slot *slot; |
| 269 | struct acpiphp_func *newfunc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | acpi_status status = AE_OK; |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 271 | unsigned long long adr; |
| 272 | int device, function; |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 273 | struct pci_bus *pbus = bridge->pci_bus; |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 274 | struct pci_dev *pdev = bridge->pci_dev; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 275 | u32 val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 277 | if (pdev && device_is_managed_by_native_pciehp(pdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | return AE_OK; |
| 279 | |
Bjorn Helgaas | dfb117b | 2012-06-20 16:18:29 -0600 | [diff] [blame] | 280 | status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); |
| 281 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 282 | acpi_handle_warn(handle, "can't evaluate _ADR (%#x)\n", status); |
Bjorn Helgaas | dfb117b | 2012-06-20 16:18:29 -0600 | [diff] [blame] | 283 | return AE_OK; |
| 284 | } |
| 285 | |
| 286 | device = (adr >> 16) & 0xffff; |
| 287 | function = adr & 0xffff; |
| 288 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 289 | 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. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 294 | return AE_NOT_EXIST; |
| 295 | } |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 296 | newfunc = &context->func; |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 297 | newfunc->function = function; |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 298 | newfunc->parent = bridge; |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 299 | mutex_unlock(&acpiphp_context_lock); |
| 300 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 301 | if (acpi_has_method(handle, "_EJ0")) |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 302 | newfunc->flags = FUNC_HAS_EJ0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 304 | if (acpi_has_method(handle, "_STA")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | newfunc->flags |= FUNC_HAS_STA; |
| 306 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 307 | if (acpi_has_method(handle, "_DCK")) |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 308 | newfunc->flags |= FUNC_HAS_DCK; |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | /* search for objects that share the same slot */ |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 311 | list_for_each_entry(slot, &bridge->slots, node) |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 312 | if (slot->device == device) |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 313 | goto slot_found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 315 | slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL); |
| 316 | if (!slot) { |
| 317 | status = AE_NO_MEMORY; |
| 318 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 321 | slot->bus = bridge->pci_bus; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 322 | slot->device = device; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 323 | 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. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 329 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 330 | /* 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. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 334 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 335 | bridge->nr_slots++; |
| 336 | status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun); |
| 337 | if (ACPI_FAILURE(status)) |
| 338 | sun = bridge->nr_slots; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 339 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 340 | dbg("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] | 341 | sun, pci_domain_nr(pbus), pbus->number, device); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 342 | |
Rafael J. Wysocki | 7342798 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 343 | retval = acpiphp_register_hotplug_slot(slot, sun); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 344 | if (retval) { |
| 345 | bridge->nr_slots--; |
| 346 | if (retval == -EBUSY) |
| 347 | warn("Slot %llu already registered by another " |
Rafael J. Wysocki | 7342798 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 348 | "hotplug driver\n", sun); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 349 | 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. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | slot_found: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | newfunc->slot = slot; |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 358 | mutex_lock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | list_add_tail(&newfunc->sibling, &slot->funcs); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 360 | mutex_unlock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 362 | if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function), |
| 363 | &val, 60*1000)) |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 364 | slot->flags |= SLOT_ENABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 366 | 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 Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 370 | */ |
| 371 | newfunc->flags &= ~FUNC_HAS_EJ0; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 372 | if (register_hotplug_dock_device(handle, |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 373 | &acpiphp_dock_ops, context, |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 374 | acpiphp_dock_init, acpiphp_dock_release)) |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 375 | dbg("failed to register dock device\n"); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | /* install notify handler */ |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 379 | if (!(newfunc->flags & FUNC_HAS_DCK)) { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 380 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
| 381 | handle_hotplug_event, |
| 382 | context); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 383 | if (ACPI_FAILURE(status)) |
| 384 | acpi_handle_err(handle, |
| 385 | "failed to install notify handler\n"); |
Rafael J. Wysocki | 2e862c5 | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 386 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Rafael J. Wysocki | 2e862c5 | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 388 | return AE_OK; |
MUNEDA Takahiro | e27da38 | 2006-02-23 17:56:08 -0800 | [diff] [blame] | 389 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 390 | err: |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 391 | mutex_lock(&acpiphp_context_lock); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 392 | acpiphp_put_context(context); |
| 393 | mutex_unlock(&acpiphp_context_lock); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 394 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 397 | static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle) |
| 398 | { |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 399 | struct acpiphp_context *context; |
| 400 | struct acpiphp_bridge *bridge = NULL; |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 401 | |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 402 | mutex_lock(&acpiphp_context_lock); |
| 403 | context = acpiphp_get_context(handle); |
| 404 | if (context) { |
| 405 | bridge = context->bridge; |
| 406 | if (bridge) |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 407 | get_bridge(bridge); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 408 | |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 409 | acpiphp_put_context(context); |
| 410 | } |
| 411 | mutex_unlock(&acpiphp_context_lock); |
| 412 | return bridge; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 413 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Rajesh Shah | 364d509 | 2005-04-28 00:25:54 -0700 | [diff] [blame] | 415 | static void cleanup_bridge(struct acpiphp_bridge *bridge) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 417 | struct acpiphp_slot *slot; |
| 418 | struct acpiphp_func *func; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 419 | acpi_status status; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 420 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 421 | list_for_each_entry(slot, &bridge->slots, node) { |
| 422 | list_for_each_entry(func, &slot->funcs, sibling) { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 423 | acpi_handle handle = func_to_handle(func); |
| 424 | |
| 425 | if (is_dock_device(handle)) |
| 426 | unregister_hotplug_dock_device(handle); |
| 427 | |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 428 | if (!(func->flags & FUNC_HAS_DCK)) { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 429 | status = acpi_remove_notify_handler(handle, |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 430 | ACPI_SYSTEM_NOTIFY, |
| 431 | handle_hotplug_event); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 432 | if (ACPI_FAILURE(status)) |
| 433 | err("failed to remove notify handler\n"); |
| 434 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 435 | } |
MUNEDA Takahiro | e27da38 | 2006-02-23 17:56:08 -0800 | [diff] [blame] | 436 | acpiphp_unregister_hotplug_slot(slot); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 439 | mutex_lock(&bridge_mutex); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 440 | list_del(&bridge->list); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 441 | mutex_unlock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 444 | /** |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 445 | * 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] | 446 | * @bus: bus to start search with |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 447 | */ |
| 448 | static 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 Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 461 | max = bus->busn_res.start; |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 462 | |
| 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 Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 471 | /** |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 472 | * acpiphp_bus_trim - Trim device objects in an ACPI namespace subtree. |
| 473 | * @handle: ACPI device object handle to start from. |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 474 | */ |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 475 | static void acpiphp_bus_trim(acpi_handle handle) |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 476 | { |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 477 | struct acpi_device *adev = NULL; |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 478 | |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 479 | acpi_bus_get_device(handle, &adev); |
| 480 | if (adev) |
| 481 | acpi_bus_trim(adev); |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 482 | } |
| 483 | |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 484 | /** |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 485 | * acpiphp_bus_add - Scan ACPI namespace subtree. |
| 486 | * @handle: ACPI object handle to start the scan from. |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 487 | */ |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 488 | static void acpiphp_bus_add(acpi_handle handle) |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 489 | { |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 490 | struct acpi_device *adev = NULL; |
| 491 | |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 492 | acpiphp_bus_trim(handle); |
| 493 | acpi_bus_scan(handle); |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 494 | acpi_bus_get_device(handle, &adev); |
| 495 | if (adev) |
| 496 | acpi_device_set_power(adev, ACPI_STATE_D0); |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 497 | } |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 498 | |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 499 | static 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. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 513 | acpi_evaluate_object(func_to_handle(func), "_REG", &arg_list, |
| 514 | NULL); |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 515 | } |
| 516 | } |
| 517 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 518 | static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev) |
| 519 | { |
| 520 | struct acpiphp_func *func; |
| 521 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 522 | /* quirk, or pcie could set it already */ |
| 523 | if (dev->is_hotplug_bridge) |
| 524 | return; |
| 525 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 526 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 527 | if (PCI_FUNC(dev->devfn) == func->function) { |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 528 | dev->is_hotplug_bridge = 1; |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 529 | break; |
| 530 | } |
| 531 | } |
| 532 | } |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | /** |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 535 | * enable_slot - enable, configure a slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 541 | static void __ref enable_slot(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | struct pci_dev *dev; |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 544 | struct pci_bus *bus = slot->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | struct acpiphp_func *func; |
Kirill A. Shutemov | b91182a | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 546 | int max, pass; |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 547 | LIST_HEAD(add_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
Jiang Liu | 2ca344e | 2013-01-31 00:10:09 +0800 | [diff] [blame] | 549 | list_for_each_entry(func, &slot->funcs, sibling) |
Rafael J. Wysocki | 236e262 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 550 | acpiphp_bus_add(func_to_handle(func)); |
Jiang Liu | 2ca344e | 2013-01-31 00:10:09 +0800 | [diff] [blame] | 551 | |
Kirill A. Shutemov | b91182a | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 552 | pci_scan_slot(bus, PCI_DEVFN(slot->device, 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 554 | max = acpiphp_max_busnr(bus); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 555 | 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; |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 559 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 560 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || |
Kristen Accardi | c64b5ee | 2005-12-14 09:37:26 -0800 | [diff] [blame] | 561 | dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 562 | max = pci_scan_bridge(bus, dev, max, pass); |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 563 | if (pass && dev->subordinate) { |
| 564 | check_hotplug_bridge(slot, dev); |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 565 | pcibios_resource_survey_bus(dev->subordinate); |
| 566 | __pci_bus_size_bridges(dev->subordinate, |
| 567 | &add_list); |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 568 | } |
Kristen Accardi | c64b5ee | 2005-12-14 09:37:26 -0800 | [diff] [blame] | 569 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 570 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 573 | __pci_bus_assign_resources(bus, &add_list, NULL); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 574 | acpiphp_sanitize_bus(bus); |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 575 | acpiphp_set_hpp_values(bus); |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 576 | acpiphp_set_acpi_region(slot); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 577 | pci_enable_bridges(bus); |
Ian Campbell | 69643e4 | 2011-05-11 17:00:32 +0100 | [diff] [blame] | 578 | |
| 579 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 580 | /* Assume that newly added devices are powered on already. */ |
| 581 | if (!dev->is_added) |
| 582 | dev->current_state = PCI_D0; |
| 583 | } |
| 584 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 585 | pci_bus_add_devices(bus); |
| 586 | |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 587 | slot->flags |= SLOT_ENABLED; |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 588 | list_for_each_entry(func, &slot->funcs, sibling) { |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 589 | dev = pci_get_slot(bus, PCI_DEVFN(slot->device, |
| 590 | func->function)); |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 591 | if (!dev) { |
| 592 | /* Do not set SLOT_ENABLED flag if some funcs |
| 593 | are not added. */ |
| 594 | slot->flags &= (~SLOT_ENABLED); |
MUNEDA Takahiro | 551bcb7 | 2006-03-22 14:49:20 +0900 | [diff] [blame] | 595 | continue; |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 596 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 600 | /* return first device in slot, acquiring a reference on it */ |
| 601 | static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot) |
| 602 | { |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 603 | struct pci_bus *bus = slot->bus; |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 604 | struct pci_dev *dev; |
| 605 | struct pci_dev *ret = NULL; |
| 606 | |
| 607 | down_read(&pci_bus_sem); |
| 608 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 609 | if (PCI_SLOT(dev->devfn) == slot->device) { |
| 610 | ret = pci_dev_get(dev); |
| 611 | break; |
| 612 | } |
| 613 | up_read(&pci_bus_sem); |
| 614 | |
| 615 | return ret; |
| 616 | } |
| 617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | /** |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 619 | * disable_slot - disable a slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 620 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 622 | static void disable_slot(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | struct acpiphp_func *func; |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 625 | struct pci_dev *pdev; |
MUNEDA Takahiro | 551bcb7 | 2006-03-22 14:49:20 +0900 | [diff] [blame] | 626 | |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 627 | /* |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 628 | * enable_slot() enumerates all functions in this device via |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 629 | * pci_scan_slot(), whether they have associated ACPI hotplug |
| 630 | * methods (_EJ0, etc.) or not. Therefore, we remove all functions |
| 631 | * here. |
| 632 | */ |
| 633 | while ((pdev = dev_in_slot(slot))) { |
Bjorn Helgaas | 34e5484 | 2012-08-17 10:03:47 -0600 | [diff] [blame] | 634 | pci_stop_and_remove_bus_device(pdev); |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 635 | pci_dev_put(pdev); |
Satoru Takeuchi | 600812e | 2006-09-12 10:22:53 -0700 | [diff] [blame] | 636 | } |
Satoru Takeuchi | 0dad351 | 2006-09-12 10:17:46 -0700 | [diff] [blame] | 637 | |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 638 | list_for_each_entry(func, &slot->funcs, sibling) |
| 639 | acpiphp_bus_trim(func_to_handle(func)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
| 641 | slot->flags &= (~SLOT_ENABLED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | |
| 645 | /** |
| 646 | * get_slot_status - get ACPI slot status |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 647 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 649 | * If a slot has _STA for each function and if any one of them |
| 650 | * returned non-zero status, return it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 652 | * If a slot doesn't have _STA and if any one of its functions' |
| 653 | * configuration space is configured, return 0x0f as a _STA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 655 | * Otherwise return 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | */ |
| 657 | static unsigned int get_slot_status(struct acpiphp_slot *slot) |
| 658 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 659 | unsigned long long sta = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | struct acpiphp_func *func; |
| 661 | |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 662 | list_for_each_entry(func, &slot->funcs, sibling) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | if (func->flags & FUNC_HAS_STA) { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 664 | acpi_status status; |
| 665 | |
| 666 | status = acpi_evaluate_integer(func_to_handle(func), |
| 667 | "_STA", NULL, &sta); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | if (ACPI_SUCCESS(status) && sta) |
| 669 | break; |
| 670 | } else { |
Rafael J. Wysocki | 5a3bc57 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 671 | u32 dvid; |
| 672 | |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 673 | pci_bus_read_config_dword(slot->bus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | PCI_DEVFN(slot->device, |
| 675 | func->function), |
| 676 | PCI_VENDOR_ID, &dvid); |
| 677 | if (dvid != 0xffffffff) { |
| 678 | sta = ACPI_STA_ALL; |
| 679 | break; |
| 680 | } |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | return (unsigned int)sta; |
| 685 | } |
| 686 | |
| 687 | /** |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 688 | * trim_stale_devices - remove PCI devices that are not responding. |
| 689 | * @dev: PCI device to start walking the hierarchy from. |
| 690 | */ |
| 691 | static void trim_stale_devices(struct pci_dev *dev) |
| 692 | { |
| 693 | acpi_handle handle = ACPI_HANDLE(&dev->dev); |
| 694 | struct pci_bus *bus = dev->subordinate; |
| 695 | bool alive = false; |
| 696 | |
| 697 | if (handle) { |
| 698 | acpi_status status; |
| 699 | unsigned long long sta; |
| 700 | |
| 701 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); |
| 702 | alive = ACPI_SUCCESS(status) && sta == ACPI_STA_ALL; |
| 703 | } |
| 704 | if (!alive) { |
| 705 | u32 v; |
| 706 | |
| 707 | /* Check if the device responds. */ |
| 708 | alive = pci_bus_read_dev_vendor_id(dev->bus, dev->devfn, &v, 0); |
| 709 | } |
| 710 | if (!alive) { |
| 711 | pci_stop_and_remove_bus_device(dev); |
| 712 | if (handle) |
| 713 | acpiphp_bus_trim(handle); |
| 714 | } else if (bus) { |
| 715 | struct pci_dev *child, *tmp; |
| 716 | |
| 717 | /* The device is a bridge. so check the bus below it. */ |
| 718 | pm_runtime_get_sync(&dev->dev); |
| 719 | list_for_each_entry_safe(child, tmp, &bus->devices, bus_list) |
| 720 | trim_stale_devices(child); |
| 721 | |
| 722 | pm_runtime_put(&dev->dev); |
| 723 | } |
| 724 | } |
| 725 | |
| 726 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | * acpiphp_check_bridge - re-enumerate devices |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 728 | * @bridge: where to begin re-enumeration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | * |
| 730 | * Iterate over all slots under this bridge and make sure that if a |
| 731 | * card is present they are enabled, and if not they are disabled. |
| 732 | */ |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 733 | static void acpiphp_check_bridge(struct acpiphp_bridge *bridge) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | { |
| 735 | struct acpiphp_slot *slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 737 | list_for_each_entry(slot, &bridge->slots, node) { |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 738 | struct pci_bus *bus = slot->bus; |
| 739 | struct pci_dev *dev, *tmp; |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 740 | |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 741 | mutex_lock(&slot->crit_sect); |
| 742 | /* wake up all functions */ |
| 743 | if (get_slot_status(slot) == ACPI_STA_ALL) { |
| 744 | /* remove stale devices if any */ |
| 745 | list_for_each_entry_safe(dev, tmp, &bus->devices, |
| 746 | bus_list) |
| 747 | if (PCI_SLOT(dev->devfn) == slot->device) |
| 748 | trim_stale_devices(dev); |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 749 | |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 750 | /* configure all functions */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 751 | enable_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | } else { |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 753 | disable_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 755 | mutex_unlock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } |
| 758 | |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 759 | static void acpiphp_set_hpp_values(struct pci_bus *bus) |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 760 | { |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 761 | struct pci_dev *dev; |
| 762 | |
Bjorn Helgaas | e81995b | 2009-09-14 16:35:35 -0600 | [diff] [blame] | 763 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 764 | pci_configure_slot(dev); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | /* |
| 768 | * Remove devices for which we could not assign resources, call |
| 769 | * arch specific code to fix-up the bus |
| 770 | */ |
| 771 | static void acpiphp_sanitize_bus(struct pci_bus *bus) |
| 772 | { |
Yijing Wang | d65eba6 | 2013-04-12 05:44:17 +0000 | [diff] [blame] | 773 | struct pci_dev *dev, *tmp; |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 774 | int i; |
| 775 | unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM; |
| 776 | |
Yijing Wang | d65eba6 | 2013-04-12 05:44:17 +0000 | [diff] [blame] | 777 | list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) { |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 778 | for (i=0; i<PCI_BRIDGE_RESOURCES; i++) { |
| 779 | struct resource *res = &dev->resource[i]; |
| 780 | if ((res->flags & type_mask) && !res->start && |
| 781 | res->end) { |
| 782 | /* Could not assign a required resources |
| 783 | * for this device, remove it */ |
Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 784 | pci_stop_and_remove_bus_device(dev); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 785 | break; |
| 786 | } |
| 787 | } |
| 788 | } |
| 789 | } |
| 790 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | /* |
| 792 | * ACPI event handlers |
| 793 | */ |
| 794 | |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 795 | static acpi_status |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 796 | check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 797 | { |
| 798 | struct acpiphp_bridge *bridge; |
| 799 | char objname[64]; |
| 800 | struct acpi_buffer buffer = { .length = sizeof(objname), |
| 801 | .pointer = objname }; |
| 802 | |
| 803 | bridge = acpiphp_handle_to_bridge(handle); |
| 804 | if (bridge) { |
| 805 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 806 | dbg("%s: re-enumerating slots under %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 807 | __func__, objname); |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 808 | acpiphp_check_bridge(bridge); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 809 | put_bridge(bridge); |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 810 | } |
| 811 | return AE_OK ; |
| 812 | } |
| 813 | |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 814 | void acpiphp_check_host_bridge(acpi_handle handle) |
| 815 | { |
| 816 | struct acpiphp_bridge *bridge; |
| 817 | |
| 818 | bridge = acpiphp_handle_to_bridge(handle); |
| 819 | if (bridge) { |
| 820 | acpiphp_check_bridge(bridge); |
| 821 | put_bridge(bridge); |
| 822 | } |
| 823 | |
| 824 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, |
| 825 | ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL); |
| 826 | } |
| 827 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 828 | static void hotplug_event(acpi_handle handle, u32 type, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 830 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 831 | struct acpiphp_func *func = &context->func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | struct acpiphp_bridge *bridge; |
| 833 | char objname[64]; |
| 834 | struct acpi_buffer buffer = { .length = sizeof(objname), |
| 835 | .pointer = objname }; |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 836 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 837 | mutex_lock(&acpiphp_context_lock); |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 838 | bridge = context->bridge; |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 839 | if (bridge) |
| 840 | get_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 842 | mutex_unlock(&acpiphp_context_lock); |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 843 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 845 | |
| 846 | switch (type) { |
| 847 | case ACPI_NOTIFY_BUS_CHECK: |
| 848 | /* bus re-enumerate */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 849 | dbg("%s: Bus check notify on %s\n", __func__, objname); |
Jiang Liu | be6d286 | 2013-01-31 00:10:10 +0800 | [diff] [blame] | 850 | dbg("%s: re-enumerating slots under %s\n", __func__, objname); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 851 | if (bridge) { |
| 852 | acpiphp_check_bridge(bridge); |
| 853 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, |
| 854 | ACPI_UINT32_MAX, check_sub_bridges, |
| 855 | NULL, NULL, NULL); |
| 856 | } else { |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 857 | struct acpiphp_slot *slot = func->slot; |
| 858 | |
| 859 | mutex_lock(&slot->crit_sect); |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 860 | enable_slot(slot); |
Rafael J. Wysocki | 4ebe345 | 2013-07-16 22:10:35 +0200 | [diff] [blame] | 861 | mutex_unlock(&slot->crit_sect); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 862 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | break; |
| 864 | |
| 865 | case ACPI_NOTIFY_DEVICE_CHECK: |
| 866 | /* device check */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 867 | dbg("%s: Device check notify on %s\n", __func__, objname); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 868 | if (bridge) |
| 869 | acpiphp_check_bridge(bridge); |
| 870 | else |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 871 | acpiphp_check_bridge(func->parent); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 872 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | break; |
| 874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | case ACPI_NOTIFY_EJECT_REQUEST: |
| 876 | /* request device eject */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 877 | dbg("%s: Device eject notify on %s\n", __func__, objname); |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 878 | acpiphp_disable_and_eject_slot(func->slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | } |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 881 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 882 | if (bridge) |
| 883 | put_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 886 | static void hotplug_event_work(struct work_struct *work) |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 887 | { |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 888 | struct acpiphp_context *context; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 889 | struct acpi_hp_work *hp_work; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 890 | |
| 891 | hp_work = container_of(work, struct acpi_hp_work, work); |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 892 | context = hp_work->context; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 893 | acpi_scan_lock_acquire(); |
| 894 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 895 | hotplug_event(hp_work->handle, hp_work->type, context); |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 896 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 897 | acpi_scan_lock_release(); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 898 | kfree(hp_work); /* allocated in handle_hotplug_event() */ |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 899 | put_bridge(context->func.parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | } |
| 901 | |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 902 | /** |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 903 | * handle_hotplug_event - handle ACPI hotplug event |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 904 | * @handle: Notify()'ed acpi_handle |
| 905 | * @type: Notify code |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 906 | * @data: pointer to acpiphp_context structure |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 907 | * |
| 908 | * Handles ACPI event notification on slots. |
| 909 | */ |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 910 | static void handle_hotplug_event(acpi_handle handle, u32 type, void *data) |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 911 | { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 912 | struct acpiphp_context *context; |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 913 | |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 914 | switch (type) { |
| 915 | case ACPI_NOTIFY_BUS_CHECK: |
| 916 | case ACPI_NOTIFY_DEVICE_CHECK: |
| 917 | case ACPI_NOTIFY_EJECT_REQUEST: |
| 918 | break; |
| 919 | |
| 920 | case ACPI_NOTIFY_DEVICE_WAKE: |
| 921 | return; |
| 922 | |
| 923 | case ACPI_NOTIFY_FREQUENCY_MISMATCH: |
| 924 | acpi_handle_err(handle, "Device cannot be configured due " |
| 925 | "to a frequency mismatch\n"); |
| 926 | return; |
| 927 | |
| 928 | case ACPI_NOTIFY_BUS_MODE_MISMATCH: |
| 929 | acpi_handle_err(handle, "Device cannot be configured due " |
| 930 | "to a bus mode mismatch\n"); |
| 931 | return; |
| 932 | |
| 933 | case ACPI_NOTIFY_POWER_FAULT: |
| 934 | acpi_handle_err(handle, "Device has suffered a power fault\n"); |
| 935 | return; |
| 936 | |
| 937 | default: |
| 938 | acpi_handle_warn(handle, "Unsupported event type 0x%x\n", type); |
| 939 | return; |
| 940 | } |
| 941 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 942 | mutex_lock(&acpiphp_context_lock); |
| 943 | context = acpiphp_get_context(handle); |
| 944 | if (context) { |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 945 | get_bridge(context->func.parent); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 946 | acpiphp_put_context(context); |
Rafael J. Wysocki | 5c8d0e1 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 947 | alloc_acpi_hp_work(handle, type, context, hotplug_event_work); |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 948 | } |
| 949 | mutex_unlock(&acpiphp_context_lock); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 950 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 952 | /* |
| 953 | * Create hotplug slots for the PCI bus. |
| 954 | * It should always return 0 to avoid skipping following notifiers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | */ |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 956 | void acpiphp_enumerate_slots(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | { |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 958 | struct acpiphp_bridge *bridge; |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 959 | acpi_handle handle; |
| 960 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 962 | if (acpiphp_disabled) |
| 963 | return; |
| 964 | |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 965 | handle = ACPI_HANDLE(bus->bridge); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 966 | if (!handle) |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 967 | return; |
| 968 | |
| 969 | bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 970 | if (!bridge) { |
| 971 | acpi_handle_err(handle, "No memory for bridge object\n"); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 972 | return; |
| 973 | } |
| 974 | |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 975 | INIT_LIST_HEAD(&bridge->slots); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 976 | kref_init(&bridge->ref); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 977 | bridge->pci_dev = pci_dev_get(bus->self); |
| 978 | bridge->pci_bus = bus; |
| 979 | |
| 980 | /* |
| 981 | * Grab a ref to the subordinate PCI bus in case the bus is |
| 982 | * removed via PCI core logical hotplug. The ref pins the bus |
| 983 | * (which we access during module unload). |
| 984 | */ |
| 985 | get_device(&bus->dev); |
| 986 | |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 987 | if (!pci_is_root_bus(bridge->pci_bus)) { |
| 988 | struct acpiphp_context *context; |
| 989 | |
| 990 | /* |
| 991 | * This bridge should have been registered as a hotplug function |
| 992 | * under its parent, so the context has to be there. If not, we |
| 993 | * are in deep goo. |
| 994 | */ |
| 995 | mutex_lock(&acpiphp_context_lock); |
| 996 | context = acpiphp_get_context(handle); |
Rafael J. Wysocki | bd4674d | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 997 | if (WARN_ON(!context)) { |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 998 | mutex_unlock(&acpiphp_context_lock); |
| 999 | put_device(&bus->dev); |
| 1000 | kfree(bridge); |
| 1001 | return; |
| 1002 | } |
| 1003 | bridge->context = context; |
| 1004 | context->bridge = bridge; |
| 1005 | /* Get a reference to the parent bridge. */ |
Rafael J. Wysocki | bda46db | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 1006 | get_bridge(context->func.parent); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1007 | mutex_unlock(&acpiphp_context_lock); |
| 1008 | } |
| 1009 | |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1010 | /* must be added to the list prior to calling register_slot */ |
| 1011 | mutex_lock(&bridge_mutex); |
| 1012 | list_add(&bridge->list, &bridge_list); |
| 1013 | mutex_unlock(&bridge_mutex); |
| 1014 | |
| 1015 | /* register all slot objects under this bridge */ |
Rafael J. Wysocki | 89373a5 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 1016 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1, |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1017 | register_slot, NULL, bridge, NULL); |
| 1018 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | 89373a5 | 2013-07-13 23:27:25 +0200 | [diff] [blame] | 1019 | acpi_handle_err(handle, "failed to register slots\n"); |
Rafael J. Wysocki | bbd34fc | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1020 | cleanup_bridge(bridge); |
| 1021 | put_bridge(bridge); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1022 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | } |
| 1024 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1025 | /* Destroy hotplug slots associated with the PCI bus */ |
| 1026 | void acpiphp_remove_slots(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | { |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1028 | struct acpiphp_bridge *bridge, *tmp; |
| 1029 | |
| 1030 | if (acpiphp_disabled) |
| 1031 | return; |
| 1032 | |
| 1033 | list_for_each_entry_safe(bridge, tmp, &bridge_list, list) |
| 1034 | if (bridge->pci_bus == bus) { |
| 1035 | cleanup_bridge(bridge); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 1036 | put_bridge(bridge); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1037 | break; |
| 1038 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | /** |
| 1042 | * acpiphp_enable_slot - power on slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 1043 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | */ |
| 1045 | int acpiphp_enable_slot(struct acpiphp_slot *slot) |
| 1046 | { |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1047 | mutex_lock(&slot->crit_sect); |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1048 | /* configure all functions */ |
Kirill A. Shutemov | 55502dd | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1049 | if (!(slot->flags & SLOT_ENABLED)) |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 1050 | enable_slot(slot); |
Kirill A. Shutemov | 55502dd | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1051 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1052 | mutex_unlock(&slot->crit_sect); |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 1053 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | } |
| 1055 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | /** |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1057 | * acpiphp_disable_and_eject_slot - power off and eject slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 1058 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | */ |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1060 | int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | { |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1062 | struct acpiphp_func *func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | int retval = 0; |
| 1064 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1065 | mutex_lock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | |
| 1067 | /* unconfigure all functions */ |
Rafael J. Wysocki | a1d0abc | 2013-07-13 23:27:26 +0200 | [diff] [blame^] | 1068 | disable_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | |
Mika Westerberg | ad21d2d | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1070 | list_for_each_entry(func, &slot->funcs, sibling) |
| 1071 | if (func->flags & FUNC_HAS_EJ0) { |
| 1072 | acpi_handle handle = func_to_handle(func); |
| 1073 | |
| 1074 | if (ACPI_FAILURE(acpi_evaluate_ej0(handle))) |
| 1075 | acpi_handle_err(handle, "_EJ0 failed\n"); |
| 1076 | |
| 1077 | break; |
| 1078 | } |
| 1079 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1080 | mutex_unlock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | return retval; |
| 1082 | } |
| 1083 | |
| 1084 | |
| 1085 | /* |
| 1086 | * slot enabled: 1 |
| 1087 | * slot disabled: 0 |
| 1088 | */ |
| 1089 | u8 acpiphp_get_power_status(struct acpiphp_slot *slot) |
| 1090 | { |
Rafael J. Wysocki | bc805a5 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1091 | return (slot->flags & SLOT_ENABLED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | } |
| 1093 | |
| 1094 | |
| 1095 | /* |
MUNEDA Takahiro | 35ae61a | 2006-10-25 11:44:57 -0700 | [diff] [blame] | 1096 | * latch open: 1 |
| 1097 | * latch closed: 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | */ |
| 1099 | u8 acpiphp_get_latch_status(struct acpiphp_slot *slot) |
| 1100 | { |
Mika Westerberg | 1ad3790 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1101 | return !(get_slot_status(slot) & ACPI_STA_DEVICE_UI); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | } |
| 1103 | |
| 1104 | |
| 1105 | /* |
| 1106 | * adapter presence : 1 |
| 1107 | * absence : 0 |
| 1108 | */ |
| 1109 | u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot) |
| 1110 | { |
Mika Westerberg | 1ad3790 | 2013-07-13 23:27:26 +0200 | [diff] [blame] | 1111 | return !!get_slot_status(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | } |