blob: 3e06d4e179ecf7828ef2a1a37ef8afcac79776b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
Taku Izumid0020f62012-09-18 15:21:31 +090030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/pm.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010032#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/pci.h>
Andrew Patterson990a7ac2008-11-10 15:30:45 -070034#include <linux/pci-acpi.h>
Naga Chumbalkareca67312011-03-21 03:29:20 +000035#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010040#include <acpi/apei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Len Browna192a952009-07-28 16:45:54 -040042#define PREFIX "ACPI: "
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050045ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010048static int acpi_pci_root_add(struct acpi_device *device,
49 const struct acpi_device_id *not_used);
50static void acpi_pci_root_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Bjorn Helgaas7dab9ef2013-09-05 15:07:39 -060052#define ACPI_PCIE_REQ_SUPPORT (OSC_PCI_EXT_CONFIG_SUPPORT \
53 | OSC_PCI_ASPM_SUPPORT \
54 | OSC_PCI_CLOCK_PM_SUPPORT \
55 | OSC_PCI_MSI_SUPPORT)
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010056
Márton Némethc97adf92010-01-10 17:15:36 +010057static const struct acpi_device_id root_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020058 {"PNP0A03", 0},
59 {"", 0},
60};
Thomas Renninger1ba90e32007-07-23 14:44:41 +020061
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010062static struct acpi_scan_handler pci_root_handler = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020063 .ids = root_device_ids,
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010064 .attach = acpi_pci_root_add,
65 .detach = acpi_pci_root_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090068static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Alexander Chiang27558202009-06-10 19:55:14 +000070/**
71 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
72 * @handle - the ACPI CA node in question.
73 *
74 * Note: we could make this API take a struct acpi_device * instead, but
75 * for now, it's more convenient to operate on an acpi_handle.
76 */
77int acpi_is_root_bridge(acpi_handle handle)
78{
79 int ret;
80 struct acpi_device *device;
81
82 ret = acpi_bus_get_device(handle, &device);
83 if (ret)
84 return 0;
85
86 ret = acpi_match_device_ids(device, root_device_ids);
87 if (ret)
88 return 0;
89 else
90 return 1;
91}
92EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040095get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -070097 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct acpi_resource_address64 address;
Bjorn Helgaasf6c1c8f2012-06-21 23:48:50 -060099 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Bjorn Helgaasf6c1c8f2012-06-21 23:48:50 -0600101 status = acpi_resource_to_address64(resource, &address);
102 if (ACPI_FAILURE(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return AE_OK;
104
Len Brown4be44fc2005-08-05 00:44:28 -0400105 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700106 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
107 res->start = address.minimum;
108 res->end = address.minimum + address.address_length - 1;
109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 return AE_OK;
112}
113
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600114static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700115 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 acpi_status status;
118
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700119 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400120 status =
121 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700122 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (ACPI_FAILURE(status))
124 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700125 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return AE_ERROR;
127 return AE_OK;
128}
129
Shaohua Li3a9622d2009-10-29 11:04:50 +0800130static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900131
132static acpi_status acpi_pci_run_osc(acpi_handle handle,
133 const u32 *capbuf, u32 *retval)
134{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800135 struct acpi_osc_context context = {
136 .uuid_str = pci_osc_uuid_str,
137 .rev = 1,
138 .cap.length = 12,
139 .cap.pointer = (void *)capbuf,
140 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900141 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900142
Shaohua Li3a9622d2009-10-29 11:04:50 +0800143 status = acpi_run_osc(handle, &context);
144 if (ACPI_SUCCESS(status)) {
145 *retval = *((u32 *)(context.ret.pointer + 8));
146 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900147 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900148 return status;
149}
150
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200151static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
152 u32 support,
153 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900154{
155 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200156 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900157
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200158 support &= OSC_PCI_SUPPORT_MASKS;
159 support |= root->osc_support_set;
160
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600161 capbuf[OSC_QUERY_DWORD] = OSC_QUERY_ENABLE;
162 capbuf[OSC_SUPPORT_DWORD] = support;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200163 if (control) {
164 *control &= OSC_PCI_CONTROL_MASKS;
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600165 capbuf[OSC_CONTROL_DWORD] = *control | root->osc_control_set;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200166 } else {
Yinghai Lu545d6e12013-03-28 04:28:58 +0000167 /* Run _OSC query only with existing controls. */
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600168 capbuf[OSC_CONTROL_DWORD] = root->osc_control_set;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200169 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900170
171 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
172 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200173 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200174 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200175 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900176 }
177 return status;
178}
179
180static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
181{
182 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900183
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900184 mutex_lock(&osc_lock);
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200185 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900186 mutex_unlock(&osc_lock);
187 return status;
188}
189
Alex Chiang76d56de2009-07-23 17:03:00 -0600190struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900191{
192 struct acpi_pci_root *root;
Taku Izumicd4faf92012-09-18 15:23:23 +0900193 struct acpi_device *device;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600194
Taku Izumicd4faf92012-09-18 15:23:23 +0900195 if (acpi_bus_get_device(handle, &device) ||
196 acpi_match_device_ids(device, root_device_ids))
197 return NULL;
198
199 root = acpi_driver_data(device);
200
201 return root;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900202}
Alex Chiang76d56de2009-07-23 17:03:00 -0600203EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900204
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000205struct acpi_handle_node {
206 struct list_head node;
207 acpi_handle handle;
208};
209
210/**
211 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
212 * @handle: the handle in question
213 *
214 * Given an ACPI CA handle, the desired PCI device is located in the
215 * list of PCI devices.
216 *
217 * If the device is found, its reference count is increased and this
218 * function returns a pointer to its data structure. The caller must
219 * decrement the reference count by calling pci_dev_put().
220 * If no device is found, %NULL is returned.
221 */
222struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
223{
224 int dev, fn;
225 unsigned long long adr;
226 acpi_status status;
227 acpi_handle phandle;
228 struct pci_bus *pbus;
229 struct pci_dev *pdev = NULL;
230 struct acpi_handle_node *node, *tmp;
231 struct acpi_pci_root *root;
232 LIST_HEAD(device_list);
233
234 /*
235 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
236 */
237 phandle = handle;
238 while (!acpi_is_root_bridge(phandle)) {
239 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
240 if (!node)
241 goto out;
242
243 INIT_LIST_HEAD(&node->node);
244 node->handle = phandle;
245 list_add(&node->node, &device_list);
246
247 status = acpi_get_parent(phandle, &phandle);
248 if (ACPI_FAILURE(status))
249 goto out;
250 }
251
252 root = acpi_pci_find_root(phandle);
253 if (!root)
254 goto out;
255
256 pbus = root->bus;
257
258 /*
259 * Now, walk back down the PCI device tree until we return to our
260 * original handle. Assumes that everything between the PCI root
261 * bridge and the device we're looking for must be a P2P bridge.
262 */
263 list_for_each_entry(node, &device_list, node) {
264 acpi_handle hnd = node->handle;
265 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
266 if (ACPI_FAILURE(status))
267 goto out;
268 dev = (adr >> 16) & 0xffff;
269 fn = adr & 0xffff;
270
271 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600272 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000273 break;
274
275 pbus = pdev->subordinate;
276 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200277
278 /*
279 * This function may be called for a non-PCI device that has a
280 * PCI parent (eg. a disk under a PCI SATA controller). In that
281 * case pdev->subordinate will be NULL for the parent.
282 */
283 if (!pbus) {
284 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
285 pdev = NULL;
286 break;
287 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000288 }
289out:
290 list_for_each_entry_safe(node, tmp, &device_list, node)
291 kfree(node);
292
293 return pdev;
294}
295EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
296
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900297/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200298 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
299 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
300 * @mask: Mask of _OSC bits to request control of, place to store control mask.
301 * @req: Mask of _OSC bits the control of is essential to the caller.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900302 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200303 * Run _OSC query for @mask and if that is successful, compare the returned
304 * mask of control bits with @req. If all of the @req bits are set in the
305 * returned mask, run _OSC request for it.
306 *
307 * The variable at the @mask address may be modified regardless of whether or
308 * not the function returns success. On success it will contain the mask of
309 * _OSC bits the BIOS has granted control of, but its contents are meaningless
310 * on failure.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900311 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200312acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900313{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900314 struct acpi_pci_root *root;
Bjorn Helgaas4ffe6e52013-09-05 15:07:41 -0600315 acpi_status status = AE_OK;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200316 u32 ctrl, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900317
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200318 if (!mask)
319 return AE_BAD_PARAMETER;
320
321 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
322 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900323 return AE_TYPE;
324
325 root = acpi_pci_find_root(handle);
326 if (!root)
327 return AE_NOT_EXIST;
328
329 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200330
331 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900332 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200333 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900334 goto out;
335
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200336 /* Need to check the available controls bits before requesting them. */
337 while (*mask) {
338 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
339 if (ACPI_FAILURE(status))
340 goto out;
341 if (ctrl == *mask)
342 break;
343 ctrl = *mask;
344 }
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200345
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200346 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900347 status = AE_SUPPORT;
348 goto out;
349 }
350
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600351 capbuf[OSC_QUERY_DWORD] = 0;
352 capbuf[OSC_SUPPORT_DWORD] = root->osc_support_set;
353 capbuf[OSC_CONTROL_DWORD] = ctrl;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200354 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900355 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200356 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900357out:
358 mutex_unlock(&osc_lock);
359 return status;
360}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900361EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900362
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600363static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm,
364 int *clear_aspm)
365{
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600366 u32 support, base_support, control;
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600367 acpi_status status;
368 struct acpi_device *device = root->device;
369 acpi_handle handle = device->handle;
370
371 /*
372 * All supported architectures that use ACPI have support for
373 * PCI domains, so we indicate this in _OSC support capabilities.
374 */
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600375 support = base_support = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
376 acpi_pci_osc_support(root, support);
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600377
378 if (pci_ext_cfg_avail())
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600379 support |= OSC_PCI_EXT_CONFIG_SUPPORT;
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600380 if (pcie_aspm_support_enabled()) {
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600381 support |= OSC_PCI_ASPM_SUPPORT | OSC_PCI_CLOCK_PM_SUPPORT;
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600382 }
383 if (pci_msi_enabled())
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600384 support |= OSC_PCI_MSI_SUPPORT;
385 if (support != base_support) {
386 status = acpi_pci_osc_support(root, support);
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600387 if (ACPI_FAILURE(status)) {
388 dev_info(&device->dev, "ACPI _OSC support "
389 "notification failed, disabling PCIe ASPM\n");
390 *no_aspm = 1;
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600391 support = base_support;
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600392 }
393 }
394
395 if (!pcie_ports_disabled
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600396 && (support & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
397 control = OSC_PCI_EXPRESS_CAPABILITY_CONTROL
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600398 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
399 | OSC_PCI_EXPRESS_PME_CONTROL;
400
401 if (pci_aer_available()) {
402 if (aer_acpi_firmware_first())
403 dev_dbg(&device->dev,
404 "PCIe errors handled by BIOS.\n");
405 else
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600406 control |= OSC_PCI_EXPRESS_AER_CONTROL;
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600407 }
408
409 dev_info(&device->dev,
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600410 "Requesting ACPI _OSC control (0x%02x)\n", control);
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600411
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600412 status = acpi_pci_osc_control_set(handle, &control,
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600413 OSC_PCI_EXPRESS_CAPABILITY_CONTROL);
414 if (ACPI_SUCCESS(status)) {
415 dev_info(&device->dev,
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600416 "ACPI _OSC control (0x%02x) granted\n",
417 control);
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600418 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
419 /*
420 * We have ASPM control, but the FADT indicates
421 * that it's unsupported. Clear it.
422 */
423 *clear_aspm = 1;
424 }
425 } else {
426 dev_info(&device->dev,
427 "ACPI _OSC request failed (%s), "
428 "returned control mask: 0x%02x\n",
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600429 acpi_format_exception(status), control);
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600430 dev_info(&device->dev,
431 "ACPI _OSC control for PCIe not granted, disabling ASPM\n");
432 /*
433 * We want to disable ASPM here, but aspm_disabled
434 * needs to remain in its state from boot so that we
435 * properly handle PCIe 1.1 devices. So we set this
436 * flag here, to defer the action until after the ACPI
437 * root scan.
438 */
439 *no_aspm = 1;
440 }
441 } else {
442 dev_info(&device->dev,
443 "Unable to request _OSC control "
Bjorn Helgaasb8eb67f2013-09-05 15:07:42 -0600444 "(_OSC support mask: 0x%02x)\n", support);
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600445 }
446}
447
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100448static int acpi_pci_root_add(struct acpi_device *device,
449 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600451 unsigned long long segment, bus;
452 acpi_status status;
453 int result;
454 struct acpi_pci_root *root;
Jiang Liubfe24142013-05-28 18:31:27 -0600455 acpi_handle handle = device->handle;
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600456 int no_aspm = 0, clear_aspm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700458 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
459 if (!root)
460 return -ENOMEM;
461
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600462 segment = 0;
Jiang Liubfe24142013-05-28 18:31:27 -0600463 status = acpi_evaluate_integer(handle, METHOD_NAME__SEG, NULL,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600464 &segment);
465 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600466 dev_err(&device->dev, "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700467 result = -ENODEV;
468 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600471 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700472 root->secondary.flags = IORESOURCE_BUS;
Jiang Liubfe24142013-05-28 18:31:27 -0600473 status = try_get_root_bridge_busnr(handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600474 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700475 /*
476 * We need both the start and end of the downstream bus range
477 * to interpret _CBA (MMCONFIG base address), so it really is
478 * supposed to be in _CRS. If we don't find it there, all we
479 * can do is assume [_BBN-0xFF] or [0-0xFF].
480 */
481 root->secondary.end = 0xFF;
Jiang Liu6dc7d222013-05-28 18:10:05 -0600482 dev_warn(&device->dev,
483 FW_BUG "no secondary bus range in _CRS\n");
Jiang Liubfe24142013-05-28 18:31:27 -0600484 status = acpi_evaluate_integer(handle, METHOD_NAME__BBN,
Jon Masone545b552011-06-19 18:51:37 -0500485 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700486 if (ACPI_SUCCESS(status))
487 root->secondary.start = bus;
488 else if (status == AE_NOT_FOUND)
489 root->secondary.start = 0;
490 else {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600491 dev_err(&device->dev, "can't evaluate _BBN\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700492 result = -ENODEV;
493 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600494 }
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Patrick Mochel32917e52006-05-19 16:54:39 -0400497 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600498 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
500 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700501 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Jiang Liu6dc7d222013-05-28 18:10:05 -0600503 pr_info(PREFIX "%s [%s] (domain %04x %pR)\n",
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900504 acpi_device_name(device), acpi_device_bid(device),
505 root->segment, &root->secondary);
506
Jiang Liubfe24142013-05-28 18:31:27 -0600507 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(handle);
Jiang Liuf4b57a32012-06-22 14:55:16 +0800508
Bjorn Helgaas3e43abb2013-09-05 15:07:41 -0600509 negotiate_os_control(root, &no_aspm, &clear_aspm);
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100510
Neil Horman3dc48af2013-08-29 16:17:05 -0400511 /*
512 * TBD: Need PCI interface for enumeration/configuration of roots.
513 */
514
515 /*
516 * Scan the Root Bridge
517 * --------------------
518 * Must do this prior to any attempt to bind the root device, as the
519 * PCI namespace does not get created until this call is made (and
520 * thus the root bridge's pci_dev does not exist).
521 */
522 root->bus = pci_acpi_scan_root(root);
523 if (!root->bus) {
524 dev_err(&device->dev,
525 "Bus %04x:%02x not present in PCI namespace\n",
526 root->segment, (unsigned int)root->secondary.start);
527 result = -ENODEV;
528 goto end;
529 }
530
531 if (clear_aspm) {
532 dev_info(&device->dev, "Disabling ASPM (FADT indicates it is unsupported)\n");
533 pcie_clear_aspm(root->bus);
534 }
535 if (no_aspm)
536 pcie_no_aspm();
537
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100538 pci_acpi_add_bus_pm_notifier(device, root->bus);
539 if (device->wakeup.flags.run_wake)
540 device_set_run_wake(root->bus->bridge, true);
541
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700542 if (system_state != SYSTEM_BOOTING) {
543 pcibios_resource_survey_bus(root->bus);
Yinghai Lu39772032013-07-22 14:37:18 -0700544 pci_assign_unassigned_root_bus_resources(root->bus);
Jiang Liu516ca222013-05-28 18:04:46 -0600545 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600546
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600547 pci_bus_add_devices(root->bus);
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100548 return 1;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100549
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100550end:
551 kfree(root);
552 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100555static void acpi_pci_root_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600557 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900558
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600559 pci_stop_root_bus(root->bus);
560
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100561 device_set_run_wake(root->bus->bridge, false);
562 pci_acpi_remove_bus_pm_notifier(device);
563
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600564 pci_remove_root_bus(root->bus);
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 kfree(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100569void __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100571 acpi_hest_init();
572
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100573 if (!acpi_pci_disabled) {
574 pci_acpi_crs_quirks();
575 acpi_scan_add_handler(&pci_root_handler);
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
Yinghai Lu668192b2013-01-21 13:20:48 -0800578/* Support root bridge hotplug */
579
580static void handle_root_bridge_insertion(acpi_handle handle)
581{
582 struct acpi_device *device;
583
584 if (!acpi_bus_get_device(handle, &device)) {
Jiang Liu6dc7d222013-05-28 18:10:05 -0600585 dev_printk(KERN_DEBUG, &device->dev,
586 "acpi device already exists; ignoring notify\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800587 return;
588 }
589
590 if (acpi_bus_scan(handle))
Jiang Liu6dc7d222013-05-28 18:10:05 -0600591 acpi_handle_err(handle, "cannot add bridge to acpi list\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800592}
593
594static void handle_root_bridge_removal(struct acpi_device *device)
595{
Yinghai Lub8b66112013-03-11 05:05:16 +0000596 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800597 struct acpi_eject_event *ej_event;
598
599 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
600 if (!ej_event) {
601 /* Inform firmware the hot-remove operation has error */
602 (void) acpi_evaluate_hotplug_ost(device->handle,
603 ACPI_NOTIFY_EJECT_REQUEST,
604 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
605 NULL);
606 return;
607 }
608
609 ej_event->device = device;
610 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
611
Yinghai Lub8b66112013-03-11 05:05:16 +0000612 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event);
613 if (ACPI_FAILURE(status))
614 kfree(ej_event);
Yinghai Lu668192b2013-01-21 13:20:48 -0800615}
616
617static void _handle_hotplug_event_root(struct work_struct *work)
618{
619 struct acpi_pci_root *root;
Yinghai Lu668192b2013-01-21 13:20:48 -0800620 struct acpi_hp_work *hp_work;
621 acpi_handle handle;
622 u32 type;
623
624 hp_work = container_of(work, struct acpi_hp_work, work);
625 handle = hp_work->handle;
626 type = hp_work->type;
627
Yinghai Lub8b66112013-03-11 05:05:16 +0000628 acpi_scan_lock_acquire();
Yinghai Lu668192b2013-01-21 13:20:48 -0800629
Yinghai Lub8b66112013-03-11 05:05:16 +0000630 root = acpi_pci_find_root(handle);
Yinghai Lu668192b2013-01-21 13:20:48 -0800631
632 switch (type) {
633 case ACPI_NOTIFY_BUS_CHECK:
634 /* bus enumerate */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600635 acpi_handle_printk(KERN_DEBUG, handle,
636 "Bus check notify on %s\n", __func__);
Yinghai Lu3f327e32013-05-07 11:06:03 -0600637 if (root)
638 acpiphp_check_host_bridge(handle);
639 else
Yinghai Lu668192b2013-01-21 13:20:48 -0800640 handle_root_bridge_insertion(handle);
641
642 break;
643
644 case ACPI_NOTIFY_DEVICE_CHECK:
645 /* device check */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600646 acpi_handle_printk(KERN_DEBUG, handle,
647 "Device check notify on %s\n", __func__);
Yinghai Lu668192b2013-01-21 13:20:48 -0800648 if (!root)
649 handle_root_bridge_insertion(handle);
650 break;
651
652 case ACPI_NOTIFY_EJECT_REQUEST:
653 /* request device eject */
Jiang Liu6dc7d222013-05-28 18:10:05 -0600654 acpi_handle_printk(KERN_DEBUG, handle,
655 "Device eject notify on %s\n", __func__);
Yinghai Lu668192b2013-01-21 13:20:48 -0800656 if (root)
657 handle_root_bridge_removal(root->device);
658 break;
659 default:
Jiang Liu6dc7d222013-05-28 18:10:05 -0600660 acpi_handle_warn(handle,
661 "notify_handler: unknown event type 0x%x\n",
662 type);
Yinghai Lu668192b2013-01-21 13:20:48 -0800663 break;
664 }
665
Yinghai Lub8b66112013-03-11 05:05:16 +0000666 acpi_scan_lock_release();
Yinghai Lu668192b2013-01-21 13:20:48 -0800667 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
Yinghai Lu668192b2013-01-21 13:20:48 -0800668}
669
670static void handle_hotplug_event_root(acpi_handle handle, u32 type,
671 void *context)
672{
673 alloc_acpi_hp_work(handle, type, context,
674 _handle_hotplug_event_root);
675}
676
677static acpi_status __init
678find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
679{
Tang Chen121b0902013-01-21 13:20:49 -0800680 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800681 int *count = (int *)context;
682
683 if (!acpi_is_root_bridge(handle))
684 return AE_OK;
685
686 (*count)++;
687
Tang Chen121b0902013-01-21 13:20:49 -0800688 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
689 handle_hotplug_event_root, NULL);
690 if (ACPI_FAILURE(status))
Jiang Liu6dc7d222013-05-28 18:10:05 -0600691 acpi_handle_printk(KERN_DEBUG, handle,
692 "notify handler is not installed, exit status: %u\n",
693 (unsigned int)status);
Tang Chen121b0902013-01-21 13:20:49 -0800694 else
Jiang Liu6dc7d222013-05-28 18:10:05 -0600695 acpi_handle_printk(KERN_DEBUG, handle,
696 "notify handler is installed\n");
Yinghai Lu668192b2013-01-21 13:20:48 -0800697
698 return AE_OK;
699}
700
701void __init acpi_pci_root_hp_init(void)
702{
703 int num = 0;
704
705 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
706 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
707
708 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
709}