blob: 27020882eb979aedcdace3be31738ae92464a127 [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
Len Browna192a952009-07-28 16:45:54 -040042#define PREFIX "ACPI: "
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050045ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010048static int acpi_pci_root_add(struct acpi_device *device,
49 const struct acpi_device_id *not_used);
50static void acpi_pci_root_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010052#define ACPI_PCIE_REQ_SUPPORT (OSC_EXT_PCI_CONFIG_SUPPORT \
53 | OSC_ACTIVE_STATE_PWR_SUPPORT \
54 | OSC_CLOCK_PWR_CAPABILITY_SUPPORT \
55 | OSC_MSI_SUPPORT)
56
Márton Némethc97adf92010-01-10 17:15:36 +010057static const struct acpi_device_id root_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020058 {"PNP0A03", 0},
59 {"", 0},
60};
Thomas Renninger1ba90e32007-07-23 14:44:41 +020061
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010062static struct acpi_scan_handler pci_root_handler = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020063 .ids = root_device_ids,
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010064 .attach = acpi_pci_root_add,
65 .detach = acpi_pci_root_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090068static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Alexander Chiang27558202009-06-10 19:55:14 +000070/**
71 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
72 * @handle - the ACPI CA node in question.
73 *
74 * Note: we could make this API take a struct acpi_device * instead, but
75 * for now, it's more convenient to operate on an acpi_handle.
76 */
77int acpi_is_root_bridge(acpi_handle handle)
78{
79 int ret;
80 struct acpi_device *device;
81
82 ret = acpi_bus_get_device(handle, &device);
83 if (ret)
84 return 0;
85
86 ret = acpi_match_device_ids(device, root_device_ids);
87 if (ret)
88 return 0;
89 else
90 return 1;
91}
92EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040095get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -070097 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct acpi_resource_address64 address;
99
Bob Moore50eca3e2005-09-30 19:03:00 -0400100 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
101 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
102 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return AE_OK;
104
105 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400106 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700107 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
108 res->start = address.minimum;
109 res->end = address.minimum + address.address_length - 1;
110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 return AE_OK;
113}
114
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600115static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700116 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 acpi_status status;
119
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700120 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400121 status =
122 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700123 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (ACPI_FAILURE(status))
125 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700126 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return AE_ERROR;
128 return AE_OK;
129}
130
Shaohua Li3a9622d2009-10-29 11:04:50 +0800131static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900132
133static acpi_status acpi_pci_run_osc(acpi_handle handle,
134 const u32 *capbuf, u32 *retval)
135{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800136 struct acpi_osc_context context = {
137 .uuid_str = pci_osc_uuid_str,
138 .rev = 1,
139 .cap.length = 12,
140 .cap.pointer = (void *)capbuf,
141 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900142 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900143
Shaohua Li3a9622d2009-10-29 11:04:50 +0800144 status = acpi_run_osc(handle, &context);
145 if (ACPI_SUCCESS(status)) {
146 *retval = *((u32 *)(context.ret.pointer + 8));
147 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900148 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900149 return status;
150}
151
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200152static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
153 u32 support,
154 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900155{
156 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200157 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900158
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200159 support &= OSC_PCI_SUPPORT_MASKS;
160 support |= root->osc_support_set;
161
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900162 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200163 capbuf[OSC_SUPPORT_TYPE] = support;
164 if (control) {
165 *control &= OSC_PCI_CONTROL_MASKS;
166 capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set;
167 } else {
Yinghai Lu545d6e12013-03-28 04:28:58 +0000168 /* Run _OSC query only with existing controls. */
169 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200170 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900171
172 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
173 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200174 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200175 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200176 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900177 }
178 return status;
179}
180
181static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
182{
183 acpi_status status;
184 acpi_handle tmp;
185
186 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
187 if (ACPI_FAILURE(status))
188 return status;
189 mutex_lock(&osc_lock);
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200190 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900191 mutex_unlock(&osc_lock);
192 return status;
193}
194
Alex Chiang76d56de2009-07-23 17:03:00 -0600195struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900196{
197 struct acpi_pci_root *root;
Taku Izumicd4faf92012-09-18 15:23:23 +0900198 struct acpi_device *device;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600199
Taku Izumicd4faf92012-09-18 15:23:23 +0900200 if (acpi_bus_get_device(handle, &device) ||
201 acpi_match_device_ids(device, root_device_ids))
202 return NULL;
203
204 root = acpi_driver_data(device);
205
206 return root;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900207}
Alex Chiang76d56de2009-07-23 17:03:00 -0600208EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900209
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000210struct acpi_handle_node {
211 struct list_head node;
212 acpi_handle handle;
213};
214
215/**
216 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
217 * @handle: the handle in question
218 *
219 * Given an ACPI CA handle, the desired PCI device is located in the
220 * list of PCI devices.
221 *
222 * If the device is found, its reference count is increased and this
223 * function returns a pointer to its data structure. The caller must
224 * decrement the reference count by calling pci_dev_put().
225 * If no device is found, %NULL is returned.
226 */
227struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
228{
229 int dev, fn;
230 unsigned long long adr;
231 acpi_status status;
232 acpi_handle phandle;
233 struct pci_bus *pbus;
234 struct pci_dev *pdev = NULL;
235 struct acpi_handle_node *node, *tmp;
236 struct acpi_pci_root *root;
237 LIST_HEAD(device_list);
238
239 /*
240 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
241 */
242 phandle = handle;
243 while (!acpi_is_root_bridge(phandle)) {
244 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
245 if (!node)
246 goto out;
247
248 INIT_LIST_HEAD(&node->node);
249 node->handle = phandle;
250 list_add(&node->node, &device_list);
251
252 status = acpi_get_parent(phandle, &phandle);
253 if (ACPI_FAILURE(status))
254 goto out;
255 }
256
257 root = acpi_pci_find_root(phandle);
258 if (!root)
259 goto out;
260
261 pbus = root->bus;
262
263 /*
264 * Now, walk back down the PCI device tree until we return to our
265 * original handle. Assumes that everything between the PCI root
266 * bridge and the device we're looking for must be a P2P bridge.
267 */
268 list_for_each_entry(node, &device_list, node) {
269 acpi_handle hnd = node->handle;
270 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
271 if (ACPI_FAILURE(status))
272 goto out;
273 dev = (adr >> 16) & 0xffff;
274 fn = adr & 0xffff;
275
276 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600277 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000278 break;
279
280 pbus = pdev->subordinate;
281 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200282
283 /*
284 * This function may be called for a non-PCI device that has a
285 * PCI parent (eg. a disk under a PCI SATA controller). In that
286 * case pdev->subordinate will be NULL for the parent.
287 */
288 if (!pbus) {
289 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
290 pdev = NULL;
291 break;
292 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000293 }
294out:
295 list_for_each_entry_safe(node, tmp, &device_list, node)
296 kfree(node);
297
298 return pdev;
299}
300EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
301
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900302/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200303 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
304 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
305 * @mask: Mask of _OSC bits to request control of, place to store control mask.
306 * @req: Mask of _OSC bits the control of is essential to the caller.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900307 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200308 * Run _OSC query for @mask and if that is successful, compare the returned
309 * mask of control bits with @req. If all of the @req bits are set in the
310 * returned mask, run _OSC request for it.
311 *
312 * The variable at the @mask address may be modified regardless of whether or
313 * not the function returns success. On success it will contain the mask of
314 * _OSC bits the BIOS has granted control of, but its contents are meaningless
315 * on failure.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900316 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200317acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900318{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900319 struct acpi_pci_root *root;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200320 acpi_status status;
321 u32 ctrl, capbuf[3];
322 acpi_handle tmp;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900323
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200324 if (!mask)
325 return AE_BAD_PARAMETER;
326
327 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
328 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900329 return AE_TYPE;
330
331 root = acpi_pci_find_root(handle);
332 if (!root)
333 return AE_NOT_EXIST;
334
Rafael J. Wysockib879dc42010-08-21 01:52:37 +0200335 status = acpi_get_handle(handle, "_OSC", &tmp);
336 if (ACPI_FAILURE(status))
337 return status;
338
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900339 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200340
341 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900342 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200343 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900344 goto out;
345
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200346 /* Need to check the available controls bits before requesting them. */
347 while (*mask) {
348 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
349 if (ACPI_FAILURE(status))
350 goto out;
351 if (ctrl == *mask)
352 break;
353 ctrl = *mask;
354 }
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200355
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200356 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900357 status = AE_SUPPORT;
358 goto out;
359 }
360
361 capbuf[OSC_QUERY_TYPE] = 0;
362 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200363 capbuf[OSC_CONTROL_TYPE] = ctrl;
364 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900365 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200366 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900367out:
368 mutex_unlock(&osc_lock);
369 return status;
370}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900371EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900372
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100373static int acpi_pci_root_add(struct acpi_device *device,
374 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600376 unsigned long long segment, bus;
377 acpi_status status;
378 int result;
379 struct acpi_pci_root *root;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700380 u32 flags, base_flags;
Jiang Liubfe24142013-05-28 18:31:27 -0600381 acpi_handle handle = device->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700383 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
384 if (!root)
385 return -ENOMEM;
386
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600387 segment = 0;
Jiang Liubfe24142013-05-28 18:31:27 -0600388 status = acpi_evaluate_integer(handle, METHOD_NAME__SEG, NULL,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600389 &segment);
390 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600391 dev_err(&device->dev, "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700392 result = -ENODEV;
393 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600396 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700397 root->secondary.flags = IORESOURCE_BUS;
Jiang Liubfe24142013-05-28 18:31:27 -0600398 status = try_get_root_bridge_busnr(handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600399 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700400 /*
401 * We need both the start and end of the downstream bus range
402 * to interpret _CBA (MMCONFIG base address), so it really is
403 * supposed to be in _CRS. If we don't find it there, all we
404 * can do is assume [_BBN-0xFF] or [0-0xFF].
405 */
406 root->secondary.end = 0xFF;
Jiang Liu6dc7d222013-05-28 18:10:05 -0600407 dev_warn(&device->dev,
408 FW_BUG "no secondary bus range in _CRS\n");
Jiang Liubfe24142013-05-28 18:31:27 -0600409 status = acpi_evaluate_integer(handle, METHOD_NAME__BBN,
Jon Masone545b552011-06-19 18:51:37 -0500410 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700411 if (ACPI_SUCCESS(status))
412 root->secondary.start = bus;
413 else if (status == AE_NOT_FOUND)
414 root->secondary.start = 0;
415 else {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600416 dev_err(&device->dev, "can't evaluate _BBN\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700417 result = -ENODEV;
418 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600419 }
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Patrick Mochel32917e52006-05-19 16:54:39 -0400422 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600423 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
425 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700426 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Jiang Liu6dc7d222013-05-28 18:10:05 -0600428 pr_info(PREFIX "%s [%s] (domain %04x %pR)\n",
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900429 acpi_device_name(device), acpi_device_bid(device),
430 root->segment, &root->secondary);
431
Jiang Liubfe24142013-05-28 18:31:27 -0600432 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(handle);
Jiang Liuf4b57a32012-06-22 14:55:16 +0800433
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700434 /*
435 * All supported architectures that use ACPI have support for
436 * PCI domains, so we indicate this in _OSC support capabilities.
437 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700438 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900439 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700440
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600441 /*
442 * TBD: Need PCI interface for enumeration/configuration of roots.
443 */
444
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600445 /*
446 * Scan the Root Bridge
447 * --------------------
448 * Must do this prior to any attempt to bind the root device, as the
449 * PCI namespace does not get created until this call is made (and
450 * thus the root bridge's pci_dev does not exist).
451 */
452 root->bus = pci_acpi_scan_root(root);
453 if (!root->bus) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600454 dev_err(&device->dev,
455 "Bus %04x:%02x not present in PCI namespace\n",
456 root->segment, (unsigned int)root->secondary.start);
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600457 result = -ENODEV;
Jiang Liubbebed62013-05-28 17:59:25 -0600458 goto end;
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600459 }
460
Taku Izumi8c33f512012-10-30 15:27:13 +0900461 /* Indicate support for various _OSC capabilities. */
462 if (pci_ext_cfg_avail())
463 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
464 if (pcie_aspm_support_enabled()) {
465 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
466 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
467 }
468 if (pci_msi_enabled())
469 flags |= OSC_MSI_SUPPORT;
470 if (flags != base_flags) {
471 status = acpi_pci_osc_support(root, flags);
472 if (ACPI_FAILURE(status)) {
473 dev_info(&device->dev, "ACPI _OSC support "
474 "notification failed, disabling PCIe ASPM\n");
475 pcie_no_aspm();
476 flags = base_flags;
477 }
478 }
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600479
Taku Izumi8c33f512012-10-30 15:27:13 +0900480 if (!pcie_ports_disabled
481 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
482 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
483 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
484 | OSC_PCI_EXPRESS_PME_CONTROL;
485
486 if (pci_aer_available()) {
487 if (aer_acpi_firmware_first())
488 dev_dbg(&device->dev,
489 "PCIe errors handled by BIOS.\n");
490 else
491 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
492 }
493
494 dev_info(&device->dev,
495 "Requesting ACPI _OSC control (0x%02x)\n", flags);
496
Jiang Liubfe24142013-05-28 18:31:27 -0600497 status = acpi_pci_osc_control_set(handle, &flags,
Taku Izumi8c33f512012-10-30 15:27:13 +0900498 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
499 if (ACPI_SUCCESS(status)) {
Taku Izumi8c33f512012-10-30 15:27:13 +0900500 dev_info(&device->dev,
501 "ACPI _OSC control (0x%02x) granted\n", flags);
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600502 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
503 /*
504 * We have ASPM control, but the FADT indicates
505 * that it's unsupported. Clear it.
506 */
507 pcie_clear_aspm(root->bus);
508 }
Taku Izumi8c33f512012-10-30 15:27:13 +0900509 } else {
Taku Izumi8c33f512012-10-30 15:27:13 +0900510 dev_info(&device->dev,
511 "ACPI _OSC request failed (%s), "
512 "returned control mask: 0x%02x\n",
513 acpi_format_exception(status), flags);
Jiang Liu6dc7d222013-05-28 18:10:05 -0600514 dev_info(&device->dev,
515 "ACPI _OSC control for PCIe not granted, disabling ASPM\n");
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600516 pcie_no_aspm();
Taku Izumi8c33f512012-10-30 15:27:13 +0900517 }
518 } else {
519 dev_info(&device->dev,
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600520 "Unable to request _OSC control "
521 "(_OSC support mask: 0x%02x)\n", flags);
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100522 }
523
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100524 pci_acpi_add_bus_pm_notifier(device, root->bus);
525 if (device->wakeup.flags.run_wake)
526 device_set_run_wake(root->bus->bridge, true);
527
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700528 if (system_state != SYSTEM_BOOTING) {
529 pcibios_resource_survey_bus(root->bus);
Yinghai Lu62a08c52012-10-30 14:31:32 -0600530 pci_assign_unassigned_bus_resources(root->bus);
531
Jiang Liu516ca222013-05-28 18:04:46 -0600532 /* need to after hot-added ioapic is registered */
Yinghai Lu62a08c52012-10-30 14:31:32 -0600533 pci_enable_bridges(root->bus);
Jiang Liu516ca222013-05-28 18:04:46 -0600534 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600535
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600536 pci_bus_add_devices(root->bus);
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100537 return 1;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100538
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100539end:
540 kfree(root);
541 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700542}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100544static void acpi_pci_root_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600546 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900547
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600548 pci_stop_root_bus(root->bus);
549
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100550 device_set_run_wake(root->bus->bridge, false);
551 pci_acpi_remove_bus_pm_notifier(device);
552
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600553 pci_remove_root_bus(root->bus);
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 kfree(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100558void __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100560 acpi_hest_init();
561
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100562 if (!acpi_pci_disabled) {
563 pci_acpi_crs_quirks();
564 acpi_scan_add_handler(&pci_root_handler);
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
Yinghai Lu668192b2013-01-21 13:20:48 -0800567/* Support root bridge hotplug */
568
569static void handle_root_bridge_insertion(acpi_handle handle)
570{
571 struct acpi_device *device;
572
573 if (!acpi_bus_get_device(handle, &device)) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600574 dev_printk(KERN_DEBUG, &device->dev,
575 "acpi device already exists; ignoring notify\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800576 return;
577 }
578
579 if (acpi_bus_scan(handle))
Jiang Liu6dc7d222013-05-28 18:10:05 -0600580 acpi_handle_err(handle, "cannot add bridge to acpi list\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800581}
582
583static void handle_root_bridge_removal(struct acpi_device *device)
584{
Yinghai Lub8b66112013-03-11 05:05:16 +0000585 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800586 struct acpi_eject_event *ej_event;
587
588 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
589 if (!ej_event) {
590 /* Inform firmware the hot-remove operation has error */
591 (void) acpi_evaluate_hotplug_ost(device->handle,
592 ACPI_NOTIFY_EJECT_REQUEST,
593 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
594 NULL);
595 return;
596 }
597
598 ej_event->device = device;
599 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
600
Yinghai Lub8b66112013-03-11 05:05:16 +0000601 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event);
602 if (ACPI_FAILURE(status))
603 kfree(ej_event);
Yinghai Lu668192b2013-01-21 13:20:48 -0800604}
605
606static void _handle_hotplug_event_root(struct work_struct *work)
607{
608 struct acpi_pci_root *root;
Yinghai Lu668192b2013-01-21 13:20:48 -0800609 struct acpi_hp_work *hp_work;
610 acpi_handle handle;
611 u32 type;
612
613 hp_work = container_of(work, struct acpi_hp_work, work);
614 handle = hp_work->handle;
615 type = hp_work->type;
616
Yinghai Lub8b66112013-03-11 05:05:16 +0000617 acpi_scan_lock_acquire();
Yinghai Lu668192b2013-01-21 13:20:48 -0800618
Yinghai Lub8b66112013-03-11 05:05:16 +0000619 root = acpi_pci_find_root(handle);
Yinghai Lu668192b2013-01-21 13:20:48 -0800620
621 switch (type) {
622 case ACPI_NOTIFY_BUS_CHECK:
623 /* bus enumerate */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600624 acpi_handle_printk(KERN_DEBUG, handle,
625 "Bus check notify on %s\n", __func__);
Yinghai Lu668192b2013-01-21 13:20:48 -0800626 if (!root)
627 handle_root_bridge_insertion(handle);
628
629 break;
630
631 case ACPI_NOTIFY_DEVICE_CHECK:
632 /* device check */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600633 acpi_handle_printk(KERN_DEBUG, handle,
634 "Device check notify on %s\n", __func__);
Yinghai Lu668192b2013-01-21 13:20:48 -0800635 if (!root)
636 handle_root_bridge_insertion(handle);
637 break;
638
639 case ACPI_NOTIFY_EJECT_REQUEST:
640 /* request device eject */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600641 acpi_handle_printk(KERN_DEBUG, handle,
642 "Device eject notify on %s\n", __func__);
Yinghai Lu668192b2013-01-21 13:20:48 -0800643 if (root)
644 handle_root_bridge_removal(root->device);
645 break;
646 default:
Jiang Liu6dc7d222013-05-28 18:10:05 -0600647 acpi_handle_warn(handle,
648 "notify_handler: unknown event type 0x%x\n",
649 type);
Yinghai Lu668192b2013-01-21 13:20:48 -0800650 break;
651 }
652
Yinghai Lub8b66112013-03-11 05:05:16 +0000653 acpi_scan_lock_release();
Yinghai Lu668192b2013-01-21 13:20:48 -0800654 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
Yinghai Lu668192b2013-01-21 13:20:48 -0800655}
656
657static void handle_hotplug_event_root(acpi_handle handle, u32 type,
658 void *context)
659{
660 alloc_acpi_hp_work(handle, type, context,
661 _handle_hotplug_event_root);
662}
663
664static acpi_status __init
665find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
666{
Tang Chen121b0902013-01-21 13:20:49 -0800667 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800668 int *count = (int *)context;
669
670 if (!acpi_is_root_bridge(handle))
671 return AE_OK;
672
673 (*count)++;
674
Tang Chen121b0902013-01-21 13:20:49 -0800675 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
676 handle_hotplug_event_root, NULL);
677 if (ACPI_FAILURE(status))
Jiang Liu6dc7d222013-05-28 18:10:05 -0600678 acpi_handle_printk(KERN_DEBUG, handle,
679 "notify handler is not installed, exit status: %u\n",
680 (unsigned int)status);
Tang Chen121b0902013-01-21 13:20:49 -0800681 else
Jiang Liu6dc7d222013-05-28 18:10:05 -0600682 acpi_handle_printk(KERN_DEBUG, handle,
683 "notify handler is installed\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800684
685 return AE_OK;
686}
687
688void __init acpi_pci_root_hp_init(void)
689{
690 int num = 0;
691
692 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
693 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
694
695 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
696}