blob: 4bec13d9c2bfc68529ca0fa2fe978a63ab9b315c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/spinlock.h>
31#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"
Len Brown4be44fc2005-08-05 00:44:28 -040048static 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);
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};
61MODULE_DEVICE_TABLE(acpi, root_device_ids);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static struct acpi_driver acpi_pci_root_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050064 .name = "pci_root",
Len Brown4be44fc2005-08-05 00:44:28 -040065 .class = ACPI_PCI_ROOT_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020066 .ids = root_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040067 .ops = {
68 .add = acpi_pci_root_add,
69 .remove = acpi_pci_root_remove,
70 .start = acpi_pci_root_start,
71 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static LIST_HEAD(acpi_pci_roots);
Jiang Liu8ee5bdf2012-09-18 15:19:49 +090075static LIST_HEAD(acpi_pci_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090077static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79int acpi_pci_register_driver(struct acpi_pci_driver *driver)
80{
81 int n = 0;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060082 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Jiang Liu8ee5bdf2012-09-18 15:19:49 +090084 list_add_tail(&driver->node, &acpi_pci_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 if (!driver->add)
87 return 0;
88
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060089 list_for_each_entry(root, &acpi_pci_roots, node) {
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040090 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 n++;
92 }
93
94 return n;
95}
Len Brown4be44fc2005-08-05 00:44:28 -040096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097EXPORT_SYMBOL(acpi_pci_register_driver);
98
99void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
100{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600101 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Jiang Liu8ee5bdf2012-09-18 15:19:49 +0900103 list_del(&driver->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 if (!driver->remove)
106 return;
107
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600108 list_for_each_entry(root, &acpi_pci_roots, node)
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400109 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
Len Brown4be44fc2005-08-05 00:44:28 -0400111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112EXPORT_SYMBOL(acpi_pci_unregister_driver);
113
Justin Chend91a0072006-12-06 10:17:10 -0700114acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
115{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600116 struct acpi_pci_root *root;
Justin Chend91a0072006-12-06 10:17:10 -0700117
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600118 list_for_each_entry(root, &acpi_pci_roots, node)
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700119 if ((root->segment == (u16) seg) &&
120 (root->secondary.start == (u16) bus))
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600121 return root->device->handle;
Justin Chend91a0072006-12-06 10:17:10 -0700122 return NULL;
123}
124
125EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
126
Alexander Chiang27558202009-06-10 19:55:14 +0000127/**
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400152get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700154 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct acpi_resource_address64 address;
156
Bob Moore50eca3e2005-09-30 19:03:00 -0400157 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
158 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
159 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return AE_OK;
161
162 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400163 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700164 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
165 res->start = address.minimum;
166 res->end = address.minimum + address.address_length - 1;
167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 return AE_OK;
170}
171
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600172static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700173 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 acpi_status status;
176
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700177 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400178 status =
179 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700180 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (ACPI_FAILURE(status))
182 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700183 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return AE_ERROR;
185 return AE_OK;
186}
187
Rui Zhang2786f6e2006-12-21 02:21:13 -0500188static 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
Shaohua Li3a9622d2009-10-29 11:04:50 +0800203static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900204
205static acpi_status acpi_pci_run_osc(acpi_handle handle,
206 const u32 *capbuf, u32 *retval)
207{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800208 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 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900214 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900215
Shaohua Li3a9622d2009-10-29 11:04:50 +0800216 status = acpi_run_osc(handle, &context);
217 if (ACPI_SUCCESS(status)) {
218 *retval = *((u32 *)(context.ret.pointer + 8));
219 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900220 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900221 return status;
222}
223
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200224static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
225 u32 support,
226 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900227{
228 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200229 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900230
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200231 support &= OSC_PCI_SUPPORT_MASKS;
232 support |= root->osc_support_set;
233
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900234 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200235 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 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900243
244 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
245 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200246 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200247 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200248 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900249 }
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);
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200262 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900263 mutex_unlock(&osc_lock);
264 return status;
265}
266
Alex Chiang76d56de2009-07-23 17:03:00 -0600267struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900268{
269 struct acpi_pci_root *root;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600270
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900271 list_for_each_entry(root, &acpi_pci_roots, node) {
272 if (root->device->handle == handle)
273 return root;
274 }
275 return NULL;
276}
Alex Chiang76d56de2009-07-23 17:03:00 -0600277EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900278
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000279struct 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));
Troy Moure412af972009-06-25 17:05:35 -0600346 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000347 break;
348
349 pbus = pdev->subordinate;
350 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200351
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 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000362 }
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
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900371/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200372 * 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.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900376 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200377 * 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.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900385 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200386acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900387{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900388 struct acpi_pci_root *root;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200389 acpi_status status;
390 u32 ctrl, capbuf[3];
391 acpi_handle tmp;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900392
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200393 if (!mask)
394 return AE_BAD_PARAMETER;
395
396 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
397 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900398 return AE_TYPE;
399
400 root = acpi_pci_find_root(handle);
401 if (!root)
402 return AE_NOT_EXIST;
403
Rafael J. Wysockib879dc42010-08-21 01:52:37 +0200404 status = acpi_get_handle(handle, "_OSC", &tmp);
405 if (ACPI_FAILURE(status))
406 return status;
407
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900408 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200409
410 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900411 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200412 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900413 goto out;
414
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200415 /* 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 }
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200424
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200425 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900426 status = AE_SUPPORT;
427 goto out;
428 }
429
430 capbuf[OSC_QUERY_TYPE] = 0;
431 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200432 capbuf[OSC_CONTROL_TYPE] = ctrl;
433 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900434 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200435 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900436out:
437 mutex_unlock(&osc_lock);
438 return status;
439}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900440EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900441
Sam Ravnborgb5678a32008-02-17 13:23:03 +0100442static int __devinit acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600444 unsigned long long segment, bus;
445 acpi_status status;
446 int result;
447 struct acpi_pci_root *root;
448 acpi_handle handle;
Rui Zhang2786f6e2006-12-21 02:21:13 -0500449 struct acpi_device *child;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700450 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700452 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
453 if (!root)
454 return -ENOMEM;
455
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600456 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");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700461 result = -ENODEV;
462 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600465 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700466 root->secondary.flags = IORESOURCE_BUS;
467 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600468 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700469 /*
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");
Jon Masone545b552011-06-19 18:51:37 -0500478 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
479 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700480 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;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600488 }
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600491 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400492 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600493 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
495 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700496 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Jiang Liuf4b57a32012-06-22 14:55:16 +0800498 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
499
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700500 /*
501 * All supported architectures that use ACPI have support for
502 * PCI domains, so we indicate this in _OSC support capabilities.
503 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700504 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900505 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /*
508 * TBD: Need PCI interface for enumeration/configuration of roots.
509 */
510
Len Brown4be44fc2005-08-05 00:44:28 -0400511 /* TBD: Locking */
512 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700514 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400515 acpi_device_name(device), acpi_device_bid(device),
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700516 root->segment, &root->secondary);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
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 */
Bjorn Helgaas57283772010-03-11 12:20:11 -0700525 root->bus = pci_acpi_scan_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400527 printk(KERN_ERR PREFIX
528 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700529 root->segment, (unsigned int)root->secondary.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 result = -ENODEV;
531 goto end;
532 }
533
534 /*
535 * Attach ACPI-PCI Context
536 * -----------------------
537 * Thus binding the ACPI and PCI devices.
538 */
Alexander Chiang499650d2009-06-10 19:55:30 +0000539 result = acpi_pci_bind_root(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (result)
541 goto end;
542
543 /*
544 * PCI Routing Table
545 * -----------------
546 * Evaluate and parse _PRT, if exists.
547 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400548 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (ACPI_SUCCESS(status))
Alexander Chiang859a3f82009-06-10 19:55:35 +0000550 result = acpi_pci_irq_add_prt(device->handle, root->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Rui Zhang2786f6e2006-12-21 02:21:13 -0500552 /*
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
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700558 /* Indicate support for various _OSC capabilities. */
559 if (pci_ext_cfg_avail(root->bus->self))
560 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100561 if (pcie_aspm_support_enabled())
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700562 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
563 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700564 if (pci_msi_enabled())
565 flags |= OSC_MSI_SUPPORT;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700566 if (flags != base_flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900567 acpi_pci_osc_support(root, flags);
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700568
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100569 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);
Naga Chumbalkareca67312011-03-21 03:29:20 +0000588 if (ACPI_SUCCESS(status)) {
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100589 dev_info(root->bus->bridge,
590 "ACPI _OSC control (0x%02x) granted\n", flags);
Matthew Garrett3c076352011-11-10 16:38:33 -0500591 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 }
Naga Chumbalkareca67312011-03-21 03:29:20 +0000598 } else {
Rafael J. Wysockia2466702011-04-30 00:21:38 +0200599 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");
Naga Chumbalkareca67312011-03-21 03:29:20 +0000605 pcie_no_aspm();
606 }
Rafael J. Wysockia2466702011-04-30 00:21:38 +0200607 } else {
608 dev_info(root->bus->bridge,
609 "Unable to request _OSC control "
610 "(_OSC support mask: 0x%02x)\n", flags);
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100611 }
612
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100613 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
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600619end:
620 if (!list_empty(&root->node))
621 list_del(&root->node);
622 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400623 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Len Brown4be44fc2005-08-05 00:44:28 -0400626static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700627{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600628 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900629 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);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700634
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600635 pci_bus_add_devices(root->bus);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900636
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600637 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700638}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Len Brown4be44fc2005-08-05 00:44:28 -0400640static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600642 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900643 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100649 device_set_run_wake(root->bus->bridge, false);
650 pci_acpi_remove_bus_pm_notifier(device);
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400653 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Len Brown4be44fc2005-08-05 00:44:28 -0400656static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100658 acpi_hest_init();
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400661 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700663 pci_acpi_crs_quirks();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400665 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Patrick Mocheld550d982006-06-27 00:41:40 -0400667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670subsys_initcall(acpi_pci_root_init);