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