]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/acpi/pci_root.c
PCI/ACPI: Notify acpi_pci_drivers when hot-plugging PCI root bridges
[mirror_ubuntu-zesty-kernel.git] / drivers / acpi / pci_root.c
CommitLineData
1da177e4
LT
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>
1da177e4
LT
30#include <linux/spinlock.h>
31#include <linux/pm.h>
b67ea761 32#include <linux/pm_runtime.h>
1da177e4 33#include <linux/pci.h>
990a7ac5 34#include <linux/pci-acpi.h>
eca67315 35#include <linux/pci-aspm.h>
1da177e4 36#include <linux/acpi.h>
5a0e3ad6 37#include <linux/slab.h>
1da177e4
LT
38#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
415e12b2 40#include <acpi/apei.h>
1da177e4 41
a192a958
LB
42#define PREFIX "ACPI: "
43
1da177e4 44#define _COMPONENT ACPI_PCI_COMPONENT
f52fd66d 45ACPI_MODULE_NAME("pci_root");
1da177e4 46#define ACPI_PCI_ROOT_CLASS "pci_bridge"
1da177e4 47#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
4be44fcd
LB
48static int acpi_pci_root_add(struct acpi_device *device);
49static int acpi_pci_root_remove(struct acpi_device *device, int type);
50static int acpi_pci_root_start(struct acpi_device *device);
1da177e4 51
415e12b2
RW
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
c97adf9e 57static const struct acpi_device_id root_device_ids[] = {
1ba90e3a
TR
58 {"PNP0A03", 0},
59 {"", 0},
60};
61MODULE_DEVICE_TABLE(acpi, root_device_ids);
62
1da177e4 63static struct acpi_driver acpi_pci_root_driver = {
c2b6705b 64 .name = "pci_root",
4be44fcd 65 .class = ACPI_PCI_ROOT_CLASS,
1ba90e3a 66 .ids = root_device_ids,
4be44fcd
LB
67 .ops = {
68 .add = acpi_pci_root_add,
69 .remove = acpi_pci_root_remove,
70 .start = acpi_pci_root_start,
71 },
1da177e4
LT
72};
73
1da177e4 74static LIST_HEAD(acpi_pci_roots);
8ee5bdf3 75static LIST_HEAD(acpi_pci_drivers);
1da177e4 76
63f10f0f 77static DEFINE_MUTEX(osc_lock);
1da177e4
LT
78
79int acpi_pci_register_driver(struct acpi_pci_driver *driver)
80{
81 int n = 0;
c1aec834 82 struct acpi_pci_root *root;
1da177e4 83
8ee5bdf3 84 list_add_tail(&driver->node, &acpi_pci_drivers);
1da177e4
LT
85
86 if (!driver->add)
87 return 0;
88
c1aec834 89 list_for_each_entry(root, &acpi_pci_roots, node) {
2d1e0a02 90 driver->add(root->device->handle);
1da177e4
LT
91 n++;
92 }
93
94 return n;
95}
4be44fcd 96
1da177e4
LT
97EXPORT_SYMBOL(acpi_pci_register_driver);
98
99void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
100{
c1aec834 101 struct acpi_pci_root *root;
1da177e4 102
8ee5bdf3 103 list_del(&driver->node);
1da177e4
LT
104
105 if (!driver->remove)
106 return;
107
c1aec834 108 list_for_each_entry(root, &acpi_pci_roots, node)
2d1e0a02 109 driver->remove(root->device->handle);
1da177e4 110}
4be44fcd 111
1da177e4
LT
112EXPORT_SYMBOL(acpi_pci_unregister_driver);
113
d91a0078
JC
114acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
115{
c1aec834 116 struct acpi_pci_root *root;
d91a0078 117
c1aec834 118 list_for_each_entry(root, &acpi_pci_roots, node)
6ad95513
BH
119 if ((root->segment == (u16) seg) &&
120 (root->secondary.start == (u16) bus))
c1aec834 121 return root->device->handle;
d91a0078
JC
122 return NULL;
123}
124
125EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
126
27558203
AC
127/**
128 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
129 * @handle - the ACPI CA node in question.
130 *
131 * Note: we could make this API take a struct acpi_device * instead, but
132 * for now, it's more convenient to operate on an acpi_handle.
133 */
134int acpi_is_root_bridge(acpi_handle handle)
135{
136 int ret;
137 struct acpi_device *device;
138
139 ret = acpi_bus_get_device(handle, &device);
140 if (ret)
141 return 0;
142
143 ret = acpi_match_device_ids(device, root_device_ids);
144 if (ret)
145 return 0;
146 else
147 return 1;
148}
149EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
150
1da177e4 151static acpi_status
4be44fcd 152get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
1da177e4 153{
6ad95513 154 struct resource *res = data;
1da177e4
LT
155 struct acpi_resource_address64 address;
156
50eca3eb
BM
157 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
158 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
159 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
1da177e4
LT
160 return AE_OK;
161
162 acpi_resource_to_address64(resource, &address);
4be44fcd 163 if ((address.address_length > 0) &&
6ad95513
BH
164 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
165 res->start = address.minimum;
166 res->end = address.minimum + address.address_length - 1;
167 }
1da177e4
LT
168
169 return AE_OK;
170}
171
f5eebbe1 172static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
6ad95513 173 struct resource *res)
1da177e4
LT
174{
175 acpi_status status;
176
6ad95513 177 res->start = -1;
4be44fcd
LB
178 status =
179 acpi_walk_resources(handle, METHOD_NAME__CRS,
6ad95513 180 get_root_bridge_busnr_callback, res);
1da177e4
LT
181 if (ACPI_FAILURE(status))
182 return status;
6ad95513 183 if (res->start == -1)
1da177e4
LT
184 return AE_ERROR;
185 return AE_OK;
186}
187
2786f6e3
RZ
188static void acpi_pci_bridge_scan(struct acpi_device *device)
189{
190 int status;
191 struct acpi_device *child = NULL;
192
193 if (device->flags.bus_address)
194 if (device->parent && device->parent->ops.bind) {
195 status = device->parent->ops.bind(device);
196 if (!status) {
197 list_for_each_entry(child, &device->children, node)
198 acpi_pci_bridge_scan(child);
199 }
200 }
201}
202
3a9622dc 203static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
63f10f0f
KK
204
205static acpi_status acpi_pci_run_osc(acpi_handle handle,
206 const u32 *capbuf, u32 *retval)
207{
3a9622dc
SL
208 struct acpi_osc_context context = {
209 .uuid_str = pci_osc_uuid_str,
210 .rev = 1,
211 .cap.length = 12,
212 .cap.pointer = (void *)capbuf,
213 };
63f10f0f 214 acpi_status status;
63f10f0f 215
3a9622dc
SL
216 status = acpi_run_osc(handle, &context);
217 if (ACPI_SUCCESS(status)) {
218 *retval = *((u32 *)(context.ret.pointer + 8));
219 kfree(context.ret.pointer);
63f10f0f 220 }
63f10f0f
KK
221 return status;
222}
223
ab8e8957
RW
224static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
225 u32 support,
226 u32 *control)
63f10f0f
KK
227{
228 acpi_status status;
ab8e8957
RW
229 u32 result, capbuf[3];
230
231 support &= OSC_PCI_SUPPORT_MASKS;
232 support |= root->osc_support_set;
63f10f0f 233
63f10f0f 234 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
ab8e8957
RW
235 capbuf[OSC_SUPPORT_TYPE] = support;
236 if (control) {
237 *control &= OSC_PCI_CONTROL_MASKS;
238 capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set;
239 } else {
240 /* Run _OSC query for all possible controls. */
241 capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
242 }
63f10f0f
KK
243
244 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
245 if (ACPI_SUCCESS(status)) {
ab8e8957 246 root->osc_support_set = support;
2b8fd918 247 if (control)
ab8e8957 248 *control = result;
63f10f0f
KK
249 }
250 return status;
251}
252
253static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
254{
255 acpi_status status;
256 acpi_handle tmp;
257
258 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
259 if (ACPI_FAILURE(status))
260 return status;
261 mutex_lock(&osc_lock);
ab8e8957 262 status = acpi_pci_query_osc(root, flags, NULL);
63f10f0f
KK
263 mutex_unlock(&osc_lock);
264 return status;
265}
266
76d56de5 267struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
63f10f0f
KK
268{
269 struct acpi_pci_root *root;
c1aec834 270
63f10f0f
KK
271 list_for_each_entry(root, &acpi_pci_roots, node) {
272 if (root->device->handle == handle)
273 return root;
274 }
275 return NULL;
276}
76d56de5 277EXPORT_SYMBOL_GPL(acpi_pci_find_root);
63f10f0f 278
2f7bbceb
AC
279struct acpi_handle_node {
280 struct list_head node;
281 acpi_handle handle;
282};
283
284/**
285 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
286 * @handle: the handle in question
287 *
288 * Given an ACPI CA handle, the desired PCI device is located in the
289 * list of PCI devices.
290 *
291 * If the device is found, its reference count is increased and this
292 * function returns a pointer to its data structure. The caller must
293 * decrement the reference count by calling pci_dev_put().
294 * If no device is found, %NULL is returned.
295 */
296struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
297{
298 int dev, fn;
299 unsigned long long adr;
300 acpi_status status;
301 acpi_handle phandle;
302 struct pci_bus *pbus;
303 struct pci_dev *pdev = NULL;
304 struct acpi_handle_node *node, *tmp;
305 struct acpi_pci_root *root;
306 LIST_HEAD(device_list);
307
308 /*
309 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
310 */
311 phandle = handle;
312 while (!acpi_is_root_bridge(phandle)) {
313 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
314 if (!node)
315 goto out;
316
317 INIT_LIST_HEAD(&node->node);
318 node->handle = phandle;
319 list_add(&node->node, &device_list);
320
321 status = acpi_get_parent(phandle, &phandle);
322 if (ACPI_FAILURE(status))
323 goto out;
324 }
325
326 root = acpi_pci_find_root(phandle);
327 if (!root)
328 goto out;
329
330 pbus = root->bus;
331
332 /*
333 * Now, walk back down the PCI device tree until we return to our
334 * original handle. Assumes that everything between the PCI root
335 * bridge and the device we're looking for must be a P2P bridge.
336 */
337 list_for_each_entry(node, &device_list, node) {
338 acpi_handle hnd = node->handle;
339 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
340 if (ACPI_FAILURE(status))
341 goto out;
342 dev = (adr >> 16) & 0xffff;
343 fn = adr & 0xffff;
344
345 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
412af978 346 if (!pdev || hnd == handle)
2f7bbceb
AC
347 break;
348
349 pbus = pdev->subordinate;
350 pci_dev_put(pdev);
497fb54f
RW
351
352 /*
353 * This function may be called for a non-PCI device that has a
354 * PCI parent (eg. a disk under a PCI SATA controller). In that
355 * case pdev->subordinate will be NULL for the parent.
356 */
357 if (!pbus) {
358 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
359 pdev = NULL;
360 break;
361 }
2f7bbceb
AC
362 }
363out:
364 list_for_each_entry_safe(node, tmp, &device_list, node)
365 kfree(node);
366
367 return pdev;
368}
369EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
370
63f10f0f 371/**
75fb60f2
RW
372 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
373 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
374 * @mask: Mask of _OSC bits to request control of, place to store control mask.
375 * @req: Mask of _OSC bits the control of is essential to the caller.
63f10f0f 376 *
75fb60f2
RW
377 * Run _OSC query for @mask and if that is successful, compare the returned
378 * mask of control bits with @req. If all of the @req bits are set in the
379 * returned mask, run _OSC request for it.
380 *
381 * The variable at the @mask address may be modified regardless of whether or
382 * not the function returns success. On success it will contain the mask of
383 * _OSC bits the BIOS has granted control of, but its contents are meaningless
384 * on failure.
63f10f0f 385 **/
75fb60f2 386acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
63f10f0f 387{
75fb60f2 388 struct acpi_pci_root *root;
63f10f0f 389 acpi_status status;
75fb60f2 390 u32 ctrl, capbuf[3];
63f10f0f 391 acpi_handle tmp;
63f10f0f 392
75fb60f2
RW
393 if (!mask)
394 return AE_BAD_PARAMETER;
395
396 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
397 if ((ctrl & req) != req)
63f10f0f
KK
398 return AE_TYPE;
399
400 root = acpi_pci_find_root(handle);
401 if (!root)
402 return AE_NOT_EXIST;
403
b879dc4b
RW
404 status = acpi_get_handle(handle, "_OSC", &tmp);
405 if (ACPI_FAILURE(status))
406 return status;
407
63f10f0f 408 mutex_lock(&osc_lock);
75fb60f2
RW
409
410 *mask = ctrl | root->osc_control_set;
63f10f0f 411 /* No need to evaluate _OSC if the control was already granted. */
75fb60f2 412 if ((root->osc_control_set & ctrl) == ctrl)
63f10f0f
KK
413 goto out;
414
75fb60f2
RW
415 /* Need to check the available controls bits before requesting them. */
416 while (*mask) {
417 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
418 if (ACPI_FAILURE(status))
419 goto out;
420 if (ctrl == *mask)
421 break;
422 ctrl = *mask;
423 }
2b8fd918 424
75fb60f2 425 if ((ctrl & req) != req) {
63f10f0f
KK
426 status = AE_SUPPORT;
427 goto out;
428 }
429
430 capbuf[OSC_QUERY_TYPE] = 0;
431 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
75fb60f2
RW
432 capbuf[OSC_CONTROL_TYPE] = ctrl;
433 status = acpi_pci_run_osc(handle, capbuf, mask);
63f10f0f 434 if (ACPI_SUCCESS(status))
75fb60f2 435 root->osc_control_set = *mask;
63f10f0f
KK
436out:
437 mutex_unlock(&osc_lock);
438 return status;
439}
9f5404d8 440EXPORT_SYMBOL(acpi_pci_osc_control_set);
63f10f0f 441
b5678a34 442static int __devinit acpi_pci_root_add(struct acpi_device *device)
1da177e4 443{
f5eebbe1
BH
444 unsigned long long segment, bus;
445 acpi_status status;
446 int result;
447 struct acpi_pci_root *root;
448 acpi_handle handle;
2786f6e3 449 struct acpi_device *child;
0ef5f8f6 450 u32 flags, base_flags;
1da177e4 451
6ad95513
BH
452 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
453 if (!root)
454 return -ENOMEM;
455
f5eebbe1
BH
456 segment = 0;
457 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
458 &segment);
459 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
460 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
6ad95513
BH
461 result = -ENODEV;
462 goto end;
f5eebbe1 463 }
1da177e4 464
f5eebbe1 465 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
6ad95513
BH
466 root->secondary.flags = IORESOURCE_BUS;
467 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
f5eebbe1 468 if (ACPI_FAILURE(status)) {
6ad95513
BH
469 /*
470 * We need both the start and end of the downstream bus range
471 * to interpret _CBA (MMCONFIG base address), so it really is
472 * supposed to be in _CRS. If we don't find it there, all we
473 * can do is assume [_BBN-0xFF] or [0-0xFF].
474 */
475 root->secondary.end = 0xFF;
476 printk(KERN_WARNING FW_BUG PREFIX
477 "no secondary bus range in _CRS\n");
e545b55a
JM
478 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
479 NULL, &bus);
6ad95513
BH
480 if (ACPI_SUCCESS(status))
481 root->secondary.start = bus;
482 else if (status == AE_NOT_FOUND)
483 root->secondary.start = 0;
484 else {
485 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
486 result = -ENODEV;
487 goto end;
f5eebbe1
BH
488 }
489 }
1da177e4 490
f5eebbe1 491 INIT_LIST_HEAD(&root->node);
32917e5b 492 root->device = device;
0705495d 493 root->segment = segment & 0xFFFF;
1da177e4
LT
494 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
495 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
db89b4f0 496 device->driver_data = root;
1da177e4 497
f4b57a3b
JL
498 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
499
990a7ac5
AP
500 /*
501 * All supported architectures that use ACPI have support for
502 * PCI domains, so we indicate this in _OSC support capabilities.
503 */
0ef5f8f6 504 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
63f10f0f 505 acpi_pci_osc_support(root, flags);
990a7ac5 506
1da177e4
LT
507 /*
508 * TBD: Need PCI interface for enumeration/configuration of roots.
509 */
510
4be44fcd
LB
511 /* TBD: Locking */
512 list_add_tail(&root->node, &acpi_pci_roots);
1da177e4 513
6ad95513 514 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
4be44fcd 515 acpi_device_name(device), acpi_device_bid(device),
6ad95513 516 root->segment, &root->secondary);
1da177e4
LT
517
518 /*
519 * Scan the Root Bridge
520 * --------------------
521 * Must do this prior to any attempt to bind the root device, as the
522 * PCI namespace does not get created until this call is made (and
523 * thus the root bridge's pci_dev does not exist).
524 */
57283776 525 root->bus = pci_acpi_scan_root(root);
1da177e4 526 if (!root->bus) {
6468463a
LB
527 printk(KERN_ERR PREFIX
528 "Bus %04x:%02x not present in PCI namespace\n",
6ad95513 529 root->segment, (unsigned int)root->secondary.start);
1da177e4
LT
530 result = -ENODEV;
531 goto end;
532 }
533
534 /*
535 * Attach ACPI-PCI Context
536 * -----------------------
537 * Thus binding the ACPI and PCI devices.
538 */
499650de 539 result = acpi_pci_bind_root(device);
1da177e4
LT
540 if (result)
541 goto end;
542
543 /*
544 * PCI Routing Table
545 * -----------------
546 * Evaluate and parse _PRT, if exists.
547 */
2d1e0a02 548 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
1da177e4 549 if (ACPI_SUCCESS(status))
859a3f86 550 result = acpi_pci_irq_add_prt(device->handle, root->bus);
1da177e4 551
2786f6e3
RZ
552 /*
553 * Scan and bind all _ADR-Based Devices
554 */
555 list_for_each_entry(child, &device->children, node)
556 acpi_pci_bridge_scan(child);
557
0ef5f8f6
AP
558 /* Indicate support for various _OSC capabilities. */
559 if (pci_ext_cfg_avail(root->bus->self))
560 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
8b8bae90 561 if (pcie_aspm_support_enabled())
3e1b1600
AP
562 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
563 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
07ae95f9
AP
564 if (pci_msi_enabled())
565 flags |= OSC_MSI_SUPPORT;
0ef5f8f6 566 if (flags != base_flags)
63f10f0f 567 acpi_pci_osc_support(root, flags);
0ef5f8f6 568
415e12b2
RW
569 if (!pcie_ports_disabled
570 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
571 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
572 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
573 | OSC_PCI_EXPRESS_PME_CONTROL;
574
575 if (pci_aer_available()) {
576 if (aer_acpi_firmware_first())
577 dev_dbg(root->bus->bridge,
578 "PCIe errors handled by BIOS.\n");
579 else
580 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
581 }
582
583 dev_info(root->bus->bridge,
584 "Requesting ACPI _OSC control (0x%02x)\n", flags);
585
586 status = acpi_pci_osc_control_set(device->handle, &flags,
587 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
eca67315 588 if (ACPI_SUCCESS(status)) {
415e12b2
RW
589 dev_info(root->bus->bridge,
590 "ACPI _OSC control (0x%02x) granted\n", flags);
3c076351
MG
591 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
592 /*
593 * We have ASPM control, but the FADT indicates
594 * that it's unsupported. Clear it.
595 */
596 pcie_clear_aspm(root->bus);
597 }
eca67315 598 } else {
a246670d
RW
599 dev_info(root->bus->bridge,
600 "ACPI _OSC request failed (%s), "
601 "returned control mask: 0x%02x\n",
602 acpi_format_exception(status), flags);
603 pr_info("ACPI _OSC control for PCIe not granted, "
604 "disabling ASPM\n");
eca67315
NC
605 pcie_no_aspm();
606 }
a246670d
RW
607 } else {
608 dev_info(root->bus->bridge,
609 "Unable to request _OSC control "
610 "(_OSC support mask: 0x%02x)\n", flags);
415e12b2
RW
611 }
612
b67ea761
RW
613 pci_acpi_add_bus_pm_notifier(device, root->bus);
614 if (device->wakeup.flags.run_wake)
615 device_set_run_wake(root->bus->bridge, true);
616
f5eebbe1 617 return 0;
1da177e4 618
f5eebbe1
BH
619end:
620 if (!list_empty(&root->node))
621 list_del(&root->node);
622 kfree(root);
d550d98d 623 return result;
1da177e4
LT
624}
625
4be44fcd 626static int acpi_pci_root_start(struct acpi_device *device)
c431ada4 627{
caf420c6 628 struct acpi_pci_root *root = acpi_driver_data(device);
c8e9afb1
JL
629 struct acpi_pci_driver *driver;
630
631 list_for_each_entry(driver, &acpi_pci_drivers, node)
632 if (driver->add)
633 driver->add(device->handle);
c431ada4 634
caf420c6 635 pci_bus_add_devices(root->bus);
c8e9afb1 636
caf420c6 637 return 0;
c431ada4 638}
1da177e4 639
4be44fcd 640static int acpi_pci_root_remove(struct acpi_device *device, int type)
1da177e4 641{
caf420c6 642 struct acpi_pci_root *root = acpi_driver_data(device);
c8e9afb1
JL
643 struct acpi_pci_driver *driver;
644
645 list_for_each_entry(driver, &acpi_pci_drivers, node)
646 if (driver->remove)
647 driver->remove(root->device->handle);
1da177e4 648
b67ea761
RW
649 device_set_run_wake(root->bus->bridge, false);
650 pci_acpi_remove_bus_pm_notifier(device);
651
1da177e4 652 kfree(root);
d550d98d 653 return 0;
1da177e4
LT
654}
655
4be44fcd 656static int __init acpi_pci_root_init(void)
1da177e4 657{
d3072e6a
RW
658 acpi_hest_init();
659
1da177e4 660 if (acpi_pci_disabled)
d550d98d 661 return 0;
1da177e4 662
7bc5e3f2 663 pci_acpi_crs_quirks();
1da177e4 664 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
d550d98d 665 return -ENODEV;
1da177e4 666
d550d98d 667 return 0;
1da177e4
LT
668}
669
670subsys_initcall(acpi_pci_root_init);