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> |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 49 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 50 | #include <linux/slab.h> |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 51 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | #include "../pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include "acpiphp.h" |
| 55 | |
| 56 | static LIST_HEAD(bridge_list); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 57 | static DEFINE_MUTEX(bridge_mutex); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 58 | static DEFINE_MUTEX(acpiphp_context_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | #define MY_NAME "acpiphp_glue" |
| 61 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 62 | static void handle_hotplug_event(acpi_handle handle, u32 type, void *data); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 63 | static void acpiphp_sanitize_bus(struct pci_bus *bus); |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 64 | static void acpiphp_set_hpp_values(struct pci_bus *bus); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 65 | static void hotplug_event(acpi_handle handle, u32 type, void *data); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 66 | static void free_bridge(struct kref *kref); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 67 | |
MUNEDA Takahiro | 5a340ed | 2007-11-09 19:07:02 +0900 | [diff] [blame] | 68 | /* callback routine to check for the existence of a pci dock device */ |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 69 | static acpi_status |
| 70 | is_pci_dock_device(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 71 | { |
| 72 | int *count = (int *)context; |
| 73 | |
| 74 | if (is_dock_device(handle)) { |
| 75 | (*count)++; |
| 76 | return AE_CTRL_TERMINATE; |
| 77 | } else { |
| 78 | return AE_OK; |
| 79 | } |
| 80 | } |
| 81 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 82 | static void acpiphp_context_handler(acpi_handle handle, void *context) |
| 83 | { |
| 84 | /* Intentionally empty. */ |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * acpiphp_init_context - Create hotplug context and grab a reference to it. |
| 89 | * @handle: ACPI object handle to create the context for. |
| 90 | * |
| 91 | * Call under acpiphp_context_lock. |
| 92 | */ |
| 93 | static struct acpiphp_context *acpiphp_init_context(acpi_handle handle) |
| 94 | { |
| 95 | struct acpiphp_context *context; |
| 96 | acpi_status status; |
| 97 | |
| 98 | context = kzalloc(sizeof(*context), GFP_KERNEL); |
| 99 | if (!context) |
| 100 | return NULL; |
| 101 | |
| 102 | context->handle = handle; |
| 103 | context->refcount = 1; |
| 104 | status = acpi_attach_data(handle, acpiphp_context_handler, context); |
| 105 | if (ACPI_FAILURE(status)) { |
| 106 | kfree(context); |
| 107 | return NULL; |
| 108 | } |
| 109 | return context; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * acpiphp_get_context - Get hotplug context and grab a reference to it. |
| 114 | * @handle: ACPI object handle to get the context for. |
| 115 | * |
| 116 | * Call under acpiphp_context_lock. |
| 117 | */ |
| 118 | static struct acpiphp_context *acpiphp_get_context(acpi_handle handle) |
| 119 | { |
| 120 | struct acpiphp_context *context = NULL; |
| 121 | acpi_status status; |
| 122 | void *data; |
| 123 | |
| 124 | status = acpi_get_data(handle, acpiphp_context_handler, &data); |
| 125 | if (ACPI_SUCCESS(status)) { |
| 126 | context = data; |
| 127 | context->refcount++; |
| 128 | } |
| 129 | return context; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * acpiphp_put_context - Drop a reference to ACPI hotplug context. |
| 134 | * @handle: ACPI object handle to put the context for. |
| 135 | * |
| 136 | * The context object is removed if there are no more references to it. |
| 137 | * |
| 138 | * Call under acpiphp_context_lock. |
| 139 | */ |
| 140 | static void acpiphp_put_context(struct acpiphp_context *context) |
| 141 | { |
| 142 | if (--context->refcount) |
| 143 | return; |
| 144 | |
| 145 | WARN_ON(context->func || context->bridge); |
| 146 | acpi_detach_data(context->handle, acpiphp_context_handler); |
| 147 | kfree(context); |
| 148 | } |
| 149 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 150 | static inline void get_bridge(struct acpiphp_bridge *bridge) |
| 151 | { |
| 152 | kref_get(&bridge->ref); |
| 153 | } |
| 154 | |
| 155 | static inline void put_bridge(struct acpiphp_bridge *bridge) |
| 156 | { |
| 157 | kref_put(&bridge->ref, free_bridge); |
| 158 | } |
| 159 | |
| 160 | static void free_bridge(struct kref *kref) |
| 161 | { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 162 | struct acpiphp_context *context; |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 163 | struct acpiphp_bridge *bridge; |
| 164 | struct acpiphp_slot *slot, *next; |
| 165 | struct acpiphp_func *func, *tmp; |
| 166 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 167 | mutex_lock(&acpiphp_context_lock); |
| 168 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 169 | bridge = container_of(kref, struct acpiphp_bridge, ref); |
| 170 | |
| 171 | list_for_each_entry_safe(slot, next, &bridge->slots, node) { |
| 172 | list_for_each_entry_safe(func, tmp, &slot->funcs, sibling) { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 173 | context = func->context; |
| 174 | context->func = NULL; |
| 175 | acpiphp_put_context(context); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 176 | kfree(func); |
| 177 | } |
| 178 | kfree(slot); |
| 179 | } |
| 180 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 181 | context = bridge->context; |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 182 | /* Release the reference acquired by acpiphp_enumerate_slots(). */ |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 183 | if (context->handler_for_func) |
Rafael J. Wysocki | f281811 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 184 | put_bridge(context->func->slot->bridge); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 185 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 186 | put_device(&bridge->pci_bus->dev); |
| 187 | pci_dev_put(bridge->pci_dev); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 188 | context->bridge = NULL; |
| 189 | acpiphp_put_context(context); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 190 | kfree(bridge); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 191 | |
| 192 | mutex_unlock(&acpiphp_context_lock); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 195 | /* |
| 196 | * the _DCK method can do funny things... and sometimes not |
| 197 | * hah-hah funny. |
| 198 | * |
| 199 | * TBD - figure out a way to only call fixups for |
| 200 | * systems that require them. |
| 201 | */ |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 202 | 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] | 203 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 204 | struct acpiphp_context *context = data; |
| 205 | struct pci_bus *bus = context->func->slot->bridge->pci_bus; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 206 | u32 buses; |
| 207 | |
| 208 | if (!bus->self) |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 209 | return; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 210 | |
| 211 | /* fixup bad _DCK function that rewrites |
| 212 | * secondary bridge on slot |
| 213 | */ |
| 214 | pci_read_config_dword(bus->self, |
| 215 | PCI_PRIMARY_BUS, |
| 216 | &buses); |
| 217 | |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 218 | if (((buses >> 8) & 0xff) != bus->busn_res.start) { |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 219 | buses = (buses & 0xff000000) |
Alex Chiang | 2a9d352 | 2008-12-11 11:17:55 -0700 | [diff] [blame] | 220 | | ((unsigned int)(bus->primary) << 0) |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 221 | | ((unsigned int)(bus->busn_res.start) << 8) |
| 222 | | ((unsigned int)(bus->busn_res.end) << 16); |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 223 | pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses); |
| 224 | } |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | |
Vasiliy Kulikov | 9c8b04b | 2011-06-25 21:07:52 +0400 | [diff] [blame] | 228 | static const struct acpi_dock_ops acpiphp_dock_ops = { |
Rafael J. Wysocki | f09ce74 | 2013-07-05 03:03:25 +0200 | [diff] [blame] | 229 | .fixup = post_dock_fixups, |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 230 | .handler = hotplug_event, |
Shaohua Li | 1253f7a | 2008-08-28 10:06:16 +0800 | [diff] [blame] | 231 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Jiang Liu | 5ba113f | 2012-08-22 23:16:45 +0800 | [diff] [blame] | 233 | /* Check whether the PCI device is managed by native PCIe hotplug driver */ |
| 234 | static bool device_is_managed_by_native_pciehp(struct pci_dev *pdev) |
| 235 | { |
| 236 | u32 reg32; |
| 237 | acpi_handle tmp; |
| 238 | struct acpi_pci_root *root; |
| 239 | |
| 240 | /* Check whether the PCIe port supports native PCIe hotplug */ |
| 241 | if (pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, ®32)) |
| 242 | return false; |
| 243 | if (!(reg32 & PCI_EXP_SLTCAP_HPC)) |
| 244 | return false; |
| 245 | |
| 246 | /* |
| 247 | * Check whether native PCIe hotplug has been enabled for |
| 248 | * this PCIe hierarchy. |
| 249 | */ |
| 250 | tmp = acpi_find_root_bridge_handle(pdev); |
| 251 | if (!tmp) |
| 252 | return false; |
| 253 | root = acpi_pci_find_root(tmp); |
| 254 | if (!root) |
| 255 | return false; |
| 256 | if (!(root->osc_control_set & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL)) |
| 257 | return false; |
| 258 | |
| 259 | return true; |
| 260 | } |
| 261 | |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 262 | static void acpiphp_dock_init(void *data) |
| 263 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 264 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 265 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 266 | get_bridge(context->func->slot->bridge); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static void acpiphp_dock_release(void *data) |
| 270 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 271 | struct acpiphp_context *context = data; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 272 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 273 | put_bridge(context->func->slot->bridge); |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 274 | } |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* callback routine to register each ACPI PCI slot object */ |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 277 | static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data, |
| 278 | void **rv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 280 | struct acpiphp_bridge *bridge = data; |
| 281 | struct acpiphp_context *context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | struct acpiphp_slot *slot; |
| 283 | struct acpiphp_func *newfunc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | acpi_status status = AE_OK; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 285 | unsigned long long adr, sun; |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame^] | 286 | int device, function, retval; |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 287 | struct pci_bus *pbus = bridge->pci_bus; |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 288 | struct pci_dev *pdev; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 289 | u32 val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 291 | if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | return AE_OK; |
| 293 | |
Bjorn Helgaas | dfb117b | 2012-06-20 16:18:29 -0600 | [diff] [blame] | 294 | status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); |
| 295 | if (ACPI_FAILURE(status)) { |
| 296 | warn("can't evaluate _ADR (%#x)\n", status); |
| 297 | return AE_OK; |
| 298 | } |
| 299 | |
| 300 | device = (adr >> 16) & 0xffff; |
| 301 | function = adr & 0xffff; |
| 302 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 303 | pdev = bridge->pci_dev; |
Jiang Liu | 5ba113f | 2012-08-22 23:16:45 +0800 | [diff] [blame] | 304 | if (pdev && device_is_managed_by_native_pciehp(pdev)) |
| 305 | return AE_OK; |
Rafael J. Wysocki | 619a518 | 2011-12-13 00:02:28 +0100 | [diff] [blame] | 306 | |
Eric Sesterhenn | f5afe80 | 2006-02-28 15:34:49 +0100 | [diff] [blame] | 307 | newfunc = kzalloc(sizeof(struct acpiphp_func), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | if (!newfunc) |
| 309 | return AE_NO_MEMORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | newfunc->handle = handle; |
| 312 | newfunc->function = function; |
Matthew Garrett | 56ee325 | 2008-11-25 21:48:14 +0000 | [diff] [blame] | 313 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 314 | mutex_lock(&acpiphp_context_lock); |
| 315 | context = acpiphp_init_context(handle); |
| 316 | if (!context) { |
| 317 | mutex_unlock(&acpiphp_context_lock); |
| 318 | acpi_handle_err(handle, "No hotplug context\n"); |
| 319 | kfree(newfunc); |
| 320 | return AE_NOT_EXIST; |
| 321 | } |
| 322 | newfunc->context = context; |
| 323 | context->func = newfunc; |
| 324 | mutex_unlock(&acpiphp_context_lock); |
| 325 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 326 | if (acpi_has_method(handle, "_EJ0")) |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 327 | newfunc->flags = FUNC_HAS_EJ0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 329 | if (acpi_has_method(handle, "_STA")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | newfunc->flags |= FUNC_HAS_STA; |
| 331 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 332 | if (acpi_has_method(handle, "_PS0")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | newfunc->flags |= FUNC_HAS_PS0; |
| 334 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 335 | if (acpi_has_method(handle, "_PS3")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | newfunc->flags |= FUNC_HAS_PS3; |
| 337 | |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 338 | if (acpi_has_method(handle, "_DCK")) |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 339 | newfunc->flags |= FUNC_HAS_DCK; |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun); |
Kristen Accardi | 95b38b3 | 2006-06-28 03:09:54 -0400 | [diff] [blame] | 342 | if (ACPI_FAILURE(status)) { |
| 343 | /* |
| 344 | * use the count of the number of slots we've found |
| 345 | * for the number of the slot |
| 346 | */ |
| 347 | sun = bridge->nr_slots+1; |
| 348 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
| 350 | /* search for objects that share the same slot */ |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 351 | list_for_each_entry(slot, &bridge->slots, node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | if (slot->device == device) { |
| 353 | if (slot->sun != sun) |
| 354 | warn("sibling found, but _SUN doesn't match!\n"); |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame^] | 355 | |
| 356 | goto slot_found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame^] | 359 | slot = kzalloc(sizeof(struct acpiphp_slot), GFP_KERNEL); |
| 360 | if (!slot) { |
| 361 | status = AE_NO_MEMORY; |
| 362 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
| 364 | |
Rafael J. Wysocki | ac37233 | 2013-07-13 23:27:24 +0200 | [diff] [blame^] | 365 | slot->bridge = bridge; |
| 366 | slot->device = device; |
| 367 | slot->sun = sun; |
| 368 | INIT_LIST_HEAD(&slot->funcs); |
| 369 | mutex_init(&slot->crit_sect); |
| 370 | |
| 371 | mutex_lock(&bridge_mutex); |
| 372 | list_add_tail(&slot->node, &bridge->slots); |
| 373 | mutex_unlock(&bridge_mutex); |
| 374 | bridge->nr_slots++; |
| 375 | |
| 376 | dbg("found ACPI PCI Hotplug slot %llu at PCI %04x:%02x:%02x\n", |
| 377 | slot->sun, pci_domain_nr(pbus), pbus->number, device); |
| 378 | |
| 379 | retval = acpiphp_register_hotplug_slot(slot); |
| 380 | if (retval) { |
| 381 | if (retval == -EBUSY) |
| 382 | warn("Slot %llu already registered by another " |
| 383 | "hotplug driver\n", slot->sun); |
| 384 | else |
| 385 | warn("acpiphp_register_hotplug_slot failed " |
| 386 | "(err code = 0x%x)\n", retval); |
| 387 | |
| 388 | bridge->nr_slots--; |
| 389 | mutex_lock(&bridge_mutex); |
| 390 | list_del(&slot->node); |
| 391 | mutex_unlock(&bridge_mutex); |
| 392 | kfree(slot); |
| 393 | status = AE_OK; |
| 394 | goto err; |
| 395 | } |
| 396 | |
| 397 | slot_found: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | newfunc->slot = slot; |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 399 | mutex_lock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | list_add_tail(&newfunc->sibling, &slot->funcs); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 401 | mutex_unlock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 403 | if (pci_bus_read_dev_vendor_id(pbus, PCI_DEVFN(device, function), |
| 404 | &val, 60*1000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 407 | if (is_dock_device(handle)) { |
| 408 | /* we don't want to call this device's _EJ0 |
| 409 | * because we want the dock notify handler |
| 410 | * to call it after it calls _DCK |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 411 | */ |
| 412 | newfunc->flags &= ~FUNC_HAS_EJ0; |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 413 | if (register_hotplug_dock_device(handle, |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 414 | &acpiphp_dock_ops, context, |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 415 | acpiphp_dock_init, acpiphp_dock_release)) |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 416 | dbg("failed to register dock device\n"); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 417 | } |
| 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | /* install notify handler */ |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 420 | if (!(newfunc->flags & FUNC_HAS_DCK)) { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 421 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
| 422 | handle_hotplug_event, |
| 423 | context); |
| 424 | if (ACPI_SUCCESS(status)) |
| 425 | context->handler_for_func = true; |
| 426 | else |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 427 | err("failed to register interrupt notify handler\n"); |
Rafael J. Wysocki | 2e862c5 | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 428 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
Rafael J. Wysocki | 2e862c5 | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 430 | return AE_OK; |
MUNEDA Takahiro | e27da38 | 2006-02-23 17:56:08 -0800 | [diff] [blame] | 431 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 432 | err: |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 433 | mutex_lock(&acpiphp_context_lock); |
| 434 | context->func = NULL; |
| 435 | acpiphp_put_context(context); |
| 436 | mutex_unlock(&acpiphp_context_lock); |
| 437 | kfree(newfunc); |
| 438 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | |
| 442 | /* see if it's worth looking at this bridge */ |
Alex Chiang | 6edd767 | 2009-09-10 12:34:04 -0600 | [diff] [blame] | 443 | static int detect_ejectable_slots(acpi_handle handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
Alex Chiang | 7f53866 | 2009-09-10 12:34:09 -0600 | [diff] [blame] | 445 | int found = acpi_pci_detect_ejectable(handle); |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 446 | if (!found) { |
Alex Chiang | 6edd767 | 2009-09-10 12:34:04 -0600 | [diff] [blame] | 447 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 448 | is_pci_dock_device, NULL, (void *)&found, NULL); |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 449 | } |
| 450 | return found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 453 | static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle) |
| 454 | { |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 455 | struct acpiphp_context *context; |
| 456 | struct acpiphp_bridge *bridge = NULL; |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 457 | |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 458 | mutex_lock(&acpiphp_context_lock); |
| 459 | context = acpiphp_get_context(handle); |
| 460 | if (context) { |
| 461 | bridge = context->bridge; |
| 462 | if (bridge) |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 463 | get_bridge(bridge); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 464 | |
Rafael J. Wysocki | ed13feb | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 465 | acpiphp_put_context(context); |
| 466 | } |
| 467 | mutex_unlock(&acpiphp_context_lock); |
| 468 | return bridge; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 469 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Rajesh Shah | 364d509 | 2005-04-28 00:25:54 -0700 | [diff] [blame] | 471 | static void cleanup_bridge(struct acpiphp_bridge *bridge) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | { |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 473 | struct acpiphp_slot *slot; |
| 474 | struct acpiphp_func *func; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 475 | acpi_status status; |
Rajesh Shah | 364d509 | 2005-04-28 00:25:54 -0700 | [diff] [blame] | 476 | acpi_handle handle = bridge->handle; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 477 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 478 | if (!bridge->context->handler_for_func) { |
| 479 | status = acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
| 480 | handle_hotplug_event); |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 481 | if (ACPI_FAILURE(status)) |
| 482 | err("failed to remove notify handler\n"); |
| 483 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 484 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 485 | list_for_each_entry(slot, &bridge->slots, node) { |
| 486 | list_for_each_entry(func, &slot->funcs, sibling) { |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 487 | if (is_dock_device(func->handle)) { |
| 488 | unregister_hotplug_dock_device(func->handle); |
Kristen Accardi | 4e8662b | 2006-06-28 03:08:06 -0400 | [diff] [blame] | 489 | } |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 490 | if (!(func->flags & FUNC_HAS_DCK)) { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 491 | func->context->handler_for_func = false; |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 492 | status = acpi_remove_notify_handler(func->handle, |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 493 | ACPI_SYSTEM_NOTIFY, |
| 494 | handle_hotplug_event); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 495 | if (ACPI_FAILURE(status)) |
| 496 | err("failed to remove notify handler\n"); |
| 497 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 498 | } |
MUNEDA Takahiro | e27da38 | 2006-02-23 17:56:08 -0800 | [diff] [blame] | 499 | acpiphp_unregister_hotplug_slot(slot); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 502 | mutex_lock(&bridge_mutex); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 503 | list_del(&bridge->list); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 504 | mutex_unlock(&bridge_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | } |
| 506 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | static int power_on_slot(struct acpiphp_slot *slot) |
| 508 | { |
| 509 | acpi_status status; |
| 510 | struct acpiphp_func *func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | int retval = 0; |
| 512 | |
| 513 | /* if already enabled, just skip */ |
| 514 | if (slot->flags & SLOT_POWEREDON) |
| 515 | goto err_exit; |
| 516 | |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 517 | list_for_each_entry(func, &slot->funcs, sibling) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | if (func->flags & FUNC_HAS_PS0) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 519 | dbg("%s: executing _PS0\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL); |
| 521 | if (ACPI_FAILURE(status)) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 522 | warn("%s: _PS0 failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | retval = -1; |
| 524 | goto err_exit; |
| 525 | } else |
| 526 | break; |
| 527 | } |
| 528 | } |
| 529 | |
| 530 | /* TBD: evaluate _STA to check if the slot is enabled */ |
| 531 | |
| 532 | slot->flags |= SLOT_POWEREDON; |
| 533 | |
| 534 | err_exit: |
| 535 | return retval; |
| 536 | } |
| 537 | |
| 538 | |
| 539 | static int power_off_slot(struct acpiphp_slot *slot) |
| 540 | { |
| 541 | acpi_status status; |
| 542 | struct acpiphp_func *func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
| 544 | int retval = 0; |
| 545 | |
| 546 | /* if already disabled, just skip */ |
| 547 | if ((slot->flags & SLOT_POWEREDON) == 0) |
| 548 | goto err_exit; |
| 549 | |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 550 | list_for_each_entry(func, &slot->funcs, sibling) { |
Rajesh Shah | 2f523b1 | 2005-04-28 00:25:55 -0700 | [diff] [blame] | 551 | if (func->flags & FUNC_HAS_PS3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL); |
| 553 | if (ACPI_FAILURE(status)) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 554 | warn("%s: _PS3 failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | retval = -1; |
| 556 | goto err_exit; |
| 557 | } else |
| 558 | break; |
| 559 | } |
| 560 | } |
| 561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | /* TBD: evaluate _STA to check if the slot is disabled */ |
| 563 | |
| 564 | slot->flags &= (~SLOT_POWEREDON); |
| 565 | |
| 566 | err_exit: |
| 567 | return retval; |
| 568 | } |
| 569 | |
| 570 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 571 | |
| 572 | /** |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 573 | * 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] | 574 | * @bus: bus to start search with |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 575 | */ |
| 576 | static unsigned char acpiphp_max_busnr(struct pci_bus *bus) |
| 577 | { |
| 578 | struct list_head *tmp; |
| 579 | unsigned char max, n; |
| 580 | |
| 581 | /* |
| 582 | * pci_bus_max_busnr will return the highest |
| 583 | * reserved busnr for all these children. |
| 584 | * that is equivalent to the bus->subordinate |
| 585 | * value. We don't want to use the parent's |
| 586 | * bus->subordinate value because it could have |
| 587 | * padding in it. |
| 588 | */ |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 589 | max = bus->busn_res.start; |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 590 | |
| 591 | list_for_each(tmp, &bus->children) { |
| 592 | n = pci_bus_max_busnr(pci_bus_b(tmp)); |
| 593 | if (n > max) |
| 594 | max = n; |
| 595 | } |
| 596 | return max; |
| 597 | } |
| 598 | |
| 599 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 600 | /** |
| 601 | * acpiphp_bus_add - add a new bus to acpi subsystem |
| 602 | * @func: acpiphp_func of the bridge |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 603 | */ |
| 604 | static int acpiphp_bus_add(struct acpiphp_func *func) |
| 605 | { |
Rafael J. Wysocki | 636458d | 2012-12-21 00:36:47 +0100 | [diff] [blame] | 606 | struct acpi_device *device; |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 607 | int ret_val; |
| 608 | |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 609 | if (!acpi_bus_get_device(func->handle, &device)) { |
| 610 | dbg("bus exists... trim\n"); |
| 611 | /* this shouldn't be in here, so remove |
| 612 | * the bus then re-add it... |
| 613 | */ |
Rafael J. Wysocki | bfee26d | 2013-01-26 00:27:44 +0100 | [diff] [blame] | 614 | acpi_bus_trim(device); |
Kristen Accardi | 20416ea | 2006-02-23 17:56:03 -0800 | [diff] [blame] | 615 | } |
| 616 | |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 617 | ret_val = acpi_bus_scan(func->handle); |
Rafael J. Wysocki | 0cd6ac5 | 2012-12-21 00:36:49 +0100 | [diff] [blame] | 618 | if (!ret_val) |
| 619 | ret_val = acpi_bus_get_device(func->handle, &device); |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 620 | |
Rafael J. Wysocki | 0cd6ac5 | 2012-12-21 00:36:49 +0100 | [diff] [blame] | 621 | if (ret_val) |
| 622 | dbg("error adding bus, %x\n", -ret_val); |
| 623 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 624 | return ret_val; |
| 625 | } |
| 626 | |
| 627 | |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 628 | /** |
| 629 | * acpiphp_bus_trim - trim a bus from acpi subsystem |
| 630 | * @handle: handle to acpi namespace |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 631 | */ |
Adrian Bunk | 6d47a5e | 2006-08-14 23:07:38 -0700 | [diff] [blame] | 632 | static int acpiphp_bus_trim(acpi_handle handle) |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 633 | { |
| 634 | struct acpi_device *device; |
| 635 | int retval; |
| 636 | |
| 637 | retval = acpi_bus_get_device(handle, &device); |
| 638 | if (retval) { |
| 639 | dbg("acpi_device not found\n"); |
| 640 | return retval; |
| 641 | } |
| 642 | |
Rafael J. Wysocki | bfee26d | 2013-01-26 00:27:44 +0100 | [diff] [blame] | 643 | acpi_bus_trim(device); |
| 644 | return 0; |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 645 | } |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 646 | |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 647 | static void acpiphp_set_acpi_region(struct acpiphp_slot *slot) |
| 648 | { |
| 649 | struct acpiphp_func *func; |
| 650 | union acpi_object params[2]; |
| 651 | struct acpi_object_list arg_list; |
| 652 | |
| 653 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 654 | arg_list.count = 2; |
| 655 | arg_list.pointer = params; |
| 656 | params[0].type = ACPI_TYPE_INTEGER; |
| 657 | params[0].integer.value = ACPI_ADR_SPACE_PCI_CONFIG; |
| 658 | params[1].type = ACPI_TYPE_INTEGER; |
| 659 | params[1].integer.value = 1; |
| 660 | /* _REG is optional, we don't care about if there is failure */ |
| 661 | acpi_evaluate_object(func->handle, "_REG", &arg_list, NULL); |
| 662 | } |
| 663 | } |
| 664 | |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 665 | static void check_hotplug_bridge(struct acpiphp_slot *slot, struct pci_dev *dev) |
| 666 | { |
| 667 | struct acpiphp_func *func; |
| 668 | |
| 669 | if (!dev->subordinate) |
| 670 | return; |
| 671 | |
| 672 | /* quirk, or pcie could set it already */ |
| 673 | if (dev->is_hotplug_bridge) |
| 674 | return; |
| 675 | |
| 676 | if (PCI_SLOT(dev->devfn) != slot->device) |
| 677 | return; |
| 678 | |
| 679 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 680 | if (PCI_FUNC(dev->devfn) == func->function) { |
| 681 | /* check if this bridge has ejectable slots */ |
| 682 | if ((detect_ejectable_slots(func->handle) > 0)) |
| 683 | dev->is_hotplug_bridge = 1; |
| 684 | break; |
| 685 | } |
| 686 | } |
| 687 | } |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | /** |
| 690 | * enable_device - enable, configure a slot |
| 691 | * @slot: slot to be enabled |
| 692 | * |
| 693 | * This function should be called per *physical slot*, |
| 694 | * not per each slot object in ACPI namespace. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | */ |
Sam Ravnborg | 0ab2b57 | 2008-02-17 10:45:28 +0100 | [diff] [blame] | 696 | static int __ref enable_device(struct acpiphp_slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | struct pci_dev *dev; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 699 | struct pci_bus *bus = slot->bridge->pci_bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | struct acpiphp_func *func; |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 701 | int num, max, pass; |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 702 | LIST_HEAD(add_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
| 704 | if (slot->flags & SLOT_ENABLED) |
| 705 | goto err_exit; |
| 706 | |
Jiang Liu | 2ca344e | 2013-01-31 00:10:09 +0800 | [diff] [blame] | 707 | list_for_each_entry(func, &slot->funcs, sibling) |
| 708 | acpiphp_bus_add(func); |
| 709 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 710 | num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0)); |
| 711 | if (num == 0) { |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 712 | /* Maybe only part of funcs are added. */ |
| 713 | dbg("No new device found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | goto err_exit; |
| 715 | } |
| 716 | |
Kristen Accardi | 15a1ae7 | 2006-02-23 17:55:58 -0800 | [diff] [blame] | 717 | max = acpiphp_max_busnr(bus); |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 718 | for (pass = 0; pass < 2; pass++) { |
| 719 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 720 | if (PCI_SLOT(dev->devfn) != slot->device) |
| 721 | continue; |
| 722 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || |
Kristen Accardi | c64b5ee | 2005-12-14 09:37:26 -0800 | [diff] [blame] | 723 | dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 724 | max = pci_scan_bridge(bus, dev, max, pass); |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 725 | if (pass && dev->subordinate) { |
| 726 | check_hotplug_bridge(slot, dev); |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 727 | pcibios_resource_survey_bus(dev->subordinate); |
| 728 | __pci_bus_size_bridges(dev->subordinate, |
| 729 | &add_list); |
Yinghai Lu | 1f96a96 | 2013-01-21 13:20:42 -0800 | [diff] [blame] | 730 | } |
Kristen Accardi | c64b5ee | 2005-12-14 09:37:26 -0800 | [diff] [blame] | 731 | } |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 732 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Jiang Liu | d66ecb7 | 2013-06-23 01:01:35 +0200 | [diff] [blame] | 735 | __pci_bus_assign_resources(bus, &add_list, NULL); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 736 | acpiphp_sanitize_bus(bus); |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 737 | acpiphp_set_hpp_values(bus); |
Shaohua Li | d060705 | 2010-02-25 10:59:34 +0800 | [diff] [blame] | 738 | acpiphp_set_acpi_region(slot); |
Kristen Accardi | 8e5dce3 | 2005-10-18 17:21:40 -0700 | [diff] [blame] | 739 | pci_enable_bridges(bus); |
Ian Campbell | 69643e4 | 2011-05-11 17:00:32 +0100 | [diff] [blame] | 740 | |
| 741 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 742 | /* Assume that newly added devices are powered on already. */ |
| 743 | if (!dev->is_added) |
| 744 | dev->current_state = PCI_D0; |
| 745 | } |
| 746 | |
Rajesh Shah | 42f49a6 | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 747 | pci_bus_add_devices(bus); |
| 748 | |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 749 | slot->flags |= SLOT_ENABLED; |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 750 | list_for_each_entry(func, &slot->funcs, sibling) { |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 751 | dev = pci_get_slot(bus, PCI_DEVFN(slot->device, |
| 752 | func->function)); |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 753 | if (!dev) { |
| 754 | /* Do not set SLOT_ENABLED flag if some funcs |
| 755 | are not added. */ |
| 756 | slot->flags &= (~SLOT_ENABLED); |
MUNEDA Takahiro | 551bcb7 | 2006-03-22 14:49:20 +0900 | [diff] [blame] | 757 | continue; |
Amos Kong | f382a08 | 2011-11-25 15:03:07 +0800 | [diff] [blame] | 758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | err_exit: |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 763 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
| 765 | |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 766 | /* return first device in slot, acquiring a reference on it */ |
| 767 | static struct pci_dev *dev_in_slot(struct acpiphp_slot *slot) |
| 768 | { |
| 769 | struct pci_bus *bus = slot->bridge->pci_bus; |
| 770 | struct pci_dev *dev; |
| 771 | struct pci_dev *ret = NULL; |
| 772 | |
| 773 | down_read(&pci_bus_sem); |
| 774 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 775 | if (PCI_SLOT(dev->devfn) == slot->device) { |
| 776 | ret = pci_dev_get(dev); |
| 777 | break; |
| 778 | } |
| 779 | up_read(&pci_bus_sem); |
| 780 | |
| 781 | return ret; |
| 782 | } |
| 783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | /** |
| 785 | * disable_device - disable a slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 786 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | */ |
| 788 | static int disable_device(struct acpiphp_slot *slot) |
| 789 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | struct acpiphp_func *func; |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 791 | struct pci_dev *pdev; |
MUNEDA Takahiro | 551bcb7 | 2006-03-22 14:49:20 +0900 | [diff] [blame] | 792 | |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 793 | /* |
| 794 | * enable_device() enumerates all functions in this device via |
| 795 | * pci_scan_slot(), whether they have associated ACPI hotplug |
| 796 | * methods (_EJ0, etc.) or not. Therefore, we remove all functions |
| 797 | * here. |
| 798 | */ |
| 799 | while ((pdev = dev_in_slot(slot))) { |
Bjorn Helgaas | 34e5484 | 2012-08-17 10:03:47 -0600 | [diff] [blame] | 800 | pci_stop_and_remove_bus_device(pdev); |
Amos Kong | ce29ca3 | 2012-05-23 10:20:35 -0600 | [diff] [blame] | 801 | pci_dev_put(pdev); |
Satoru Takeuchi | 600812e | 2006-09-12 10:22:53 -0700 | [diff] [blame] | 802 | } |
Satoru Takeuchi | 0dad351 | 2006-09-12 10:17:46 -0700 | [diff] [blame] | 803 | |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 804 | list_for_each_entry(func, &slot->funcs, sibling) { |
MUNEDA Takahiro | 92c9be9 | 2006-03-22 14:49:09 +0900 | [diff] [blame] | 805 | acpiphp_bus_trim(func->handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | } |
| 807 | |
| 808 | slot->flags &= (~SLOT_ENABLED); |
| 809 | |
Alex Chiang | 9d911d7 | 2009-05-21 16:21:15 -0600 | [diff] [blame] | 810 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | |
| 814 | /** |
| 815 | * get_slot_status - get ACPI slot status |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 816 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 818 | * If a slot has _STA for each function and if any one of them |
| 819 | * returned non-zero status, return it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 821 | * If a slot doesn't have _STA and if any one of its functions' |
| 822 | * configuration space is configured, return 0x0f as a _STA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 824 | * Otherwise return 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | */ |
| 826 | static unsigned int get_slot_status(struct acpiphp_slot *slot) |
| 827 | { |
| 828 | acpi_status status; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 829 | unsigned long long sta = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | u32 dvid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | struct acpiphp_func *func; |
| 832 | |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 833 | list_for_each_entry(func, &slot->funcs, sibling) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | if (func->flags & FUNC_HAS_STA) { |
| 835 | status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta); |
| 836 | if (ACPI_SUCCESS(status) && sta) |
| 837 | break; |
| 838 | } else { |
| 839 | pci_bus_read_config_dword(slot->bridge->pci_bus, |
| 840 | PCI_DEVFN(slot->device, |
| 841 | func->function), |
| 842 | PCI_VENDOR_ID, &dvid); |
| 843 | if (dvid != 0xffffffff) { |
| 844 | sta = ACPI_STA_ALL; |
| 845 | break; |
| 846 | } |
| 847 | } |
| 848 | } |
| 849 | |
| 850 | return (unsigned int)sta; |
| 851 | } |
| 852 | |
| 853 | /** |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 854 | * acpiphp_eject_slot - physically eject the slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 855 | * @slot: ACPI PHP slot |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 856 | */ |
Gary Hade | bfceafc | 2007-07-05 11:10:46 -0700 | [diff] [blame] | 857 | int acpiphp_eject_slot(struct acpiphp_slot *slot) |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 858 | { |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 859 | struct acpiphp_func *func; |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 860 | |
Alex Chiang | 58c0862 | 2009-10-26 21:25:27 -0600 | [diff] [blame] | 861 | list_for_each_entry(func, &slot->funcs, sibling) { |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 862 | /* We don't want to call _EJ0 on non-existing functions. */ |
| 863 | if ((func->flags & FUNC_HAS_EJ0)) { |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 864 | if (ACPI_FAILURE(acpi_evaluate_ej0(func->handle))) |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 865 | return -1; |
Jiang Liu | ecd046d | 2013-06-29 00:24:43 +0800 | [diff] [blame] | 866 | else |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 867 | break; |
| 868 | } |
| 869 | } |
| 870 | return 0; |
| 871 | } |
| 872 | |
| 873 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | * acpiphp_check_bridge - re-enumerate devices |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 875 | * @bridge: where to begin re-enumeration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | * |
| 877 | * Iterate over all slots under this bridge and make sure that if a |
| 878 | * card is present they are enabled, and if not they are disabled. |
| 879 | */ |
| 880 | static int acpiphp_check_bridge(struct acpiphp_bridge *bridge) |
| 881 | { |
| 882 | struct acpiphp_slot *slot; |
| 883 | int retval = 0; |
| 884 | int enabled, disabled; |
| 885 | |
| 886 | enabled = disabled = 0; |
| 887 | |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 888 | list_for_each_entry(slot, &bridge->slots, node) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | unsigned int status = get_slot_status(slot); |
| 890 | if (slot->flags & SLOT_ENABLED) { |
| 891 | if (status == ACPI_STA_ALL) |
| 892 | continue; |
| 893 | retval = acpiphp_disable_slot(slot); |
| 894 | if (retval) { |
| 895 | err("Error occurred in disabling\n"); |
| 896 | goto err_exit; |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 897 | } else { |
| 898 | acpiphp_eject_slot(slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } |
| 900 | disabled++; |
| 901 | } else { |
| 902 | if (status != ACPI_STA_ALL) |
| 903 | continue; |
| 904 | retval = acpiphp_enable_slot(slot); |
| 905 | if (retval) { |
| 906 | err("Error occurred in enabling\n"); |
| 907 | goto err_exit; |
| 908 | } |
| 909 | enabled++; |
| 910 | } |
| 911 | } |
| 912 | |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 913 | dbg("%s: %d enabled, %d disabled\n", __func__, enabled, disabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | |
| 915 | err_exit: |
| 916 | return retval; |
| 917 | } |
| 918 | |
Bjorn Helgaas | fca6825 | 2009-09-14 16:35:10 -0600 | [diff] [blame] | 919 | static void acpiphp_set_hpp_values(struct pci_bus *bus) |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 920 | { |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 921 | struct pci_dev *dev; |
| 922 | |
Bjorn Helgaas | e81995b | 2009-09-14 16:35:35 -0600 | [diff] [blame] | 923 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 924 | pci_configure_slot(dev); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 925 | } |
| 926 | |
| 927 | /* |
| 928 | * Remove devices for which we could not assign resources, call |
| 929 | * arch specific code to fix-up the bus |
| 930 | */ |
| 931 | static void acpiphp_sanitize_bus(struct pci_bus *bus) |
| 932 | { |
Yijing Wang | d65eba6 | 2013-04-12 05:44:17 +0000 | [diff] [blame] | 933 | struct pci_dev *dev, *tmp; |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 934 | int i; |
| 935 | unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM; |
| 936 | |
Yijing Wang | d65eba6 | 2013-04-12 05:44:17 +0000 | [diff] [blame] | 937 | list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) { |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 938 | for (i=0; i<PCI_BRIDGE_RESOURCES; i++) { |
| 939 | struct resource *res = &dev->resource[i]; |
| 940 | if ((res->flags & type_mask) && !res->start && |
| 941 | res->end) { |
| 942 | /* Could not assign a required resources |
| 943 | * for this device, remove it */ |
Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 944 | pci_stop_and_remove_bus_device(dev); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 945 | break; |
| 946 | } |
| 947 | } |
| 948 | } |
| 949 | } |
| 950 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | /* |
| 952 | * ACPI event handlers |
| 953 | */ |
| 954 | |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 955 | static acpi_status |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 956 | check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 957 | { |
| 958 | struct acpiphp_bridge *bridge; |
| 959 | char objname[64]; |
| 960 | struct acpi_buffer buffer = { .length = sizeof(objname), |
| 961 | .pointer = objname }; |
| 962 | |
| 963 | bridge = acpiphp_handle_to_bridge(handle); |
| 964 | if (bridge) { |
| 965 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 966 | dbg("%s: re-enumerating slots under %s\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 967 | __func__, objname); |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 968 | acpiphp_check_bridge(bridge); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 969 | put_bridge(bridge); |
Gary Hade | 0bbd642 | 2007-07-05 11:10:48 -0700 | [diff] [blame] | 970 | } |
| 971 | return AE_OK ; |
| 972 | } |
| 973 | |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 974 | void acpiphp_check_host_bridge(acpi_handle handle) |
| 975 | { |
| 976 | struct acpiphp_bridge *bridge; |
| 977 | |
| 978 | bridge = acpiphp_handle_to_bridge(handle); |
| 979 | if (bridge) { |
| 980 | acpiphp_check_bridge(bridge); |
| 981 | put_bridge(bridge); |
| 982 | } |
| 983 | |
| 984 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, |
| 985 | ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL); |
| 986 | } |
| 987 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 988 | static void hotplug_event(acpi_handle handle, u32 type, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 990 | struct acpiphp_context *context = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | struct acpiphp_bridge *bridge; |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 992 | struct acpiphp_func *func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | char objname[64]; |
| 994 | struct acpi_buffer buffer = { .length = sizeof(objname), |
| 995 | .pointer = objname }; |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 996 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 997 | mutex_lock(&acpiphp_context_lock); |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 998 | bridge = context->bridge; |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 999 | if (bridge) |
| 1000 | get_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1002 | /* |
| 1003 | * If context->func is not NULL, we are holding a reference to its |
| 1004 | * parent bridge, so it won't go away until we drop that reference. |
| 1005 | */ |
| 1006 | func = context->func; |
| 1007 | mutex_unlock(&acpiphp_context_lock); |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 1008 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 1010 | |
| 1011 | switch (type) { |
| 1012 | case ACPI_NOTIFY_BUS_CHECK: |
| 1013 | /* bus re-enumerate */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 1014 | dbg("%s: Bus check notify on %s\n", __func__, objname); |
Jiang Liu | be6d286 | 2013-01-31 00:10:10 +0800 | [diff] [blame] | 1015 | dbg("%s: re-enumerating slots under %s\n", __func__, objname); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1016 | if (bridge) { |
| 1017 | acpiphp_check_bridge(bridge); |
| 1018 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, |
| 1019 | ACPI_UINT32_MAX, check_sub_bridges, |
| 1020 | NULL, NULL, NULL); |
| 1021 | } else { |
| 1022 | acpiphp_enable_slot(func->slot); |
| 1023 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | break; |
| 1025 | |
| 1026 | case ACPI_NOTIFY_DEVICE_CHECK: |
| 1027 | /* device check */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 1028 | dbg("%s: Device check notify on %s\n", __func__, objname); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1029 | if (bridge) |
| 1030 | acpiphp_check_bridge(bridge); |
| 1031 | else |
| 1032 | acpiphp_check_bridge(func->slot->bridge); |
| 1033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | break; |
| 1035 | |
| 1036 | case ACPI_NOTIFY_DEVICE_WAKE: |
| 1037 | /* wake event */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 1038 | dbg("%s: Device wake notify on %s\n", __func__, objname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | break; |
| 1040 | |
| 1041 | case ACPI_NOTIFY_EJECT_REQUEST: |
| 1042 | /* request device eject */ |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 1043 | dbg("%s: Device eject notify on %s\n", __func__, objname); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1044 | if (!func) |
| 1045 | break; |
| 1046 | |
| 1047 | if (bridge && !(bridge->flags & BRIDGE_HAS_EJ0)) |
| 1048 | break; |
| 1049 | |
| 1050 | if (!(acpiphp_disable_slot(func->slot))) |
| 1051 | acpiphp_eject_slot(func->slot); |
| 1052 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | break; |
| 1054 | |
| 1055 | case ACPI_NOTIFY_FREQUENCY_MISMATCH: |
| 1056 | printk(KERN_ERR "Device %s cannot be configured due" |
| 1057 | " to a frequency mismatch\n", objname); |
| 1058 | break; |
| 1059 | |
| 1060 | case ACPI_NOTIFY_BUS_MODE_MISMATCH: |
| 1061 | printk(KERN_ERR "Device %s cannot be configured due" |
| 1062 | " to a bus mode mismatch\n", objname); |
| 1063 | break; |
| 1064 | |
| 1065 | case ACPI_NOTIFY_POWER_FAULT: |
| 1066 | printk(KERN_ERR "Device %s has suffered a power fault\n", |
| 1067 | objname); |
| 1068 | break; |
| 1069 | |
| 1070 | default: |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1071 | warn("notify_handler: unknown event type 0x%x for %s\n", type, |
| 1072 | objname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | break; |
| 1074 | } |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1075 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1076 | if (bridge) |
| 1077 | put_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1080 | static void hotplug_event_work(struct work_struct *work) |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 1081 | { |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1082 | struct acpiphp_context *context; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 1083 | struct acpi_hp_work *hp_work; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 1084 | |
| 1085 | hp_work = container_of(work, struct acpi_hp_work, work); |
Rafael J. Wysocki | c8ebcf1 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1086 | context = hp_work->context; |
Rafael J. Wysocki | 21a3101 | 2013-06-24 11:22:53 +0200 | [diff] [blame] | 1087 | acpi_scan_lock_acquire(); |
| 1088 | |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1089 | hotplug_event(hp_work->handle, hp_work->type, context); |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1090 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 1091 | acpi_scan_lock_release(); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1092 | kfree(hp_work); /* allocated in handle_hotplug_event() */ |
| 1093 | |
| 1094 | mutex_lock(&acpiphp_context_lock); |
| 1095 | if (context->func) |
| 1096 | put_bridge(context->func->slot->bridge); |
| 1097 | else |
| 1098 | acpiphp_put_context(context); |
| 1099 | |
| 1100 | mutex_unlock(&acpiphp_context_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | } |
| 1102 | |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1103 | /** |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1104 | * handle_hotplug_event - handle ACPI hotplug event |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1105 | * @handle: Notify()'ed acpi_handle |
| 1106 | * @type: Notify code |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1107 | * @data: pointer to acpiphp_context structure |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1108 | * |
| 1109 | * Handles ACPI event notification on slots. |
| 1110 | */ |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1111 | static void handle_hotplug_event(acpi_handle handle, u32 type, void *data) |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1112 | { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1113 | struct acpiphp_context *context; |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1114 | |
| 1115 | mutex_lock(&acpiphp_context_lock); |
| 1116 | context = acpiphp_get_context(handle); |
| 1117 | if (context) { |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1118 | if (context->func) { |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1119 | get_bridge(context->func->slot->bridge); |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1120 | acpiphp_put_context(context); |
| 1121 | } else if (!context->bridge) { |
| 1122 | acpiphp_put_context(context); |
| 1123 | context = NULL; |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1124 | } |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1125 | } |
| 1126 | mutex_unlock(&acpiphp_context_lock); |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 1127 | /* |
| 1128 | * Currently the code adds all hotplug events to the kacpid_wq |
| 1129 | * queue when it should add hotplug events to the kacpi_hotplug_wq. |
| 1130 | * The proper way to fix this is to reorganize the code so that |
| 1131 | * drivers (dock, etc.) do not call acpi_os_execute(), etc. |
| 1132 | * For now just re-add this work to the kacpi_hotplug_wq so we |
| 1133 | * don't deadlock on hotplug actions. |
| 1134 | */ |
Rafael J. Wysocki | 43e5c09 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1135 | if (context) |
| 1136 | alloc_acpi_hp_work(handle, type, context, hotplug_event_work); |
Rajesh Shah | 8e7561c | 2005-04-28 00:25:56 -0700 | [diff] [blame] | 1137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1139 | /* |
| 1140 | * Create hotplug slots for the PCI bus. |
| 1141 | * It should always return 0 to avoid skipping following notifiers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | */ |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1143 | void acpiphp_enumerate_slots(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | { |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1145 | struct acpiphp_context *context; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1146 | struct acpiphp_bridge *bridge; |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1147 | acpi_handle handle; |
| 1148 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1150 | if (acpiphp_disabled) |
| 1151 | return; |
| 1152 | |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1153 | handle = ACPI_HANDLE(bus->bridge); |
| 1154 | if (!handle || detect_ejectable_slots(handle) <= 0) |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1155 | return; |
| 1156 | |
| 1157 | bridge = kzalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL); |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1158 | if (!bridge) { |
| 1159 | acpi_handle_err(handle, "No memory for bridge object\n"); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1160 | return; |
| 1161 | } |
| 1162 | |
Yijing Wang | ad41dd9 | 2013-04-12 05:44:27 +0000 | [diff] [blame] | 1163 | INIT_LIST_HEAD(&bridge->slots); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 1164 | kref_init(&bridge->ref); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1165 | bridge->handle = handle; |
| 1166 | bridge->pci_dev = pci_dev_get(bus->self); |
| 1167 | bridge->pci_bus = bus; |
| 1168 | |
Rafael J. Wysocki | cb7b8ce | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1169 | mutex_lock(&acpiphp_context_lock); |
| 1170 | context = acpiphp_get_context(handle); |
| 1171 | if (!context) { |
| 1172 | context = acpiphp_init_context(handle); |
| 1173 | if (!context) { |
| 1174 | mutex_unlock(&acpiphp_context_lock); |
| 1175 | acpi_handle_err(handle, "No hotplug context\n"); |
| 1176 | kfree(bridge); |
| 1177 | return; |
| 1178 | } |
| 1179 | } |
| 1180 | bridge->context = context; |
| 1181 | context->bridge = bridge; |
| 1182 | mutex_unlock(&acpiphp_context_lock); |
| 1183 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1184 | /* |
| 1185 | * Grab a ref to the subordinate PCI bus in case the bus is |
| 1186 | * removed via PCI core logical hotplug. The ref pins the bus |
| 1187 | * (which we access during module unload). |
| 1188 | */ |
| 1189 | get_device(&bus->dev); |
| 1190 | |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1191 | /* must be added to the list prior to calling register_slot */ |
| 1192 | mutex_lock(&bridge_mutex); |
| 1193 | list_add(&bridge->list, &bridge_list); |
| 1194 | mutex_unlock(&bridge_mutex); |
| 1195 | |
| 1196 | /* register all slot objects under this bridge */ |
| 1197 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, 1, |
| 1198 | register_slot, NULL, bridge, NULL); |
| 1199 | if (ACPI_FAILURE(status)) { |
| 1200 | acpi_handle_err(bridge->handle, "failed to register slots\n"); |
| 1201 | goto err; |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1202 | } |
| 1203 | |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1204 | if (pci_is_root_bus(bridge->pci_bus)) |
| 1205 | return; |
| 1206 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1207 | if (acpi_has_method(bridge->handle, "_EJ0")) { |
| 1208 | dbg("found ejectable p2p bridge\n"); |
| 1209 | bridge->flags |= BRIDGE_HAS_EJ0; |
| 1210 | } |
| 1211 | if (context->handler_for_func) { |
| 1212 | /* Notify handler already installed. */ |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1213 | get_bridge(context->func->slot->bridge); |
| 1214 | return; |
| 1215 | } |
| 1216 | |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1217 | /* install notify handler for P2P bridges */ |
| 1218 | status = acpi_install_notify_handler(bridge->handle, ACPI_SYSTEM_NOTIFY, |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1219 | handle_hotplug_event, NULL); |
| 1220 | if (ACPI_SUCCESS(status)) |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1221 | return; |
| 1222 | |
Rafael J. Wysocki | 8783127 | 2013-07-13 23:27:24 +0200 | [diff] [blame] | 1223 | acpi_handle_err(bridge->handle, "failed to register notify handler\n"); |
Rafael J. Wysocki | 2552002a | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 1224 | |
| 1225 | err: |
| 1226 | cleanup_bridge(bridge); |
| 1227 | put_bridge(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | } |
| 1229 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1230 | /* Destroy hotplug slots associated with the PCI bus */ |
| 1231 | void acpiphp_remove_slots(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | { |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1233 | struct acpiphp_bridge *bridge, *tmp; |
| 1234 | |
| 1235 | if (acpiphp_disabled) |
| 1236 | return; |
| 1237 | |
| 1238 | list_for_each_entry_safe(bridge, tmp, &bridge_list, list) |
| 1239 | if (bridge->pci_bus == bus) { |
| 1240 | cleanup_bridge(bridge); |
Jiang Liu | 3d54a31 | 2013-04-12 05:44:28 +0000 | [diff] [blame] | 1241 | put_bridge(bridge); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 1242 | break; |
| 1243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | } |
| 1245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | /** |
| 1247 | * acpiphp_enable_slot - power on slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 1248 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | */ |
| 1250 | int acpiphp_enable_slot(struct acpiphp_slot *slot) |
| 1251 | { |
| 1252 | int retval; |
| 1253 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1254 | mutex_lock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | |
| 1256 | /* wake up all functions */ |
| 1257 | retval = power_on_slot(slot); |
| 1258 | if (retval) |
| 1259 | goto err_exit; |
| 1260 | |
MUNEDA Takahiro | cde0e5d | 2006-03-22 14:49:33 +0900 | [diff] [blame] | 1261 | if (get_slot_status(slot) == ACPI_STA_ALL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | /* configure all functions */ |
| 1263 | retval = enable_device(slot); |
MUNEDA Takahiro | cde0e5d | 2006-03-22 14:49:33 +0900 | [diff] [blame] | 1264 | if (retval) |
| 1265 | power_off_slot(slot); |
| 1266 | } else { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 1267 | dbg("%s: Slot status is not ACPI_STA_ALL\n", __func__); |
MUNEDA Takahiro | cde0e5d | 2006-03-22 14:49:33 +0900 | [diff] [blame] | 1268 | power_off_slot(slot); |
| 1269 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | |
| 1271 | err_exit: |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1272 | mutex_unlock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | return retval; |
| 1274 | } |
| 1275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | /** |
| 1277 | * acpiphp_disable_slot - power off slot |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 1278 | * @slot: ACPI PHP slot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | */ |
| 1280 | int acpiphp_disable_slot(struct acpiphp_slot *slot) |
| 1281 | { |
| 1282 | int retval = 0; |
| 1283 | |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1284 | mutex_lock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
| 1286 | /* unconfigure all functions */ |
| 1287 | retval = disable_device(slot); |
| 1288 | if (retval) |
| 1289 | goto err_exit; |
| 1290 | |
| 1291 | /* power off all functions */ |
| 1292 | retval = power_off_slot(slot); |
| 1293 | if (retval) |
| 1294 | goto err_exit; |
| 1295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | err_exit: |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 1297 | mutex_unlock(&slot->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | return retval; |
| 1299 | } |
| 1300 | |
| 1301 | |
| 1302 | /* |
| 1303 | * slot enabled: 1 |
| 1304 | * slot disabled: 0 |
| 1305 | */ |
| 1306 | u8 acpiphp_get_power_status(struct acpiphp_slot *slot) |
| 1307 | { |
Rajesh Shah | 8d50e33 | 2005-04-28 00:25:57 -0700 | [diff] [blame] | 1308 | return (slot->flags & SLOT_POWEREDON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
| 1311 | |
| 1312 | /* |
MUNEDA Takahiro | 35ae61a | 2006-10-25 11:44:57 -0700 | [diff] [blame] | 1313 | * latch open: 1 |
| 1314 | * latch closed: 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | */ |
| 1316 | u8 acpiphp_get_latch_status(struct acpiphp_slot *slot) |
| 1317 | { |
| 1318 | unsigned int sta; |
| 1319 | |
| 1320 | sta = get_slot_status(slot); |
| 1321 | |
Jiang Liu | ce15d87 | 2013-04-12 05:44:19 +0000 | [diff] [blame] | 1322 | return (sta & ACPI_STA_DEVICE_UI) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | |
| 1326 | /* |
| 1327 | * adapter presence : 1 |
| 1328 | * absence : 0 |
| 1329 | */ |
| 1330 | u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot) |
| 1331 | { |
| 1332 | unsigned int sta; |
| 1333 | |
| 1334 | sta = get_slot_status(slot); |
| 1335 | |
| 1336 | return (sta == 0) ? 0 : 1; |
| 1337 | } |