blob: 8545b1d228114b1221056ffb6c9e844a95e9cb2b [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;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100437 struct acpi_pci_driver *driver;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700438 u32 flags, base_flags;
Taku Izumi8c33f512012-10-30 15:27:13 +0900439 bool is_osc_granted = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700441 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
442 if (!root)
443 return -ENOMEM;
444
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600445 segment = 0;
446 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
447 &segment);
448 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
449 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700450 result = -ENODEV;
451 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600454 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700455 root->secondary.flags = IORESOURCE_BUS;
456 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600457 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700458 /*
459 * We need both the start and end of the downstream bus range
460 * to interpret _CBA (MMCONFIG base address), so it really is
461 * supposed to be in _CRS. If we don't find it there, all we
462 * can do is assume [_BBN-0xFF] or [0-0xFF].
463 */
464 root->secondary.end = 0xFF;
465 printk(KERN_WARNING FW_BUG PREFIX
466 "no secondary bus range in _CRS\n");
Jon Masone545b552011-06-19 18:51:37 -0500467 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
468 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700469 if (ACPI_SUCCESS(status))
470 root->secondary.start = bus;
471 else if (status == AE_NOT_FOUND)
472 root->secondary.start = 0;
473 else {
474 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
475 result = -ENODEV;
476 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600477 }
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600480 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400481 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600482 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
484 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700485 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900487 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
488 acpi_device_name(device), acpi_device_bid(device),
489 root->segment, &root->secondary);
490
Jiang Liuf4b57a32012-06-22 14:55:16 +0800491 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
492
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700493 /*
494 * All supported architectures that use ACPI have support for
495 * PCI domains, so we indicate this in _OSC support capabilities.
496 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700497 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900498 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700499
Taku Izumi8c33f512012-10-30 15:27:13 +0900500 /* Indicate support for various _OSC capabilities. */
501 if (pci_ext_cfg_avail())
502 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
503 if (pcie_aspm_support_enabled()) {
504 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
505 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
506 }
507 if (pci_msi_enabled())
508 flags |= OSC_MSI_SUPPORT;
509 if (flags != base_flags) {
510 status = acpi_pci_osc_support(root, flags);
511 if (ACPI_FAILURE(status)) {
512 dev_info(&device->dev, "ACPI _OSC support "
513 "notification failed, disabling PCIe ASPM\n");
514 pcie_no_aspm();
515 flags = base_flags;
516 }
517 }
518 if (!pcie_ports_disabled
519 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
520 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
521 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
522 | OSC_PCI_EXPRESS_PME_CONTROL;
523
524 if (pci_aer_available()) {
525 if (aer_acpi_firmware_first())
526 dev_dbg(&device->dev,
527 "PCIe errors handled by BIOS.\n");
528 else
529 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
530 }
531
532 dev_info(&device->dev,
533 "Requesting ACPI _OSC control (0x%02x)\n", flags);
534
535 status = acpi_pci_osc_control_set(device->handle, &flags,
536 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
537 if (ACPI_SUCCESS(status)) {
538 is_osc_granted = true;
539 dev_info(&device->dev,
540 "ACPI _OSC control (0x%02x) granted\n", flags);
541 } else {
542 is_osc_granted = false;
543 dev_info(&device->dev,
544 "ACPI _OSC request failed (%s), "
545 "returned control mask: 0x%02x\n",
546 acpi_format_exception(status), flags);
547 }
548 } else {
549 dev_info(&device->dev,
550 "Unable to request _OSC control "
551 "(_OSC support mask: 0x%02x)\n", flags);
552 }
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 /*
555 * TBD: Need PCI interface for enumeration/configuration of roots.
556 */
557
Taku Izumi6507e6e2012-09-18 15:24:40 +0900558 mutex_lock(&acpi_pci_root_lock);
Len Brown4be44fc2005-08-05 00:44:28 -0400559 list_add_tail(&root->node, &acpi_pci_roots);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900560 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /*
563 * Scan the Root Bridge
564 * --------------------
565 * Must do this prior to any attempt to bind the root device, as the
566 * PCI namespace does not get created until this call is made (and
567 * thus the root bridge's pci_dev does not exist).
568 */
Bjorn Helgaas57283772010-03-11 12:20:11 -0700569 root->bus = pci_acpi_scan_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400571 printk(KERN_ERR PREFIX
572 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700573 root->segment, (unsigned int)root->secondary.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 result = -ENODEV;
Taku Izumi6507e6e2012-09-18 15:24:40 +0900575 goto out_del_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
Taku Izumi8c33f512012-10-30 15:27:13 +0900578 /* ASPM setting */
579 if (is_osc_granted) {
580 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM)
581 pcie_clear_aspm(root->bus);
Rafael J. Wysockia2466702011-04-30 00:21:38 +0200582 } else {
Taku Izumi8c33f512012-10-30 15:27:13 +0900583 pr_info("ACPI _OSC control for PCIe not granted, "
584 "disabling ASPM\n");
585 pcie_no_aspm();
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100586 }
587
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100588 pci_acpi_add_bus_pm_notifier(device, root->bus);
589 if (device->wakeup.flags.run_wake)
590 device_set_run_wake(root->bus->bridge, true);
591
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700592 if (system_state != SYSTEM_BOOTING) {
593 pcibios_resource_survey_bus(root->bus);
Yinghai Lu62a08c52012-10-30 14:31:32 -0600594 pci_assign_unassigned_bus_resources(root->bus);
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700595 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600596
Taku Izumid0020f62012-09-18 15:21:31 +0900597 mutex_lock(&acpi_pci_root_lock);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900598 list_for_each_entry(driver, &acpi_pci_drivers, node)
599 if (driver->add)
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900600 driver->add(root);
Taku Izumid0020f62012-09-18 15:21:31 +0900601 mutex_unlock(&acpi_pci_root_lock);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700602
Yinghai Lu62a08c52012-10-30 14:31:32 -0600603 /* need to after hot-added ioapic is registered */
604 if (system_state != SYSTEM_BOOTING)
605 pci_enable_bridges(root->bus);
606
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600607 pci_bus_add_devices(root->bus);
608 return 0;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100609
610out_del_root:
611 mutex_lock(&acpi_pci_root_lock);
612 list_del(&root->node);
613 mutex_unlock(&acpi_pci_root_lock);
614
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100615end:
616 kfree(root);
617 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700618}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Len Brown4be44fc2005-08-05 00:44:28 -0400620static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600622 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900623 struct acpi_pci_driver *driver;
624
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600625 pci_stop_root_bus(root->bus);
626
Taku Izumid0020f62012-09-18 15:21:31 +0900627 mutex_lock(&acpi_pci_root_lock);
Yinghai Luf426cef2012-10-30 14:31:52 -0600628 list_for_each_entry_reverse(driver, &acpi_pci_drivers, node)
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900629 if (driver->remove)
Taku Izumi55bfe3c2012-09-18 15:22:35 +0900630 driver->remove(root);
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600631 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100633 device_set_run_wake(root->bus->bridge, false);
634 pci_acpi_remove_bus_pm_notifier(device);
635
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600636 pci_remove_root_bus(root->bus);
637
638 mutex_lock(&acpi_pci_root_lock);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900639 list_del(&root->node);
640 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +0100645int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100647 acpi_hest_init();
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700652 pci_acpi_crs_quirks();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400654 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Patrick Mocheld550d982006-06-27 00:41:40 -0400656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
Yinghai Lu668192b2013-01-21 13:20:48 -0800658/* Support root bridge hotplug */
659
660static void handle_root_bridge_insertion(acpi_handle handle)
661{
662 struct acpi_device *device;
663
664 if (!acpi_bus_get_device(handle, &device)) {
665 printk(KERN_DEBUG "acpi device exists...\n");
666 return;
667 }
668
669 if (acpi_bus_scan(handle))
670 printk(KERN_ERR "cannot add bridge to acpi list\n");
671}
672
673static void handle_root_bridge_removal(struct acpi_device *device)
674{
675 struct acpi_eject_event *ej_event;
676
677 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
678 if (!ej_event) {
679 /* Inform firmware the hot-remove operation has error */
680 (void) acpi_evaluate_hotplug_ost(device->handle,
681 ACPI_NOTIFY_EJECT_REQUEST,
682 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
683 NULL);
684 return;
685 }
686
687 ej_event->device = device;
688 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
689
690 acpi_bus_hot_remove_device(ej_event);
691}
692
693static void _handle_hotplug_event_root(struct work_struct *work)
694{
695 struct acpi_pci_root *root;
696 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER };
697 struct acpi_hp_work *hp_work;
698 acpi_handle handle;
699 u32 type;
700
701 hp_work = container_of(work, struct acpi_hp_work, work);
702 handle = hp_work->handle;
703 type = hp_work->type;
704
705 root = acpi_pci_find_root(handle);
706
707 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
708
709 switch (type) {
710 case ACPI_NOTIFY_BUS_CHECK:
711 /* bus enumerate */
712 printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__,
713 (char *)buffer.pointer);
714 if (!root)
715 handle_root_bridge_insertion(handle);
716
717 break;
718
719 case ACPI_NOTIFY_DEVICE_CHECK:
720 /* device check */
721 printk(KERN_DEBUG "%s: Device check notify on %s\n", __func__,
722 (char *)buffer.pointer);
723 if (!root)
724 handle_root_bridge_insertion(handle);
725 break;
726
727 case ACPI_NOTIFY_EJECT_REQUEST:
728 /* request device eject */
729 printk(KERN_DEBUG "%s: Device eject notify on %s\n", __func__,
730 (char *)buffer.pointer);
731 if (root)
732 handle_root_bridge_removal(root->device);
733 break;
734 default:
735 printk(KERN_WARNING "notify_handler: unknown event type 0x%x for %s\n",
736 type, (char *)buffer.pointer);
737 break;
738 }
739
740 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
741 kfree(buffer.pointer);
742}
743
744static void handle_hotplug_event_root(acpi_handle handle, u32 type,
745 void *context)
746{
747 alloc_acpi_hp_work(handle, type, context,
748 _handle_hotplug_event_root);
749}
750
751static acpi_status __init
752find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
753{
Tang Chen121b0902013-01-21 13:20:49 -0800754 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800755 char objname[64];
756 struct acpi_buffer buffer = { .length = sizeof(objname),
757 .pointer = objname };
758 int *count = (int *)context;
759
760 if (!acpi_is_root_bridge(handle))
761 return AE_OK;
762
763 (*count)++;
764
765 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
766
Tang Chen121b0902013-01-21 13:20:49 -0800767 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
768 handle_hotplug_event_root, NULL);
769 if (ACPI_FAILURE(status))
770 printk(KERN_DEBUG "acpi root: %s notify handler is not installed, exit status: %u\n",
771 objname, (unsigned int)status);
772 else
773 printk(KERN_DEBUG "acpi root: %s notify handler is installed\n",
774 objname);
Yinghai Lu668192b2013-01-21 13:20:48 -0800775
776 return AE_OK;
777}
778
779void __init acpi_pci_root_hp_init(void)
780{
781 int num = 0;
782
783 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
784 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
785
786 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
787}