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