blob: 1389811aa21b8182cb0adb7c353e275c2a61fc73 [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"
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010051#define ACPI_PCIE_REQ_SUPPORT (OSC_EXT_PCI_CONFIG_SUPPORT \
52 | OSC_ACTIVE_STATE_PWR_SUPPORT \
53 | OSC_CLOCK_PWR_CAPABILITY_SUPPORT \
54 | OSC_MSI_SUPPORT)
55
Márton Némethc97adf92010-01-10 17:15:36 +010056static const struct acpi_device_id root_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020057 {"PNP0A03", 0},
58 {"", 0},
59};
60MODULE_DEVICE_TABLE(acpi, root_device_ids);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static struct acpi_driver acpi_pci_root_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050063 .name = "pci_root",
Len Brown4be44fc2005-08-05 00:44:28 -040064 .class = ACPI_PCI_ROOT_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020065 .ids = root_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040066 .ops = {
67 .add = acpi_pci_root_add,
68 .remove = acpi_pci_root_remove,
Len Brown4be44fc2005-08-05 00:44:28 -040069 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Taku Izumid0020f62012-09-18 15:21:31 +090072/* Lock to protect both acpi_pci_roots and acpi_pci_drivers lists */
73static DEFINE_MUTEX(acpi_pci_root_lock);
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
Taku Izumid0020f62012-09-18 15:21:31 +090084 mutex_lock(&acpi_pci_root_lock);
Jiang Liu8ee5bdf2012-09-18 15:19:49 +090085 list_add_tail(&driver->node, &acpi_pci_drivers);
Taku Izumid0020f62012-09-18 15:21:31 +090086 if (driver->add)
87 list_for_each_entry(root, &acpi_pci_roots, node) {
Taku Izumi55bfe3c2012-09-18 15:22:35 +090088 driver->add(root);
Taku Izumid0020f62012-09-18 15:21:31 +090089 n++;
90 }
91 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 return n;
94}
95EXPORT_SYMBOL(acpi_pci_register_driver);
96
97void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
98{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060099 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Taku Izumid0020f62012-09-18 15:21:31 +0900101 mutex_lock(&acpi_pci_root_lock);
Jiang Liu8ee5bdf2012-09-18 15:19:49 +0900102 list_del(&driver->node);
Taku Izumid0020f62012-09-18 15:21:31 +0900103 if (driver->remove)
104 list_for_each_entry(root, &acpi_pci_roots, node)
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900105 driver->remove(root);
Taku Izumid0020f62012-09-18 15:21:31 +0900106 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108EXPORT_SYMBOL(acpi_pci_unregister_driver);
109
Justin Chend91a0072006-12-06 10:17:10 -0700110acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
111{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600112 struct acpi_pci_root *root;
Taku Izumi6507e6e2012-09-18 15:24:40 +0900113 acpi_handle handle = NULL;
Justin Chend91a0072006-12-06 10:17:10 -0700114
Taku Izumi6507e6e2012-09-18 15:24:40 +0900115 mutex_lock(&acpi_pci_root_lock);
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600116 list_for_each_entry(root, &acpi_pci_roots, node)
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700117 if ((root->segment == (u16) seg) &&
Taku Izumi6507e6e2012-09-18 15:24:40 +0900118 (root->secondary.start == (u16) bus)) {
119 handle = root->device->handle;
120 break;
121 }
122 mutex_unlock(&acpi_pci_root_lock);
123 return handle;
Justin Chend91a0072006-12-06 10:17:10 -0700124}
125
126EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
127
Alexander Chiang27558202009-06-10 19:55:14 +0000128/**
129 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
130 * @handle - the ACPI CA node in question.
131 *
132 * Note: we could make this API take a struct acpi_device * instead, but
133 * for now, it's more convenient to operate on an acpi_handle.
134 */
135int acpi_is_root_bridge(acpi_handle handle)
136{
137 int ret;
138 struct acpi_device *device;
139
140 ret = acpi_bus_get_device(handle, &device);
141 if (ret)
142 return 0;
143
144 ret = acpi_match_device_ids(device, root_device_ids);
145 if (ret)
146 return 0;
147 else
148 return 1;
149}
150EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400153get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700155 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct acpi_resource_address64 address;
157
Bob Moore50eca3e2005-09-30 19:03:00 -0400158 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
159 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
160 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return AE_OK;
162
163 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400164 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700165 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
166 res->start = address.minimum;
167 res->end = address.minimum + address.address_length - 1;
168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 return AE_OK;
171}
172
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600173static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700174 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 acpi_status status;
177
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700178 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400179 status =
180 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700181 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (ACPI_FAILURE(status))
183 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700184 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return AE_ERROR;
186 return AE_OK;
187}
188
Shaohua Li3a9622d2009-10-29 11:04:50 +0800189static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900190
191static acpi_status acpi_pci_run_osc(acpi_handle handle,
192 const u32 *capbuf, u32 *retval)
193{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800194 struct acpi_osc_context context = {
195 .uuid_str = pci_osc_uuid_str,
196 .rev = 1,
197 .cap.length = 12,
198 .cap.pointer = (void *)capbuf,
199 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900200 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900201
Shaohua Li3a9622d2009-10-29 11:04:50 +0800202 status = acpi_run_osc(handle, &context);
203 if (ACPI_SUCCESS(status)) {
204 *retval = *((u32 *)(context.ret.pointer + 8));
205 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900206 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900207 return status;
208}
209
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200210static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
211 u32 support,
212 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900213{
214 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200215 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900216
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200217 support &= OSC_PCI_SUPPORT_MASKS;
218 support |= root->osc_support_set;
219
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900220 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200221 capbuf[OSC_SUPPORT_TYPE] = support;
222 if (control) {
223 *control &= OSC_PCI_CONTROL_MASKS;
224 capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set;
225 } else {
226 /* Run _OSC query for all possible controls. */
227 capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
228 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900229
230 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
231 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200232 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200233 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200234 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900235 }
236 return status;
237}
238
239static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
240{
241 acpi_status status;
242 acpi_handle tmp;
243
244 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
245 if (ACPI_FAILURE(status))
246 return status;
247 mutex_lock(&osc_lock);
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200248 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900249 mutex_unlock(&osc_lock);
250 return status;
251}
252
Alex Chiang76d56de2009-07-23 17:03:00 -0600253struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900254{
255 struct acpi_pci_root *root;
Taku Izumicd4faf92012-09-18 15:23:23 +0900256 struct acpi_device *device;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600257
Taku Izumicd4faf92012-09-18 15:23:23 +0900258 if (acpi_bus_get_device(handle, &device) ||
259 acpi_match_device_ids(device, root_device_ids))
260 return NULL;
261
262 root = acpi_driver_data(device);
263
264 return root;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900265}
Alex Chiang76d56de2009-07-23 17:03:00 -0600266EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900267
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000268struct acpi_handle_node {
269 struct list_head node;
270 acpi_handle handle;
271};
272
273/**
274 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
275 * @handle: the handle in question
276 *
277 * Given an ACPI CA handle, the desired PCI device is located in the
278 * list of PCI devices.
279 *
280 * If the device is found, its reference count is increased and this
281 * function returns a pointer to its data structure. The caller must
282 * decrement the reference count by calling pci_dev_put().
283 * If no device is found, %NULL is returned.
284 */
285struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
286{
287 int dev, fn;
288 unsigned long long adr;
289 acpi_status status;
290 acpi_handle phandle;
291 struct pci_bus *pbus;
292 struct pci_dev *pdev = NULL;
293 struct acpi_handle_node *node, *tmp;
294 struct acpi_pci_root *root;
295 LIST_HEAD(device_list);
296
297 /*
298 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
299 */
300 phandle = handle;
301 while (!acpi_is_root_bridge(phandle)) {
302 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
303 if (!node)
304 goto out;
305
306 INIT_LIST_HEAD(&node->node);
307 node->handle = phandle;
308 list_add(&node->node, &device_list);
309
310 status = acpi_get_parent(phandle, &phandle);
311 if (ACPI_FAILURE(status))
312 goto out;
313 }
314
315 root = acpi_pci_find_root(phandle);
316 if (!root)
317 goto out;
318
319 pbus = root->bus;
320
321 /*
322 * Now, walk back down the PCI device tree until we return to our
323 * original handle. Assumes that everything between the PCI root
324 * bridge and the device we're looking for must be a P2P bridge.
325 */
326 list_for_each_entry(node, &device_list, node) {
327 acpi_handle hnd = node->handle;
328 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
329 if (ACPI_FAILURE(status))
330 goto out;
331 dev = (adr >> 16) & 0xffff;
332 fn = adr & 0xffff;
333
334 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600335 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000336 break;
337
338 pbus = pdev->subordinate;
339 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200340
341 /*
342 * This function may be called for a non-PCI device that has a
343 * PCI parent (eg. a disk under a PCI SATA controller). In that
344 * case pdev->subordinate will be NULL for the parent.
345 */
346 if (!pbus) {
347 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
348 pdev = NULL;
349 break;
350 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000351 }
352out:
353 list_for_each_entry_safe(node, tmp, &device_list, node)
354 kfree(node);
355
356 return pdev;
357}
358EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
359
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900360/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200361 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
362 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
363 * @mask: Mask of _OSC bits to request control of, place to store control mask.
364 * @req: Mask of _OSC bits the control of is essential to the caller.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900365 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200366 * Run _OSC query for @mask and if that is successful, compare the returned
367 * mask of control bits with @req. If all of the @req bits are set in the
368 * returned mask, run _OSC request for it.
369 *
370 * The variable at the @mask address may be modified regardless of whether or
371 * not the function returns success. On success it will contain the mask of
372 * _OSC bits the BIOS has granted control of, but its contents are meaningless
373 * on failure.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900374 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200375acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900376{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900377 struct acpi_pci_root *root;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200378 acpi_status status;
379 u32 ctrl, capbuf[3];
380 acpi_handle tmp;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900381
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200382 if (!mask)
383 return AE_BAD_PARAMETER;
384
385 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
386 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900387 return AE_TYPE;
388
389 root = acpi_pci_find_root(handle);
390 if (!root)
391 return AE_NOT_EXIST;
392
Rafael J. Wysockib879dc42010-08-21 01:52:37 +0200393 status = acpi_get_handle(handle, "_OSC", &tmp);
394 if (ACPI_FAILURE(status))
395 return status;
396
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900397 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200398
399 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900400 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200401 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900402 goto out;
403
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200404 /* Need to check the available controls bits before requesting them. */
405 while (*mask) {
406 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
407 if (ACPI_FAILURE(status))
408 goto out;
409 if (ctrl == *mask)
410 break;
411 ctrl = *mask;
412 }
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200413
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200414 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900415 status = AE_SUPPORT;
416 goto out;
417 }
418
419 capbuf[OSC_QUERY_TYPE] = 0;
420 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200421 capbuf[OSC_CONTROL_TYPE] = ctrl;
422 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900423 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200424 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900425out:
426 mutex_unlock(&osc_lock);
427 return status;
428}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900429EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900430
Bill Pembertonda095fd2012-11-19 13:22:46 -0500431static int acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600433 unsigned long long segment, bus;
434 acpi_status status;
435 int result;
436 struct acpi_pci_root *root;
437 acpi_handle handle;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100438 struct acpi_pci_driver *driver;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700439 u32 flags, base_flags;
Taku Izumi8c33f512012-10-30 15:27:13 +0900440 bool is_osc_granted = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700442 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
443 if (!root)
444 return -ENOMEM;
445
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600446 segment = 0;
447 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
448 &segment);
449 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
450 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700451 result = -ENODEV;
452 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600455 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700456 root->secondary.flags = IORESOURCE_BUS;
457 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600458 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700459 /*
460 * We need both the start and end of the downstream bus range
461 * to interpret _CBA (MMCONFIG base address), so it really is
462 * supposed to be in _CRS. If we don't find it there, all we
463 * can do is assume [_BBN-0xFF] or [0-0xFF].
464 */
465 root->secondary.end = 0xFF;
466 printk(KERN_WARNING FW_BUG PREFIX
467 "no secondary bus range in _CRS\n");
Jon Masone545b552011-06-19 18:51:37 -0500468 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
469 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700470 if (ACPI_SUCCESS(status))
471 root->secondary.start = bus;
472 else if (status == AE_NOT_FOUND)
473 root->secondary.start = 0;
474 else {
475 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
476 result = -ENODEV;
477 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600478 }
479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600481 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400482 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600483 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
485 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700486 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900488 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
489 acpi_device_name(device), acpi_device_bid(device),
490 root->segment, &root->secondary);
491
492 /*
493 * PCI Routing Table
494 * -----------------
495 * Evaluate and parse _PRT, if exists.
496 */
497 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
498 if (ACPI_SUCCESS(status))
499 result = acpi_pci_irq_add_prt(device->handle, root->segment,
500 root->secondary.start);
501
Jiang Liuf4b57a32012-06-22 14:55:16 +0800502 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
503
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700504 /*
505 * All supported architectures that use ACPI have support for
506 * PCI domains, so we indicate this in _OSC support capabilities.
507 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700508 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900509 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700510
Taku Izumi8c33f512012-10-30 15:27:13 +0900511 /* Indicate support for various _OSC capabilities. */
512 if (pci_ext_cfg_avail())
513 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
514 if (pcie_aspm_support_enabled()) {
515 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
516 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
517 }
518 if (pci_msi_enabled())
519 flags |= OSC_MSI_SUPPORT;
520 if (flags != base_flags) {
521 status = acpi_pci_osc_support(root, flags);
522 if (ACPI_FAILURE(status)) {
523 dev_info(&device->dev, "ACPI _OSC support "
524 "notification failed, disabling PCIe ASPM\n");
525 pcie_no_aspm();
526 flags = base_flags;
527 }
528 }
529 if (!pcie_ports_disabled
530 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
531 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
532 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
533 | OSC_PCI_EXPRESS_PME_CONTROL;
534
535 if (pci_aer_available()) {
536 if (aer_acpi_firmware_first())
537 dev_dbg(&device->dev,
538 "PCIe errors handled by BIOS.\n");
539 else
540 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
541 }
542
543 dev_info(&device->dev,
544 "Requesting ACPI _OSC control (0x%02x)\n", flags);
545
546 status = acpi_pci_osc_control_set(device->handle, &flags,
547 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
548 if (ACPI_SUCCESS(status)) {
549 is_osc_granted = true;
550 dev_info(&device->dev,
551 "ACPI _OSC control (0x%02x) granted\n", flags);
552 } else {
553 is_osc_granted = false;
554 dev_info(&device->dev,
555 "ACPI _OSC request failed (%s), "
556 "returned control mask: 0x%02x\n",
557 acpi_format_exception(status), flags);
558 }
559 } else {
560 dev_info(&device->dev,
561 "Unable to request _OSC control "
562 "(_OSC support mask: 0x%02x)\n", flags);
563 }
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /*
566 * TBD: Need PCI interface for enumeration/configuration of roots.
567 */
568
Taku Izumi6507e6e2012-09-18 15:24:40 +0900569 mutex_lock(&acpi_pci_root_lock);
Len Brown4be44fc2005-08-05 00:44:28 -0400570 list_add_tail(&root->node, &acpi_pci_roots);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900571 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /*
574 * Scan the Root Bridge
575 * --------------------
576 * Must do this prior to any attempt to bind the root device, as the
577 * PCI namespace does not get created until this call is made (and
578 * thus the root bridge's pci_dev does not exist).
579 */
Bjorn Helgaas57283772010-03-11 12:20:11 -0700580 root->bus = pci_acpi_scan_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400582 printk(KERN_ERR PREFIX
583 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700584 root->segment, (unsigned int)root->secondary.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 result = -ENODEV;
Taku Izumi6507e6e2012-09-18 15:24:40 +0900586 goto out_del_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
Taku Izumi8c33f512012-10-30 15:27:13 +0900589 /* ASPM setting */
590 if (is_osc_granted) {
591 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM)
592 pcie_clear_aspm(root->bus);
Rafael J. Wysockia2466702011-04-30 00:21:38 +0200593 } else {
Taku Izumi8c33f512012-10-30 15:27:13 +0900594 pr_info("ACPI _OSC control for PCIe not granted, "
595 "disabling ASPM\n");
596 pcie_no_aspm();
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100597 }
598
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100599 pci_acpi_add_bus_pm_notifier(device, root->bus);
600 if (device->wakeup.flags.run_wake)
601 device_set_run_wake(root->bus->bridge, true);
602
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700603 if (system_state != SYSTEM_BOOTING) {
604 pcibios_resource_survey_bus(root->bus);
Yinghai Lu62a08c52012-10-30 14:31:32 -0600605 pci_assign_unassigned_bus_resources(root->bus);
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700606 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600607
Taku Izumid0020f62012-09-18 15:21:31 +0900608 mutex_lock(&acpi_pci_root_lock);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900609 list_for_each_entry(driver, &acpi_pci_drivers, node)
610 if (driver->add)
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900611 driver->add(root);
Taku Izumid0020f62012-09-18 15:21:31 +0900612 mutex_unlock(&acpi_pci_root_lock);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700613
Yinghai Lu62a08c52012-10-30 14:31:32 -0600614 /* need to after hot-added ioapic is registered */
615 if (system_state != SYSTEM_BOOTING)
616 pci_enable_bridges(root->bus);
617
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600618 pci_bus_add_devices(root->bus);
619 return 0;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100620
621out_del_root:
622 mutex_lock(&acpi_pci_root_lock);
623 list_del(&root->node);
624 mutex_unlock(&acpi_pci_root_lock);
625
626 acpi_pci_irq_del_prt(root->segment, root->secondary.start);
627end:
628 kfree(root);
629 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700630}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Len Brown4be44fc2005-08-05 00:44:28 -0400632static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Yinghai Lu13b6a912012-10-30 14:31:48 -0600634 acpi_status status;
635 acpi_handle handle;
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600636 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900637 struct acpi_pci_driver *driver;
638
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600639 pci_stop_root_bus(root->bus);
640
Taku Izumid0020f62012-09-18 15:21:31 +0900641 mutex_lock(&acpi_pci_root_lock);
Yinghai Luf426cef2012-10-30 14:31:52 -0600642 list_for_each_entry_reverse(driver, &acpi_pci_drivers, node)
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900643 if (driver->remove)
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900644 driver->remove(root);
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600645 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100647 device_set_run_wake(root->bus->bridge, false);
648 pci_acpi_remove_bus_pm_notifier(device);
649
Yinghai Lu13b6a912012-10-30 14:31:48 -0600650 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
651 if (ACPI_SUCCESS(status))
Bjorn Helgaas79c44122012-10-30 15:24:06 +0900652 acpi_pci_irq_del_prt(root->segment, root->secondary.start);
Yinghai Lu13b6a912012-10-30 14:31:48 -0600653
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600654 pci_remove_root_bus(root->bus);
655
656 mutex_lock(&acpi_pci_root_lock);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900657 list_del(&root->node);
658 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +0100663int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100665 acpi_hest_init();
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700670 pci_acpi_crs_quirks();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400672 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
Yinghai Lu668192b2013-01-21 13:20:48 -0800676/* Support root bridge hotplug */
677
678static void handle_root_bridge_insertion(acpi_handle handle)
679{
680 struct acpi_device *device;
681
682 if (!acpi_bus_get_device(handle, &device)) {
683 printk(KERN_DEBUG "acpi device exists...\n");
684 return;
685 }
686
687 if (acpi_bus_scan(handle))
688 printk(KERN_ERR "cannot add bridge to acpi list\n");
689}
690
691static void handle_root_bridge_removal(struct acpi_device *device)
692{
693 struct acpi_eject_event *ej_event;
694
695 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
696 if (!ej_event) {
697 /* Inform firmware the hot-remove operation has error */
698 (void) acpi_evaluate_hotplug_ost(device->handle,
699 ACPI_NOTIFY_EJECT_REQUEST,
700 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
701 NULL);
702 return;
703 }
704
705 ej_event->device = device;
706 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
707
708 acpi_bus_hot_remove_device(ej_event);
709}
710
711static void _handle_hotplug_event_root(struct work_struct *work)
712{
713 struct acpi_pci_root *root;
714 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER };
715 struct acpi_hp_work *hp_work;
716 acpi_handle handle;
717 u32 type;
718
719 hp_work = container_of(work, struct acpi_hp_work, work);
720 handle = hp_work->handle;
721 type = hp_work->type;
722
723 root = acpi_pci_find_root(handle);
724
725 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
726
727 switch (type) {
728 case ACPI_NOTIFY_BUS_CHECK:
729 /* bus enumerate */
730 printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__,
731 (char *)buffer.pointer);
732 if (!root)
733 handle_root_bridge_insertion(handle);
734
735 break;
736
737 case ACPI_NOTIFY_DEVICE_CHECK:
738 /* device check */
739 printk(KERN_DEBUG "%s: Device check notify on %s\n", __func__,
740 (char *)buffer.pointer);
741 if (!root)
742 handle_root_bridge_insertion(handle);
743 break;
744
745 case ACPI_NOTIFY_EJECT_REQUEST:
746 /* request device eject */
747 printk(KERN_DEBUG "%s: Device eject notify on %s\n", __func__,
748 (char *)buffer.pointer);
749 if (root)
750 handle_root_bridge_removal(root->device);
751 break;
752 default:
753 printk(KERN_WARNING "notify_handler: unknown event type 0x%x for %s\n",
754 type, (char *)buffer.pointer);
755 break;
756 }
757
758 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
759 kfree(buffer.pointer);
760}
761
762static void handle_hotplug_event_root(acpi_handle handle, u32 type,
763 void *context)
764{
765 alloc_acpi_hp_work(handle, type, context,
766 _handle_hotplug_event_root);
767}
768
769static acpi_status __init
770find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
771{
772 char objname[64];
773 struct acpi_buffer buffer = { .length = sizeof(objname),
774 .pointer = objname };
775 int *count = (int *)context;
776
777 if (!acpi_is_root_bridge(handle))
778 return AE_OK;
779
780 (*count)++;
781
782 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
783
784 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
785 handle_hotplug_event_root, NULL);
786 printk(KERN_DEBUG "acpi root: %s notify handler installed\n", objname);
787
788 return AE_OK;
789}
790
791void __init acpi_pci_root_hp_init(void)
792{
793 int num = 0;
794
795 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
796 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
797
798 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
799}