blob: d77f0bf7eda09790b42df7205c3de076e0f7e65a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Izumid0020f62012-09-18 15:21:31 +090030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/pm.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010032#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/pci.h>
Andrew Patterson990a7ac2008-11-10 15:30:45 -070034#include <linux/pci-acpi.h>
Naga Chumbalkareca67312011-03-21 03:29:20 +000035#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010040#include <acpi/apei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Rafael J. Wysockiace82382013-11-07 01:41:48 +010042#include "internal.h"
43
Len Browna192a952009-07-28 16:45:54 -040044#define PREFIX "ACPI: "
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050047ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010050static int acpi_pci_root_add(struct acpi_device *device,
51 const struct acpi_device_id *not_used);
52static void acpi_pci_root_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010054#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émethc97adf92010-01-10 17:15:36 +010059static const struct acpi_device_id root_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020060 {"PNP0A03", 0},
61 {"", 0},
62};
Thomas Renninger1ba90e32007-07-23 14:44:41 +020063
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010064static struct acpi_scan_handler pci_root_handler = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020065 .ids = root_device_ids,
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010066 .attach = acpi_pci_root_add,
67 .detach = acpi_pci_root_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090070static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Alexander Chiang27558202009-06-10 19:55:14 +000072/**
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 */
79int 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}
94EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040097get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -070099 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct acpi_resource_address64 address;
Bjorn Helgaasf6c1c8f2012-06-21 23:48:50 -0600101 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Bjorn Helgaasf6c1c8f2012-06-21 23:48:50 -0600103 status = acpi_resource_to_address64(resource, &address);
104 if (ACPI_FAILURE(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return AE_OK;
106
Len Brown4be44fc2005-08-05 00:44:28 -0400107 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700108 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
109 res->start = address.minimum;
110 res->end = address.minimum + address.address_length - 1;
111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 return AE_OK;
114}
115
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600116static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700117 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 acpi_status status;
120
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700121 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400122 status =
123 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700124 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (ACPI_FAILURE(status))
126 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700127 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return AE_ERROR;
129 return AE_OK;
130}
131
Shaohua Li3a9622d2009-10-29 11:04:50 +0800132static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900133
134static acpi_status acpi_pci_run_osc(acpi_handle handle,
135 const u32 *capbuf, u32 *retval)
136{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800137 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 Kaneshige63f10f02009-02-09 15:59:29 +0900143 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900144
Shaohua Li3a9622d2009-10-29 11:04:50 +0800145 status = acpi_run_osc(handle, &context);
146 if (ACPI_SUCCESS(status)) {
147 *retval = *((u32 *)(context.ret.pointer + 8));
148 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900149 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900150 return status;
151}
152
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200153static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
154 u32 support,
155 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900156{
157 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200158 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900159
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200160 support &= OSC_PCI_SUPPORT_MASKS;
161 support |= root->osc_support_set;
162
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900163 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200164 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 Lu545d6e12013-03-28 04:28:58 +0000169 /* Run _OSC query only with existing controls. */
170 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200171 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900172
173 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
174 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200175 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200176 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200177 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900178 }
179 return status;
180}
181
182static 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. Wysockiab8e8952010-08-21 01:53:27 +0200191 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900192 mutex_unlock(&osc_lock);
193 return status;
194}
195
Alex Chiang76d56de2009-07-23 17:03:00 -0600196struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900197{
198 struct acpi_pci_root *root;
Taku Izumicd4faf92012-09-18 15:23:23 +0900199 struct acpi_device *device;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600200
Taku Izumicd4faf92012-09-18 15:23:23 +0900201 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 Kaneshige63f10f02009-02-09 15:59:29 +0900208}
Alex Chiang76d56de2009-07-23 17:03:00 -0600209EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900210
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000211struct 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 */
228struct 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 Moure412af972009-06-25 17:05:35 -0600278 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000279 break;
280
281 pbus = pdev->subordinate;
282 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200283
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 Chiang2f7bbce2009-06-10 19:55:20 +0000294 }
295out:
296 list_for_each_entry_safe(node, tmp, &device_list, node)
297 kfree(node);
298
299 return pdev;
300}
301EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
302
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900303/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200304 * 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 Kaneshige63f10f02009-02-09 15:59:29 +0900308 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200309 * 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 Kaneshige63f10f02009-02-09 15:59:29 +0900317 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200318acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900319{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900320 struct acpi_pci_root *root;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200321 acpi_status status;
322 u32 ctrl, capbuf[3];
323 acpi_handle tmp;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900324
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200325 if (!mask)
326 return AE_BAD_PARAMETER;
327
328 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
329 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900330 return AE_TYPE;
331
332 root = acpi_pci_find_root(handle);
333 if (!root)
334 return AE_NOT_EXIST;
335
Rafael J. Wysockib879dc42010-08-21 01:52:37 +0200336 status = acpi_get_handle(handle, "_OSC", &tmp);
337 if (ACPI_FAILURE(status))
338 return status;
339
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900340 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200341
342 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900343 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200344 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900345 goto out;
346
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200347 /* 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. Wysocki2b8fd912010-08-23 23:55:59 +0200356
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200357 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900358 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. Wysocki75fb60f2010-08-23 23:53:11 +0200364 capbuf[OSC_CONTROL_TYPE] = ctrl;
365 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900366 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200367 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900368out:
369 mutex_unlock(&osc_lock);
370 return status;
371}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900372EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900373
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100374static int acpi_pci_root_add(struct acpi_device *device,
375 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600377 unsigned long long segment, bus;
378 acpi_status status;
379 int result;
380 struct acpi_pci_root *root;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700381 u32 flags, base_flags;
Jiang Liubfe24142013-05-28 18:31:27 -0600382 acpi_handle handle = device->handle;
Neil Horman3dc48af2013-08-29 16:17:05 -0400383 bool no_aspm = false, clear_aspm = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700385 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
386 if (!root)
387 return -ENOMEM;
388
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600389 segment = 0;
Jiang Liubfe24142013-05-28 18:31:27 -0600390 status = acpi_evaluate_integer(handle, METHOD_NAME__SEG, NULL,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600391 &segment);
392 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600393 dev_err(&device->dev, "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700394 result = -ENODEV;
395 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600398 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700399 root->secondary.flags = IORESOURCE_BUS;
Jiang Liubfe24142013-05-28 18:31:27 -0600400 status = try_get_root_bridge_busnr(handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600401 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700402 /*
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 Liu6dc7d222013-05-28 18:10:05 -0600409 dev_warn(&device->dev,
410 FW_BUG "no secondary bus range in _CRS\n");
Jiang Liubfe24142013-05-28 18:31:27 -0600411 status = acpi_evaluate_integer(handle, METHOD_NAME__BBN,
Jon Masone545b552011-06-19 18:51:37 -0500412 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700413 if (ACPI_SUCCESS(status))
414 root->secondary.start = bus;
415 else if (status == AE_NOT_FOUND)
416 root->secondary.start = 0;
417 else {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600418 dev_err(&device->dev, "can't evaluate _BBN\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700419 result = -ENODEV;
420 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600421 }
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Patrick Mochel32917e52006-05-19 16:54:39 -0400424 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600425 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
427 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700428 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Jiang Liu6dc7d222013-05-28 18:10:05 -0600430 pr_info(PREFIX "%s [%s] (domain %04x %pR)\n",
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900431 acpi_device_name(device), acpi_device_bid(device),
432 root->segment, &root->secondary);
433
Jiang Liubfe24142013-05-28 18:31:27 -0600434 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(handle);
Jiang Liuf4b57a32012-06-22 14:55:16 +0800435
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700436 /*
437 * All supported architectures that use ACPI have support for
438 * PCI domains, so we indicate this in _OSC support capabilities.
439 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700440 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900441 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700442
Taku Izumi8c33f512012-10-30 15:27:13 +0900443 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 Horman3dc48af2013-08-29 16:17:05 -0400456 no_aspm = true;
Taku Izumi8c33f512012-10-30 15:27:13 +0900457 flags = base_flags;
458 }
459 }
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600460
Taku Izumi8c33f512012-10-30 15:27:13 +0900461 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 Liubfe24142013-05-28 18:31:27 -0600478 status = acpi_pci_osc_control_set(handle, &flags,
Taku Izumi8c33f512012-10-30 15:27:13 +0900479 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
480 if (ACPI_SUCCESS(status)) {
Taku Izumi8c33f512012-10-30 15:27:13 +0900481 dev_info(&device->dev,
482 "ACPI _OSC control (0x%02x) granted\n", flags);
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600483 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 Horman3dc48af2013-08-29 16:17:05 -0400488 clear_aspm = true;
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600489 }
Taku Izumi8c33f512012-10-30 15:27:13 +0900490 } else {
Taku Izumi8c33f512012-10-30 15:27:13 +0900491 dev_info(&device->dev,
492 "ACPI _OSC request failed (%s), "
493 "returned control mask: 0x%02x\n",
494 acpi_format_exception(status), flags);
Jiang Liu6dc7d222013-05-28 18:10:05 -0600495 dev_info(&device->dev,
496 "ACPI _OSC control for PCIe not granted, disabling ASPM\n");
Neil Horman3dc48af2013-08-29 16:17:05 -0400497 /*
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 Izumi8c33f512012-10-30 15:27:13 +0900505 }
506 } else {
507 dev_info(&device->dev,
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600508 "Unable to request _OSC control "
509 "(_OSC support mask: 0x%02x)\n", flags);
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100510 }
511
Neil Horman3dc48af2013-08-29 16:17:05 -0400512 /*
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. Wysockib67ea762010-02-17 23:44:09 +0100539 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 Lu3c449ed2012-11-03 21:39:31 -0700543 if (system_state != SYSTEM_BOOTING) {
544 pcibios_resource_survey_bus(root->bus);
Yinghai Lu39772032013-07-22 14:37:18 -0700545 pci_assign_unassigned_root_bus_resources(root->bus);
Jiang Liu516ca222013-05-28 18:04:46 -0600546 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600547
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600548 pci_bus_add_devices(root->bus);
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100549 return 1;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100550
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100551end:
552 kfree(root);
553 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100556static void acpi_pci_root_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600558 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900559
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600560 pci_stop_root_bus(root->bus);
561
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100562 device_set_run_wake(root->bus->bridge, false);
563 pci_acpi_remove_bus_pm_notifier(device);
564
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600565 pci_remove_root_bus(root->bus);
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 kfree(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100570void __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100572 acpi_hest_init();
573
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100574 if (!acpi_pci_disabled) {
575 pci_acpi_crs_quirks();
576 acpi_scan_add_handler(&pci_root_handler);
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
Yinghai Lu668192b2013-01-21 13:20:48 -0800579/* Support root bridge hotplug */
580
581static void handle_root_bridge_insertion(acpi_handle handle)
582{
583 struct acpi_device *device;
584
585 if (!acpi_bus_get_device(handle, &device)) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600586 dev_printk(KERN_DEBUG, &device->dev,
587 "acpi device already exists; ignoring notify\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800588 return;
589 }
590
591 if (acpi_bus_scan(handle))
Jiang Liu6dc7d222013-05-28 18:10:05 -0600592 acpi_handle_err(handle, "cannot add bridge to acpi list\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800593}
594
Yinghai Lu668192b2013-01-21 13:20:48 -0800595static void _handle_hotplug_event_root(struct work_struct *work)
596{
597 struct acpi_pci_root *root;
Yinghai Lu668192b2013-01-21 13:20:48 -0800598 struct acpi_hp_work *hp_work;
599 acpi_handle handle;
600 u32 type;
601
602 hp_work = container_of(work, struct acpi_hp_work, work);
603 handle = hp_work->handle;
604 type = hp_work->type;
Rafael J. Wysocki43d38882013-11-07 01:42:09 +0100605 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
Yinghai Lu668192b2013-01-21 13:20:48 -0800606
Yinghai Lub8b66112013-03-11 05:05:16 +0000607 acpi_scan_lock_acquire();
Yinghai Lu668192b2013-01-21 13:20:48 -0800608
Yinghai Lub8b66112013-03-11 05:05:16 +0000609 root = acpi_pci_find_root(handle);
Yinghai Lu668192b2013-01-21 13:20:48 -0800610
611 switch (type) {
612 case ACPI_NOTIFY_BUS_CHECK:
613 /* bus enumerate */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600614 acpi_handle_printk(KERN_DEBUG, handle,
615 "Bus check notify on %s\n", __func__);
Yinghai Lu3f327e32013-05-07 11:06:03 -0600616 if (root)
617 acpiphp_check_host_bridge(handle);
618 else
Yinghai Lu668192b2013-01-21 13:20:48 -0800619 handle_root_bridge_insertion(handle);
620
621 break;
622
623 case ACPI_NOTIFY_DEVICE_CHECK:
624 /* device check */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600625 acpi_handle_printk(KERN_DEBUG, handle,
626 "Device check notify on %s\n", __func__);
Yinghai Lu668192b2013-01-21 13:20:48 -0800627 if (!root)
628 handle_root_bridge_insertion(handle);
629 break;
630
631 case ACPI_NOTIFY_EJECT_REQUEST:
632 /* request device eject */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600633 acpi_handle_printk(KERN_DEBUG, handle,
634 "Device eject notify on %s\n", __func__);
Rafael J. Wysocki43d38882013-11-07 01:42:09 +0100635 if (!root)
636 break;
637
638 get_device(&root->device->dev);
639
640 acpi_scan_lock_release();
641
642 acpi_bus_device_eject(root->device, ACPI_NOTIFY_EJECT_REQUEST);
643 return;
Yinghai Lu668192b2013-01-21 13:20:48 -0800644 default:
Jiang Liu6dc7d222013-05-28 18:10:05 -0600645 acpi_handle_warn(handle,
646 "notify_handler: unknown event type 0x%x\n",
647 type);
Yinghai Lu668192b2013-01-21 13:20:48 -0800648 break;
649 }
650
Yinghai Lub8b66112013-03-11 05:05:16 +0000651 acpi_scan_lock_release();
Yinghai Lu668192b2013-01-21 13:20:48 -0800652}
653
654static void handle_hotplug_event_root(acpi_handle handle, u32 type,
655 void *context)
656{
657 alloc_acpi_hp_work(handle, type, context,
658 _handle_hotplug_event_root);
659}
660
661static acpi_status __init
662find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
663{
Tang Chen121b0902013-01-21 13:20:49 -0800664 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800665 int *count = (int *)context;
666
667 if (!acpi_is_root_bridge(handle))
668 return AE_OK;
669
670 (*count)++;
671
Tang Chen121b0902013-01-21 13:20:49 -0800672 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
673 handle_hotplug_event_root, NULL);
674 if (ACPI_FAILURE(status))
Jiang Liu6dc7d222013-05-28 18:10:05 -0600675 acpi_handle_printk(KERN_DEBUG, handle,
676 "notify handler is not installed, exit status: %u\n",
677 (unsigned int)status);
Tang Chen121b0902013-01-21 13:20:49 -0800678 else
Jiang Liu6dc7d222013-05-28 18:10:05 -0600679 acpi_handle_printk(KERN_DEBUG, handle,
680 "notify handler is installed\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800681
682 return AE_OK;
683}
684
685void __init acpi_pci_root_hp_init(void)
686{
687 int num = 0;
688
689 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
690 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
691
692 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
693}