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