Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $) |
| 3 | * |
| 4 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> |
| 5 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
| 6 | * |
| 7 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or (at |
| 12 | * your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License along |
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 22 | * |
| 23 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 24 | */ |
| 25 | |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/module.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/types.h> |
Taku Izumi | d0020f6 | 2012-09-18 15:21:31 +0900 | [diff] [blame] | 30 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/pm.h> |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 32 | #include <linux/pm_runtime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/pci.h> |
Andrew Patterson | 990a7ac | 2008-11-10 15:30:45 -0700 | [diff] [blame] | 34 | #include <linux/pci-acpi.h> |
Naga Chumbalkar | eca6731 | 2011-03-21 03:29:20 +0000 | [diff] [blame] | 35 | #include <linux/pci-aspm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/acpi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 37 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <acpi/acpi_bus.h> |
| 39 | #include <acpi/acpi_drivers.h> |
Rafael J. Wysocki | 415e12b | 2011-01-07 00:55:09 +0100 | [diff] [blame] | 40 | #include <acpi/apei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 42 | #define PREFIX "ACPI: " |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define _COMPONENT ACPI_PCI_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 45 | ACPI_MODULE_NAME("pci_root"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define ACPI_PCI_ROOT_CLASS "pci_bridge" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge" |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 48 | static int acpi_pci_root_add(struct acpi_device *device, |
| 49 | const struct acpi_device_id *not_used); |
| 50 | static void acpi_pci_root_remove(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Rafael J. Wysocki | 415e12b | 2011-01-07 00:55:09 +0100 | [diff] [blame] | 52 | #define ACPI_PCIE_REQ_SUPPORT (OSC_EXT_PCI_CONFIG_SUPPORT \ |
| 53 | | OSC_ACTIVE_STATE_PWR_SUPPORT \ |
| 54 | | OSC_CLOCK_PWR_CAPABILITY_SUPPORT \ |
| 55 | | OSC_MSI_SUPPORT) |
| 56 | |
Márton Németh | c97adf9 | 2010-01-10 17:15:36 +0100 | [diff] [blame] | 57 | static const struct acpi_device_id root_device_ids[] = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 58 | {"PNP0A03", 0}, |
| 59 | {"", 0}, |
| 60 | }; |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 61 | |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 62 | static struct acpi_scan_handler pci_root_handler = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 63 | .ids = root_device_ids, |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 64 | .attach = acpi_pci_root_add, |
| 65 | .detach = acpi_pci_root_remove, |
Toshi Kani | 1ba9563 | 2013-11-20 14:25:34 +0100 | [diff] [blame] | 66 | .hotplug = { |
| 67 | .ignore = true, |
| 68 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | }; |
| 70 | |
Myron Stowe | c309dbb | 2013-04-12 05:44:30 +0000 | [diff] [blame] | 71 | /* Lock to protect both acpi_pci_roots lists */ |
Taku Izumi | d0020f6 | 2012-09-18 15:21:31 +0900 | [diff] [blame] | 72 | static DEFINE_MUTEX(acpi_pci_root_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | static LIST_HEAD(acpi_pci_roots); |
| 74 | |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 75 | static DEFINE_MUTEX(osc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Alexander Chiang | 2755820 | 2009-06-10 19:55:14 +0000 | [diff] [blame] | 77 | /** |
| 78 | * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge |
| 79 | * @handle - the ACPI CA node in question. |
| 80 | * |
| 81 | * Note: we could make this API take a struct acpi_device * instead, but |
| 82 | * for now, it's more convenient to operate on an acpi_handle. |
| 83 | */ |
| 84 | int acpi_is_root_bridge(acpi_handle handle) |
| 85 | { |
| 86 | int ret; |
| 87 | struct acpi_device *device; |
| 88 | |
| 89 | ret = acpi_bus_get_device(handle, &device); |
| 90 | if (ret) |
| 91 | return 0; |
| 92 | |
| 93 | ret = acpi_match_device_ids(device, root_device_ids); |
| 94 | if (ret) |
| 95 | return 0; |
| 96 | else |
| 97 | return 1; |
| 98 | } |
| 99 | EXPORT_SYMBOL_GPL(acpi_is_root_bridge); |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 104 | struct resource *res = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | struct acpi_resource_address64 address; |
| 106 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 107 | if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 && |
| 108 | resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 && |
| 109 | resource->type != ACPI_RESOURCE_TYPE_ADDRESS64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return AE_OK; |
| 111 | |
| 112 | acpi_resource_to_address64(resource, &address); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 113 | if ((address.address_length > 0) && |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 114 | (address.resource_type == ACPI_BUS_NUMBER_RANGE)) { |
| 115 | res->start = address.minimum; |
| 116 | res->end = address.minimum + address.address_length - 1; |
| 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | return AE_OK; |
| 120 | } |
| 121 | |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 122 | static acpi_status try_get_root_bridge_busnr(acpi_handle handle, |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 123 | struct resource *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
| 125 | acpi_status status; |
| 126 | |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 127 | res->start = -1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 128 | status = |
| 129 | acpi_walk_resources(handle, METHOD_NAME__CRS, |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 130 | get_root_bridge_busnr_callback, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | if (ACPI_FAILURE(status)) |
| 132 | return status; |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 133 | if (res->start == -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return AE_ERROR; |
| 135 | return AE_OK; |
| 136 | } |
| 137 | |
Shaohua Li | 3a9622d | 2009-10-29 11:04:50 +0800 | [diff] [blame] | 138 | static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766"; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 139 | |
| 140 | static acpi_status acpi_pci_run_osc(acpi_handle handle, |
| 141 | const u32 *capbuf, u32 *retval) |
| 142 | { |
Shaohua Li | 3a9622d | 2009-10-29 11:04:50 +0800 | [diff] [blame] | 143 | struct acpi_osc_context context = { |
| 144 | .uuid_str = pci_osc_uuid_str, |
| 145 | .rev = 1, |
| 146 | .cap.length = 12, |
| 147 | .cap.pointer = (void *)capbuf, |
| 148 | }; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 149 | acpi_status status; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 150 | |
Shaohua Li | 3a9622d | 2009-10-29 11:04:50 +0800 | [diff] [blame] | 151 | status = acpi_run_osc(handle, &context); |
| 152 | if (ACPI_SUCCESS(status)) { |
| 153 | *retval = *((u32 *)(context.ret.pointer + 8)); |
| 154 | kfree(context.ret.pointer); |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 155 | } |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 156 | return status; |
| 157 | } |
| 158 | |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 159 | static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, |
| 160 | u32 support, |
| 161 | u32 *control) |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 162 | { |
| 163 | acpi_status status; |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 164 | u32 result, capbuf[3]; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 165 | |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 166 | support &= OSC_PCI_SUPPORT_MASKS; |
| 167 | support |= root->osc_support_set; |
| 168 | |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 169 | capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE; |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 170 | capbuf[OSC_SUPPORT_TYPE] = support; |
| 171 | if (control) { |
| 172 | *control &= OSC_PCI_CONTROL_MASKS; |
| 173 | capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set; |
| 174 | } else { |
Yinghai Lu | 545d6e1 | 2013-03-28 04:28:58 +0000 | [diff] [blame] | 175 | /* Run _OSC query only with existing controls. */ |
| 176 | capbuf[OSC_CONTROL_TYPE] = root->osc_control_set; |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 177 | } |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 178 | |
| 179 | status = acpi_pci_run_osc(root->device->handle, capbuf, &result); |
| 180 | if (ACPI_SUCCESS(status)) { |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 181 | root->osc_support_set = support; |
Rafael J. Wysocki | 2b8fd91 | 2010-08-23 23:55:59 +0200 | [diff] [blame] | 182 | if (control) |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 183 | *control = result; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 184 | } |
| 185 | return status; |
| 186 | } |
| 187 | |
| 188 | static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags) |
| 189 | { |
| 190 | acpi_status status; |
| 191 | acpi_handle tmp; |
| 192 | |
| 193 | status = acpi_get_handle(root->device->handle, "_OSC", &tmp); |
| 194 | if (ACPI_FAILURE(status)) |
| 195 | return status; |
| 196 | mutex_lock(&osc_lock); |
Rafael J. Wysocki | ab8e895 | 2010-08-21 01:53:27 +0200 | [diff] [blame] | 197 | status = acpi_pci_query_osc(root, flags, NULL); |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 198 | mutex_unlock(&osc_lock); |
| 199 | return status; |
| 200 | } |
| 201 | |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 202 | struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle) |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 203 | { |
| 204 | struct acpi_pci_root *root; |
Taku Izumi | cd4faf9 | 2012-09-18 15:23:23 +0900 | [diff] [blame] | 205 | struct acpi_device *device; |
Bjorn Helgaas | c1aec83 | 2009-06-18 14:47:02 -0600 | [diff] [blame] | 206 | |
Taku Izumi | cd4faf9 | 2012-09-18 15:23:23 +0900 | [diff] [blame] | 207 | if (acpi_bus_get_device(handle, &device) || |
| 208 | acpi_match_device_ids(device, root_device_ids)) |
| 209 | return NULL; |
| 210 | |
| 211 | root = acpi_driver_data(device); |
| 212 | |
| 213 | return root; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 214 | } |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 215 | EXPORT_SYMBOL_GPL(acpi_pci_find_root); |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 216 | |
Alexander Chiang | 2f7bbce | 2009-06-10 19:55:20 +0000 | [diff] [blame] | 217 | struct acpi_handle_node { |
| 218 | struct list_head node; |
| 219 | acpi_handle handle; |
| 220 | }; |
| 221 | |
| 222 | /** |
| 223 | * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev |
| 224 | * @handle: the handle in question |
| 225 | * |
| 226 | * Given an ACPI CA handle, the desired PCI device is located in the |
| 227 | * list of PCI devices. |
| 228 | * |
| 229 | * If the device is found, its reference count is increased and this |
| 230 | * function returns a pointer to its data structure. The caller must |
| 231 | * decrement the reference count by calling pci_dev_put(). |
| 232 | * If no device is found, %NULL is returned. |
| 233 | */ |
| 234 | struct pci_dev *acpi_get_pci_dev(acpi_handle handle) |
| 235 | { |
| 236 | int dev, fn; |
| 237 | unsigned long long adr; |
| 238 | acpi_status status; |
| 239 | acpi_handle phandle; |
| 240 | struct pci_bus *pbus; |
| 241 | struct pci_dev *pdev = NULL; |
| 242 | struct acpi_handle_node *node, *tmp; |
| 243 | struct acpi_pci_root *root; |
| 244 | LIST_HEAD(device_list); |
| 245 | |
| 246 | /* |
| 247 | * Walk up the ACPI CA namespace until we reach a PCI root bridge. |
| 248 | */ |
| 249 | phandle = handle; |
| 250 | while (!acpi_is_root_bridge(phandle)) { |
| 251 | node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL); |
| 252 | if (!node) |
| 253 | goto out; |
| 254 | |
| 255 | INIT_LIST_HEAD(&node->node); |
| 256 | node->handle = phandle; |
| 257 | list_add(&node->node, &device_list); |
| 258 | |
| 259 | status = acpi_get_parent(phandle, &phandle); |
| 260 | if (ACPI_FAILURE(status)) |
| 261 | goto out; |
| 262 | } |
| 263 | |
| 264 | root = acpi_pci_find_root(phandle); |
| 265 | if (!root) |
| 266 | goto out; |
| 267 | |
| 268 | pbus = root->bus; |
| 269 | |
| 270 | /* |
| 271 | * Now, walk back down the PCI device tree until we return to our |
| 272 | * original handle. Assumes that everything between the PCI root |
| 273 | * bridge and the device we're looking for must be a P2P bridge. |
| 274 | */ |
| 275 | list_for_each_entry(node, &device_list, node) { |
| 276 | acpi_handle hnd = node->handle; |
| 277 | status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr); |
| 278 | if (ACPI_FAILURE(status)) |
| 279 | goto out; |
| 280 | dev = (adr >> 16) & 0xffff; |
| 281 | fn = adr & 0xffff; |
| 282 | |
| 283 | pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn)); |
Troy Moure | 412af97 | 2009-06-25 17:05:35 -0600 | [diff] [blame] | 284 | if (!pdev || hnd == handle) |
Alexander Chiang | 2f7bbce | 2009-06-10 19:55:20 +0000 | [diff] [blame] | 285 | break; |
| 286 | |
| 287 | pbus = pdev->subordinate; |
| 288 | pci_dev_put(pdev); |
Rafael J. Wysocki | 497fb54 | 2009-10-13 01:01:57 +0200 | [diff] [blame] | 289 | |
| 290 | /* |
| 291 | * This function may be called for a non-PCI device that has a |
| 292 | * PCI parent (eg. a disk under a PCI SATA controller). In that |
| 293 | * case pdev->subordinate will be NULL for the parent. |
| 294 | */ |
| 295 | if (!pbus) { |
| 296 | dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n"); |
| 297 | pdev = NULL; |
| 298 | break; |
| 299 | } |
Alexander Chiang | 2f7bbce | 2009-06-10 19:55:20 +0000 | [diff] [blame] | 300 | } |
| 301 | out: |
| 302 | list_for_each_entry_safe(node, tmp, &device_list, node) |
| 303 | kfree(node); |
| 304 | |
| 305 | return pdev; |
| 306 | } |
| 307 | EXPORT_SYMBOL_GPL(acpi_get_pci_dev); |
| 308 | |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 309 | /** |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 310 | * acpi_pci_osc_control_set - Request control of PCI root _OSC features. |
| 311 | * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex). |
| 312 | * @mask: Mask of _OSC bits to request control of, place to store control mask. |
| 313 | * @req: Mask of _OSC bits the control of is essential to the caller. |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 314 | * |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 315 | * Run _OSC query for @mask and if that is successful, compare the returned |
| 316 | * mask of control bits with @req. If all of the @req bits are set in the |
| 317 | * returned mask, run _OSC request for it. |
| 318 | * |
| 319 | * The variable at the @mask address may be modified regardless of whether or |
| 320 | * not the function returns success. On success it will contain the mask of |
| 321 | * _OSC bits the BIOS has granted control of, but its contents are meaningless |
| 322 | * on failure. |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 323 | **/ |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 324 | acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req) |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 325 | { |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 326 | struct acpi_pci_root *root; |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 327 | acpi_status status; |
| 328 | u32 ctrl, capbuf[3]; |
| 329 | acpi_handle tmp; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 330 | |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 331 | if (!mask) |
| 332 | return AE_BAD_PARAMETER; |
| 333 | |
| 334 | ctrl = *mask & OSC_PCI_CONTROL_MASKS; |
| 335 | if ((ctrl & req) != req) |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 336 | return AE_TYPE; |
| 337 | |
| 338 | root = acpi_pci_find_root(handle); |
| 339 | if (!root) |
| 340 | return AE_NOT_EXIST; |
| 341 | |
Rafael J. Wysocki | b879dc4 | 2010-08-21 01:52:37 +0200 | [diff] [blame] | 342 | status = acpi_get_handle(handle, "_OSC", &tmp); |
| 343 | if (ACPI_FAILURE(status)) |
| 344 | return status; |
| 345 | |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 346 | mutex_lock(&osc_lock); |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 347 | |
| 348 | *mask = ctrl | root->osc_control_set; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 349 | /* No need to evaluate _OSC if the control was already granted. */ |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 350 | if ((root->osc_control_set & ctrl) == ctrl) |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 351 | goto out; |
| 352 | |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 353 | /* Need to check the available controls bits before requesting them. */ |
| 354 | while (*mask) { |
| 355 | status = acpi_pci_query_osc(root, root->osc_support_set, mask); |
| 356 | if (ACPI_FAILURE(status)) |
| 357 | goto out; |
| 358 | if (ctrl == *mask) |
| 359 | break; |
| 360 | ctrl = *mask; |
| 361 | } |
Rafael J. Wysocki | 2b8fd91 | 2010-08-23 23:55:59 +0200 | [diff] [blame] | 362 | |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 363 | if ((ctrl & req) != req) { |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 364 | status = AE_SUPPORT; |
| 365 | goto out; |
| 366 | } |
| 367 | |
| 368 | capbuf[OSC_QUERY_TYPE] = 0; |
| 369 | capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set; |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 370 | capbuf[OSC_CONTROL_TYPE] = ctrl; |
| 371 | status = acpi_pci_run_osc(handle, capbuf, mask); |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 372 | if (ACPI_SUCCESS(status)) |
Rafael J. Wysocki | 75fb60f | 2010-08-23 23:53:11 +0200 | [diff] [blame] | 373 | root->osc_control_set = *mask; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 374 | out: |
| 375 | mutex_unlock(&osc_lock); |
| 376 | return status; |
| 377 | } |
Kenji Kaneshige | 9f5404d | 2009-02-09 16:00:04 +0900 | [diff] [blame] | 378 | EXPORT_SYMBOL(acpi_pci_osc_control_set); |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 379 | |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 380 | static int acpi_pci_root_add(struct acpi_device *device, |
| 381 | const struct acpi_device_id *not_used) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | { |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 383 | unsigned long long segment, bus; |
| 384 | acpi_status status; |
| 385 | int result; |
| 386 | struct acpi_pci_root *root; |
Andrew Patterson | 0ef5f8f | 2008-11-10 15:30:50 -0700 | [diff] [blame] | 387 | u32 flags, base_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 389 | root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL); |
| 390 | if (!root) |
| 391 | return -ENOMEM; |
| 392 | |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 393 | segment = 0; |
| 394 | status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL, |
| 395 | &segment); |
| 396 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { |
| 397 | printk(KERN_ERR PREFIX "can't evaluate _SEG\n"); |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 398 | result = -ENODEV; |
| 399 | goto end; |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 402 | /* Check _CRS first, then _BBN. If no _BBN, default to zero. */ |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 403 | root->secondary.flags = IORESOURCE_BUS; |
| 404 | status = try_get_root_bridge_busnr(device->handle, &root->secondary); |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 405 | if (ACPI_FAILURE(status)) { |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 406 | /* |
| 407 | * We need both the start and end of the downstream bus range |
| 408 | * to interpret _CBA (MMCONFIG base address), so it really is |
| 409 | * supposed to be in _CRS. If we don't find it there, all we |
| 410 | * can do is assume [_BBN-0xFF] or [0-0xFF]. |
| 411 | */ |
| 412 | root->secondary.end = 0xFF; |
| 413 | printk(KERN_WARNING FW_BUG PREFIX |
| 414 | "no secondary bus range in _CRS\n"); |
Jon Mason | e545b55 | 2011-06-19 18:51:37 -0500 | [diff] [blame] | 415 | status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, |
| 416 | NULL, &bus); |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 417 | if (ACPI_SUCCESS(status)) |
| 418 | root->secondary.start = bus; |
| 419 | else if (status == AE_NOT_FOUND) |
| 420 | root->secondary.start = 0; |
| 421 | else { |
| 422 | printk(KERN_ERR PREFIX "can't evaluate _BBN\n"); |
| 423 | result = -ENODEV; |
| 424 | goto end; |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 425 | } |
| 426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Bjorn Helgaas | f5eebbe | 2009-06-18 14:46:52 -0600 | [diff] [blame] | 428 | INIT_LIST_HEAD(&root->node); |
Patrick Mochel | 32917e5 | 2006-05-19 16:54:39 -0400 | [diff] [blame] | 429 | root->device = device; |
Bjorn Helgaas | 0705495 | 2009-06-18 14:47:07 -0600 | [diff] [blame] | 430 | root->segment = segment & 0xFFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME); |
| 432 | strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 433 | device->driver_data = root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Bjorn Helgaas | d4761ba | 2012-10-30 15:24:50 +0900 | [diff] [blame] | 435 | printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n", |
| 436 | acpi_device_name(device), acpi_device_bid(device), |
| 437 | root->segment, &root->secondary); |
| 438 | |
Jiang Liu | f4b57a3 | 2012-06-22 14:55:16 +0800 | [diff] [blame] | 439 | root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle); |
| 440 | |
Andrew Patterson | 990a7ac | 2008-11-10 15:30:45 -0700 | [diff] [blame] | 441 | /* |
| 442 | * All supported architectures that use ACPI have support for |
| 443 | * PCI domains, so we indicate this in _OSC support capabilities. |
| 444 | */ |
Andrew Patterson | 0ef5f8f | 2008-11-10 15:30:50 -0700 | [diff] [blame] | 445 | flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT; |
Kenji Kaneshige | 63f10f0 | 2009-02-09 15:59:29 +0900 | [diff] [blame] | 446 | acpi_pci_osc_support(root, flags); |
Andrew Patterson | 990a7ac | 2008-11-10 15:30:45 -0700 | [diff] [blame] | 447 | |
Bjorn Helgaas | b8178f1 | 2013-04-01 15:47:39 -0600 | [diff] [blame] | 448 | /* |
| 449 | * TBD: Need PCI interface for enumeration/configuration of roots. |
| 450 | */ |
| 451 | |
| 452 | mutex_lock(&acpi_pci_root_lock); |
| 453 | list_add_tail(&root->node, &acpi_pci_roots); |
| 454 | mutex_unlock(&acpi_pci_root_lock); |
| 455 | |
| 456 | /* |
| 457 | * Scan the Root Bridge |
| 458 | * -------------------- |
| 459 | * Must do this prior to any attempt to bind the root device, as the |
| 460 | * PCI namespace does not get created until this call is made (and |
| 461 | * thus the root bridge's pci_dev does not exist). |
| 462 | */ |
| 463 | root->bus = pci_acpi_scan_root(root); |
| 464 | if (!root->bus) { |
| 465 | printk(KERN_ERR PREFIX |
| 466 | "Bus %04x:%02x not present in PCI namespace\n", |
| 467 | root->segment, (unsigned int)root->secondary.start); |
| 468 | result = -ENODEV; |
| 469 | goto out_del_root; |
| 470 | } |
| 471 | |
Taku Izumi | 8c33f51 | 2012-10-30 15:27:13 +0900 | [diff] [blame] | 472 | /* Indicate support for various _OSC capabilities. */ |
| 473 | if (pci_ext_cfg_avail()) |
| 474 | flags |= OSC_EXT_PCI_CONFIG_SUPPORT; |
| 475 | if (pcie_aspm_support_enabled()) { |
| 476 | flags |= OSC_ACTIVE_STATE_PWR_SUPPORT | |
| 477 | OSC_CLOCK_PWR_CAPABILITY_SUPPORT; |
| 478 | } |
| 479 | if (pci_msi_enabled()) |
| 480 | flags |= OSC_MSI_SUPPORT; |
| 481 | if (flags != base_flags) { |
| 482 | status = acpi_pci_osc_support(root, flags); |
| 483 | if (ACPI_FAILURE(status)) { |
| 484 | dev_info(&device->dev, "ACPI _OSC support " |
| 485 | "notification failed, disabling PCIe ASPM\n"); |
| 486 | pcie_no_aspm(); |
| 487 | flags = base_flags; |
| 488 | } |
| 489 | } |
Bjorn Helgaas | b8178f1 | 2013-04-01 15:47:39 -0600 | [diff] [blame] | 490 | |
Taku Izumi | 8c33f51 | 2012-10-30 15:27:13 +0900 | [diff] [blame] | 491 | if (!pcie_ports_disabled |
| 492 | && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) { |
| 493 | flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
| 494 | | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL |
| 495 | | OSC_PCI_EXPRESS_PME_CONTROL; |
| 496 | |
| 497 | if (pci_aer_available()) { |
| 498 | if (aer_acpi_firmware_first()) |
| 499 | dev_dbg(&device->dev, |
| 500 | "PCIe errors handled by BIOS.\n"); |
| 501 | else |
| 502 | flags |= OSC_PCI_EXPRESS_AER_CONTROL; |
| 503 | } |
| 504 | |
| 505 | dev_info(&device->dev, |
| 506 | "Requesting ACPI _OSC control (0x%02x)\n", flags); |
| 507 | |
| 508 | status = acpi_pci_osc_control_set(device->handle, &flags, |
| 509 | OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL); |
| 510 | if (ACPI_SUCCESS(status)) { |
Taku Izumi | 8c33f51 | 2012-10-30 15:27:13 +0900 | [diff] [blame] | 511 | dev_info(&device->dev, |
| 512 | "ACPI _OSC control (0x%02x) granted\n", flags); |
Bjorn Helgaas | b8178f1 | 2013-04-01 15:47:39 -0600 | [diff] [blame] | 513 | if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) { |
| 514 | /* |
| 515 | * We have ASPM control, but the FADT indicates |
| 516 | * that it's unsupported. Clear it. |
| 517 | */ |
| 518 | pcie_clear_aspm(root->bus); |
| 519 | } |
Taku Izumi | 8c33f51 | 2012-10-30 15:27:13 +0900 | [diff] [blame] | 520 | } else { |
Taku Izumi | 8c33f51 | 2012-10-30 15:27:13 +0900 | [diff] [blame] | 521 | dev_info(&device->dev, |
| 522 | "ACPI _OSC request failed (%s), " |
| 523 | "returned control mask: 0x%02x\n", |
| 524 | acpi_format_exception(status), flags); |
Bjorn Helgaas | b8178f1 | 2013-04-01 15:47:39 -0600 | [diff] [blame] | 525 | pr_info("ACPI _OSC control for PCIe not granted, " |
| 526 | "disabling ASPM\n"); |
| 527 | pcie_no_aspm(); |
Taku Izumi | 8c33f51 | 2012-10-30 15:27:13 +0900 | [diff] [blame] | 528 | } |
| 529 | } else { |
| 530 | dev_info(&device->dev, |
Bjorn Helgaas | b8178f1 | 2013-04-01 15:47:39 -0600 | [diff] [blame] | 531 | "Unable to request _OSC control " |
| 532 | "(_OSC support mask: 0x%02x)\n", flags); |
Rafael J. Wysocki | 415e12b | 2011-01-07 00:55:09 +0100 | [diff] [blame] | 533 | } |
| 534 | |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 535 | pci_acpi_add_bus_pm_notifier(device, root->bus); |
| 536 | if (device->wakeup.flags.run_wake) |
| 537 | device_set_run_wake(root->bus->bridge, true); |
| 538 | |
Yinghai Lu | 3c449ed | 2012-11-03 21:39:31 -0700 | [diff] [blame] | 539 | if (system_state != SYSTEM_BOOTING) { |
| 540 | pcibios_resource_survey_bus(root->bus); |
Yinghai Lu | 62a08c5 | 2012-10-30 14:31:32 -0600 | [diff] [blame] | 541 | pci_assign_unassigned_bus_resources(root->bus); |
Yinghai Lu | 3c449ed | 2012-11-03 21:39:31 -0700 | [diff] [blame] | 542 | } |
Yinghai Lu | 62a08c5 | 2012-10-30 14:31:32 -0600 | [diff] [blame] | 543 | |
Yinghai Lu | 62a08c5 | 2012-10-30 14:31:32 -0600 | [diff] [blame] | 544 | /* need to after hot-added ioapic is registered */ |
| 545 | if (system_state != SYSTEM_BOOTING) |
| 546 | pci_enable_bridges(root->bus); |
| 547 | |
Bjorn Helgaas | caf420c | 2009-06-18 14:46:57 -0600 | [diff] [blame] | 548 | pci_bus_add_devices(root->bus); |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 549 | return 1; |
Rafael J. Wysocki | 47525cd | 2012-12-21 00:36:45 +0100 | [diff] [blame] | 550 | |
| 551 | out_del_root: |
| 552 | mutex_lock(&acpi_pci_root_lock); |
| 553 | list_del(&root->node); |
| 554 | mutex_unlock(&acpi_pci_root_lock); |
| 555 | |
Rafael J. Wysocki | 47525cd | 2012-12-21 00:36:45 +0100 | [diff] [blame] | 556 | end: |
| 557 | kfree(root); |
| 558 | return result; |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 559 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 561 | static void acpi_pci_root_remove(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | { |
Bjorn Helgaas | caf420c | 2009-06-18 14:46:57 -0600 | [diff] [blame] | 563 | struct acpi_pci_root *root = acpi_driver_data(device); |
Jiang Liu | c8e9afb | 2012-09-18 15:20:34 +0900 | [diff] [blame] | 564 | |
Yinghai Lu | 9738a1f | 2012-10-30 14:31:43 -0600 | [diff] [blame] | 565 | pci_stop_root_bus(root->bus); |
| 566 | |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 567 | device_set_run_wake(root->bus->bridge, false); |
| 568 | pci_acpi_remove_bus_pm_notifier(device); |
| 569 | |
Yinghai Lu | 9738a1f | 2012-10-30 14:31:43 -0600 | [diff] [blame] | 570 | pci_remove_root_bus(root->bus); |
| 571 | |
| 572 | mutex_lock(&acpi_pci_root_lock); |
Taku Izumi | 6507e6e | 2012-09-18 15:24:40 +0900 | [diff] [blame] | 573 | list_del(&root->node); |
| 574 | mutex_unlock(&acpi_pci_root_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | kfree(root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
| 577 | |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 578 | void __init acpi_pci_root_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | { |
Rafael J. Wysocki | d3072e6 | 2011-01-16 20:44:22 +0100 | [diff] [blame] | 580 | acpi_hest_init(); |
| 581 | |
Rafael J. Wysocki | 00c43b9 | 2013-01-30 14:27:33 +0100 | [diff] [blame] | 582 | if (!acpi_pci_disabled) { |
| 583 | pci_acpi_crs_quirks(); |
| 584 | acpi_scan_add_handler(&pci_root_handler); |
| 585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 587 | /* Support root bridge hotplug */ |
| 588 | |
| 589 | static void handle_root_bridge_insertion(acpi_handle handle) |
| 590 | { |
| 591 | struct acpi_device *device; |
| 592 | |
| 593 | if (!acpi_bus_get_device(handle, &device)) { |
| 594 | printk(KERN_DEBUG "acpi device exists...\n"); |
| 595 | return; |
| 596 | } |
| 597 | |
| 598 | if (acpi_bus_scan(handle)) |
| 599 | printk(KERN_ERR "cannot add bridge to acpi list\n"); |
| 600 | } |
| 601 | |
| 602 | static void handle_root_bridge_removal(struct acpi_device *device) |
| 603 | { |
Yinghai Lu | b8b6611 | 2013-03-11 05:05:16 +0000 | [diff] [blame] | 604 | acpi_status status; |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 605 | struct acpi_eject_event *ej_event; |
| 606 | |
| 607 | ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL); |
| 608 | if (!ej_event) { |
| 609 | /* Inform firmware the hot-remove operation has error */ |
| 610 | (void) acpi_evaluate_hotplug_ost(device->handle, |
| 611 | ACPI_NOTIFY_EJECT_REQUEST, |
| 612 | ACPI_OST_SC_NON_SPECIFIC_FAILURE, |
| 613 | NULL); |
| 614 | return; |
| 615 | } |
| 616 | |
| 617 | ej_event->device = device; |
| 618 | ej_event->event = ACPI_NOTIFY_EJECT_REQUEST; |
| 619 | |
Rafael J. Wysocki | e02d0a0 | 2013-11-07 01:41:27 +0100 | [diff] [blame] | 620 | get_device(&device->dev); |
Yinghai Lu | b8b6611 | 2013-03-11 05:05:16 +0000 | [diff] [blame] | 621 | status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event); |
Rafael J. Wysocki | e02d0a0 | 2013-11-07 01:41:27 +0100 | [diff] [blame] | 622 | if (ACPI_FAILURE(status)) { |
| 623 | put_device(&device->dev); |
Yinghai Lu | b8b6611 | 2013-03-11 05:05:16 +0000 | [diff] [blame] | 624 | kfree(ej_event); |
Rafael J. Wysocki | e02d0a0 | 2013-11-07 01:41:27 +0100 | [diff] [blame] | 625 | } |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | static void _handle_hotplug_event_root(struct work_struct *work) |
| 629 | { |
| 630 | struct acpi_pci_root *root; |
| 631 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER }; |
| 632 | struct acpi_hp_work *hp_work; |
| 633 | acpi_handle handle; |
| 634 | u32 type; |
| 635 | |
| 636 | hp_work = container_of(work, struct acpi_hp_work, work); |
| 637 | handle = hp_work->handle; |
| 638 | type = hp_work->type; |
| 639 | |
Yinghai Lu | b8b6611 | 2013-03-11 05:05:16 +0000 | [diff] [blame] | 640 | acpi_scan_lock_acquire(); |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 641 | |
Yinghai Lu | b8b6611 | 2013-03-11 05:05:16 +0000 | [diff] [blame] | 642 | root = acpi_pci_find_root(handle); |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 643 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 644 | |
| 645 | switch (type) { |
| 646 | case ACPI_NOTIFY_BUS_CHECK: |
| 647 | /* bus enumerate */ |
| 648 | printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__, |
| 649 | (char *)buffer.pointer); |
Yinghai Lu | 3f327e3 | 2013-05-07 11:06:03 -0600 | [diff] [blame] | 650 | if (root) |
| 651 | acpiphp_check_host_bridge(handle); |
| 652 | else |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 653 | handle_root_bridge_insertion(handle); |
| 654 | |
| 655 | break; |
| 656 | |
| 657 | case ACPI_NOTIFY_DEVICE_CHECK: |
| 658 | /* device check */ |
| 659 | printk(KERN_DEBUG "%s: Device check notify on %s\n", __func__, |
| 660 | (char *)buffer.pointer); |
| 661 | if (!root) |
| 662 | handle_root_bridge_insertion(handle); |
| 663 | break; |
| 664 | |
| 665 | case ACPI_NOTIFY_EJECT_REQUEST: |
| 666 | /* request device eject */ |
| 667 | printk(KERN_DEBUG "%s: Device eject notify on %s\n", __func__, |
| 668 | (char *)buffer.pointer); |
| 669 | if (root) |
| 670 | handle_root_bridge_removal(root->device); |
| 671 | break; |
| 672 | default: |
| 673 | printk(KERN_WARNING "notify_handler: unknown event type 0x%x for %s\n", |
| 674 | type, (char *)buffer.pointer); |
| 675 | break; |
| 676 | } |
| 677 | |
Yinghai Lu | b8b6611 | 2013-03-11 05:05:16 +0000 | [diff] [blame] | 678 | acpi_scan_lock_release(); |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 679 | kfree(hp_work); /* allocated in handle_hotplug_event_bridge */ |
| 680 | kfree(buffer.pointer); |
| 681 | } |
| 682 | |
| 683 | static void handle_hotplug_event_root(acpi_handle handle, u32 type, |
| 684 | void *context) |
| 685 | { |
| 686 | alloc_acpi_hp_work(handle, type, context, |
| 687 | _handle_hotplug_event_root); |
| 688 | } |
| 689 | |
| 690 | static acpi_status __init |
| 691 | find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 692 | { |
Tang Chen | 121b090 | 2013-01-21 13:20:49 -0800 | [diff] [blame] | 693 | acpi_status status; |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 694 | char objname[64]; |
| 695 | struct acpi_buffer buffer = { .length = sizeof(objname), |
| 696 | .pointer = objname }; |
| 697 | int *count = (int *)context; |
| 698 | |
| 699 | if (!acpi_is_root_bridge(handle)) |
| 700 | return AE_OK; |
| 701 | |
| 702 | (*count)++; |
| 703 | |
| 704 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 705 | |
Tang Chen | 121b090 | 2013-01-21 13:20:49 -0800 | [diff] [blame] | 706 | status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY, |
| 707 | handle_hotplug_event_root, NULL); |
| 708 | if (ACPI_FAILURE(status)) |
| 709 | printk(KERN_DEBUG "acpi root: %s notify handler is not installed, exit status: %u\n", |
| 710 | objname, (unsigned int)status); |
| 711 | else |
| 712 | printk(KERN_DEBUG "acpi root: %s notify handler is installed\n", |
| 713 | objname); |
Yinghai Lu | 668192b | 2013-01-21 13:20:48 -0800 | [diff] [blame] | 714 | |
| 715 | return AE_OK; |
| 716 | } |
| 717 | |
| 718 | void __init acpi_pci_root_hp_init(void) |
| 719 | { |
| 720 | int num = 0; |
| 721 | |
| 722 | acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, |
| 723 | ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL); |
| 724 | |
| 725 | printk(KERN_DEBUG "Found %d acpi root devices\n", num); |
| 726 | } |