blob: b80e06e0b2d9af965ee453901fb13370e6eda3ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
Taku Izumid0020f62012-09-18 15:21:31 +090030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/pm.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010032#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/pci.h>
Andrew Patterson990a7ac2008-11-10 15:30:45 -070034#include <linux/pci-acpi.h>
Naga Chumbalkareca67312011-03-21 03:29:20 +000035#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010040#include <acpi/apei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Len Browna192a952009-07-28 16:45:54 -040042#define PREFIX "ACPI: "
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050045ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010048static int acpi_pci_root_add(struct acpi_device *device,
49 const struct acpi_device_id *not_used);
50static void acpi_pci_root_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010052#define ACPI_PCIE_REQ_SUPPORT (OSC_EXT_PCI_CONFIG_SUPPORT \
53 | OSC_ACTIVE_STATE_PWR_SUPPORT \
54 | OSC_CLOCK_PWR_CAPABILITY_SUPPORT \
55 | OSC_MSI_SUPPORT)
56
Márton Némethc97adf92010-01-10 17:15:36 +010057static const struct acpi_device_id root_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020058 {"PNP0A03", 0},
59 {"", 0},
60};
Thomas Renninger1ba90e32007-07-23 14:44:41 +020061
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010062static struct acpi_scan_handler pci_root_handler = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020063 .ids = root_device_ids,
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +010064 .attach = acpi_pci_root_add,
65 .detach = acpi_pci_root_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Myron Stowec309dbb2013-04-12 05:44:30 +000068/* Lock to protect both acpi_pci_roots lists */
Taku Izumid0020f62012-09-18 15:21:31 +090069static DEFINE_MUTEX(acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static LIST_HEAD(acpi_pci_roots);
71
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090072static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Alexander Chiang27558202009-06-10 19:55:14 +000074/**
75 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
76 * @handle - the ACPI CA node in question.
77 *
78 * Note: we could make this API take a struct acpi_device * instead, but
79 * for now, it's more convenient to operate on an acpi_handle.
80 */
81int acpi_is_root_bridge(acpi_handle handle)
82{
83 int ret;
84 struct acpi_device *device;
85
86 ret = acpi_bus_get_device(handle, &device);
87 if (ret)
88 return 0;
89
90 ret = acpi_match_device_ids(device, root_device_ids);
91 if (ret)
92 return 0;
93 else
94 return 1;
95}
96EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040099get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700101 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 struct acpi_resource_address64 address;
103
Bob Moore50eca3e2005-09-30 19:03:00 -0400104 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
105 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
106 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return AE_OK;
108
109 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400110 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700111 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
112 res->start = address.minimum;
113 res->end = address.minimum + address.address_length - 1;
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 return AE_OK;
117}
118
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600119static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700120 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 acpi_status status;
123
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700124 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400125 status =
126 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700127 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (ACPI_FAILURE(status))
129 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700130 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return AE_ERROR;
132 return AE_OK;
133}
134
Shaohua Li3a9622d2009-10-29 11:04:50 +0800135static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900136
137static acpi_status acpi_pci_run_osc(acpi_handle handle,
138 const u32 *capbuf, u32 *retval)
139{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800140 struct acpi_osc_context context = {
141 .uuid_str = pci_osc_uuid_str,
142 .rev = 1,
143 .cap.length = 12,
144 .cap.pointer = (void *)capbuf,
145 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900146 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900147
Shaohua Li3a9622d2009-10-29 11:04:50 +0800148 status = acpi_run_osc(handle, &context);
149 if (ACPI_SUCCESS(status)) {
150 *retval = *((u32 *)(context.ret.pointer + 8));
151 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900152 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900153 return status;
154}
155
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200156static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
157 u32 support,
158 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900159{
160 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200161 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900162
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200163 support &= OSC_PCI_SUPPORT_MASKS;
164 support |= root->osc_support_set;
165
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900166 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200167 capbuf[OSC_SUPPORT_TYPE] = support;
168 if (control) {
169 *control &= OSC_PCI_CONTROL_MASKS;
170 capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set;
171 } else {
172 /* Run _OSC query for all possible controls. */
173 capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
174 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900175
176 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
177 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200178 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200179 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200180 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900181 }
182 return status;
183}
184
185static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
186{
187 acpi_status status;
188 acpi_handle tmp;
189
190 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
191 if (ACPI_FAILURE(status))
192 return status;
193 mutex_lock(&osc_lock);
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200194 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900195 mutex_unlock(&osc_lock);
196 return status;
197}
198
Alex Chiang76d56de2009-07-23 17:03:00 -0600199struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900200{
201 struct acpi_pci_root *root;
Taku Izumicd4faf92012-09-18 15:23:23 +0900202 struct acpi_device *device;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600203
Taku Izumicd4faf92012-09-18 15:23:23 +0900204 if (acpi_bus_get_device(handle, &device) ||
205 acpi_match_device_ids(device, root_device_ids))
206 return NULL;
207
208 root = acpi_driver_data(device);
209
210 return root;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900211}
Alex Chiang76d56de2009-07-23 17:03:00 -0600212EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900213
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000214struct acpi_handle_node {
215 struct list_head node;
216 acpi_handle handle;
217};
218
219/**
220 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
221 * @handle: the handle in question
222 *
223 * Given an ACPI CA handle, the desired PCI device is located in the
224 * list of PCI devices.
225 *
226 * If the device is found, its reference count is increased and this
227 * function returns a pointer to its data structure. The caller must
228 * decrement the reference count by calling pci_dev_put().
229 * If no device is found, %NULL is returned.
230 */
231struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
232{
233 int dev, fn;
234 unsigned long long adr;
235 acpi_status status;
236 acpi_handle phandle;
237 struct pci_bus *pbus;
238 struct pci_dev *pdev = NULL;
239 struct acpi_handle_node *node, *tmp;
240 struct acpi_pci_root *root;
241 LIST_HEAD(device_list);
242
243 /*
244 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
245 */
246 phandle = handle;
247 while (!acpi_is_root_bridge(phandle)) {
248 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
249 if (!node)
250 goto out;
251
252 INIT_LIST_HEAD(&node->node);
253 node->handle = phandle;
254 list_add(&node->node, &device_list);
255
256 status = acpi_get_parent(phandle, &phandle);
257 if (ACPI_FAILURE(status))
258 goto out;
259 }
260
261 root = acpi_pci_find_root(phandle);
262 if (!root)
263 goto out;
264
265 pbus = root->bus;
266
267 /*
268 * Now, walk back down the PCI device tree until we return to our
269 * original handle. Assumes that everything between the PCI root
270 * bridge and the device we're looking for must be a P2P bridge.
271 */
272 list_for_each_entry(node, &device_list, node) {
273 acpi_handle hnd = node->handle;
274 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
275 if (ACPI_FAILURE(status))
276 goto out;
277 dev = (adr >> 16) & 0xffff;
278 fn = adr & 0xffff;
279
280 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600281 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000282 break;
283
284 pbus = pdev->subordinate;
285 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200286
287 /*
288 * This function may be called for a non-PCI device that has a
289 * PCI parent (eg. a disk under a PCI SATA controller). In that
290 * case pdev->subordinate will be NULL for the parent.
291 */
292 if (!pbus) {
293 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
294 pdev = NULL;
295 break;
296 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000297 }
298out:
299 list_for_each_entry_safe(node, tmp, &device_list, node)
300 kfree(node);
301
302 return pdev;
303}
304EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
305
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900306/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200307 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
308 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
309 * @mask: Mask of _OSC bits to request control of, place to store control mask.
310 * @req: Mask of _OSC bits the control of is essential to the caller.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900311 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200312 * Run _OSC query for @mask and if that is successful, compare the returned
313 * mask of control bits with @req. If all of the @req bits are set in the
314 * returned mask, run _OSC request for it.
315 *
316 * The variable at the @mask address may be modified regardless of whether or
317 * not the function returns success. On success it will contain the mask of
318 * _OSC bits the BIOS has granted control of, but its contents are meaningless
319 * on failure.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900320 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200321acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900322{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900323 struct acpi_pci_root *root;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200324 acpi_status status;
325 u32 ctrl, capbuf[3];
326 acpi_handle tmp;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900327
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200328 if (!mask)
329 return AE_BAD_PARAMETER;
330
331 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
332 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900333 return AE_TYPE;
334
335 root = acpi_pci_find_root(handle);
336 if (!root)
337 return AE_NOT_EXIST;
338
Rafael J. Wysockib879dc42010-08-21 01:52:37 +0200339 status = acpi_get_handle(handle, "_OSC", &tmp);
340 if (ACPI_FAILURE(status))
341 return status;
342
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900343 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200344
345 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900346 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200347 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900348 goto out;
349
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200350 /* Need to check the available controls bits before requesting them. */
351 while (*mask) {
352 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
353 if (ACPI_FAILURE(status))
354 goto out;
355 if (ctrl == *mask)
356 break;
357 ctrl = *mask;
358 }
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200359
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200360 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900361 status = AE_SUPPORT;
362 goto out;
363 }
364
365 capbuf[OSC_QUERY_TYPE] = 0;
366 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200367 capbuf[OSC_CONTROL_TYPE] = ctrl;
368 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900369 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200370 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900371out:
372 mutex_unlock(&osc_lock);
373 return status;
374}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900375EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900376
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100377static int acpi_pci_root_add(struct acpi_device *device,
378 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600380 unsigned long long segment, bus;
381 acpi_status status;
382 int result;
383 struct acpi_pci_root *root;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700384 u32 flags, base_flags;
Taku Izumi8c33f512012-10-30 15:27:13 +0900385 bool is_osc_granted = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700387 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
388 if (!root)
389 return -ENOMEM;
390
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600391 segment = 0;
392 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
393 &segment);
394 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
395 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700396 result = -ENODEV;
397 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600400 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700401 root->secondary.flags = IORESOURCE_BUS;
402 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600403 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700404 /*
405 * We need both the start and end of the downstream bus range
406 * to interpret _CBA (MMCONFIG base address), so it really is
407 * supposed to be in _CRS. If we don't find it there, all we
408 * can do is assume [_BBN-0xFF] or [0-0xFF].
409 */
410 root->secondary.end = 0xFF;
411 printk(KERN_WARNING FW_BUG PREFIX
412 "no secondary bus range in _CRS\n");
Jon Masone545b552011-06-19 18:51:37 -0500413 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
414 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700415 if (ACPI_SUCCESS(status))
416 root->secondary.start = bus;
417 else if (status == AE_NOT_FOUND)
418 root->secondary.start = 0;
419 else {
420 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
421 result = -ENODEV;
422 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600423 }
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600426 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400427 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600428 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
430 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700431 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900433 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
434 acpi_device_name(device), acpi_device_bid(device),
435 root->segment, &root->secondary);
436
Jiang Liuf4b57a32012-06-22 14:55:16 +0800437 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
438
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700439 /*
440 * All supported architectures that use ACPI have support for
441 * PCI domains, so we indicate this in _OSC support capabilities.
442 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700443 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900444 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700445
Taku Izumi8c33f512012-10-30 15:27:13 +0900446 /* Indicate support for various _OSC capabilities. */
447 if (pci_ext_cfg_avail())
448 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
449 if (pcie_aspm_support_enabled()) {
450 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
451 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
452 }
453 if (pci_msi_enabled())
454 flags |= OSC_MSI_SUPPORT;
455 if (flags != base_flags) {
456 status = acpi_pci_osc_support(root, flags);
457 if (ACPI_FAILURE(status)) {
458 dev_info(&device->dev, "ACPI _OSC support "
459 "notification failed, disabling PCIe ASPM\n");
460 pcie_no_aspm();
461 flags = base_flags;
462 }
463 }
464 if (!pcie_ports_disabled
465 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
466 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
467 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
468 | OSC_PCI_EXPRESS_PME_CONTROL;
469
470 if (pci_aer_available()) {
471 if (aer_acpi_firmware_first())
472 dev_dbg(&device->dev,
473 "PCIe errors handled by BIOS.\n");
474 else
475 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
476 }
477
478 dev_info(&device->dev,
479 "Requesting ACPI _OSC control (0x%02x)\n", flags);
480
481 status = acpi_pci_osc_control_set(device->handle, &flags,
482 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
483 if (ACPI_SUCCESS(status)) {
484 is_osc_granted = true;
485 dev_info(&device->dev,
486 "ACPI _OSC control (0x%02x) granted\n", flags);
487 } else {
488 is_osc_granted = false;
489 dev_info(&device->dev,
490 "ACPI _OSC request failed (%s), "
491 "returned control mask: 0x%02x\n",
492 acpi_format_exception(status), flags);
493 }
494 } else {
495 dev_info(&device->dev,
496 "Unable to request _OSC control "
497 "(_OSC support mask: 0x%02x)\n", flags);
498 }
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /*
501 * TBD: Need PCI interface for enumeration/configuration of roots.
502 */
503
Taku Izumi6507e6e2012-09-18 15:24:40 +0900504 mutex_lock(&acpi_pci_root_lock);
Len Brown4be44fc2005-08-05 00:44:28 -0400505 list_add_tail(&root->node, &acpi_pci_roots);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900506 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /*
509 * Scan the Root Bridge
510 * --------------------
511 * Must do this prior to any attempt to bind the root device, as the
512 * PCI namespace does not get created until this call is made (and
513 * thus the root bridge's pci_dev does not exist).
514 */
Bjorn Helgaas57283772010-03-11 12:20:11 -0700515 root->bus = pci_acpi_scan_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400517 printk(KERN_ERR PREFIX
518 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700519 root->segment, (unsigned int)root->secondary.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 result = -ENODEV;
Taku Izumi6507e6e2012-09-18 15:24:40 +0900521 goto out_del_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523
Taku Izumi8c33f512012-10-30 15:27:13 +0900524 /* ASPM setting */
525 if (is_osc_granted) {
526 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM)
527 pcie_clear_aspm(root->bus);
Rafael J. Wysockia2466702011-04-30 00:21:38 +0200528 } else {
Taku Izumi8c33f512012-10-30 15:27:13 +0900529 pr_info("ACPI _OSC control for PCIe not granted, "
530 "disabling ASPM\n");
531 pcie_no_aspm();
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100532 }
533
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100534 pci_acpi_add_bus_pm_notifier(device, root->bus);
535 if (device->wakeup.flags.run_wake)
536 device_set_run_wake(root->bus->bridge, true);
537
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700538 if (system_state != SYSTEM_BOOTING) {
539 pcibios_resource_survey_bus(root->bus);
Yinghai Lu62a08c52012-10-30 14:31:32 -0600540 pci_assign_unassigned_bus_resources(root->bus);
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700541 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600542
Yinghai Lu62a08c52012-10-30 14:31:32 -0600543 /* need to after hot-added ioapic is registered */
544 if (system_state != SYSTEM_BOOTING)
545 pci_enable_bridges(root->bus);
546
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
550out_del_root:
551 mutex_lock(&acpi_pci_root_lock);
552 list_del(&root->node);
553 mutex_unlock(&acpi_pci_root_lock);
554
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100555end:
556 kfree(root);
557 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700558}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100560static void acpi_pci_root_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600562 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900563
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600564 pci_stop_root_bus(root->bus);
565
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100566 device_set_run_wake(root->bus->bridge, false);
567 pci_acpi_remove_bus_pm_notifier(device);
568
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600569 pci_remove_root_bus(root->bus);
570
571 mutex_lock(&acpi_pci_root_lock);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900572 list_del(&root->node);
573 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 kfree(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100577void __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100579 acpi_hest_init();
580
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100581 if (!acpi_pci_disabled) {
582 pci_acpi_crs_quirks();
583 acpi_scan_add_handler(&pci_root_handler);
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
Yinghai Lu668192b2013-01-21 13:20:48 -0800586/* Support root bridge hotplug */
587
588static void handle_root_bridge_insertion(acpi_handle handle)
589{
590 struct acpi_device *device;
591
592 if (!acpi_bus_get_device(handle, &device)) {
593 printk(KERN_DEBUG "acpi device exists...\n");
594 return;
595 }
596
597 if (acpi_bus_scan(handle))
598 printk(KERN_ERR "cannot add bridge to acpi list\n");
599}
600
601static void handle_root_bridge_removal(struct acpi_device *device)
602{
603 struct acpi_eject_event *ej_event;
604
605 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
606 if (!ej_event) {
607 /* Inform firmware the hot-remove operation has error */
608 (void) acpi_evaluate_hotplug_ost(device->handle,
609 ACPI_NOTIFY_EJECT_REQUEST,
610 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
611 NULL);
612 return;
613 }
614
615 ej_event->device = device;
616 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
617
618 acpi_bus_hot_remove_device(ej_event);
619}
620
621static void _handle_hotplug_event_root(struct work_struct *work)
622{
623 struct acpi_pci_root *root;
624 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER };
625 struct acpi_hp_work *hp_work;
626 acpi_handle handle;
627 u32 type;
628
629 hp_work = container_of(work, struct acpi_hp_work, work);
630 handle = hp_work->handle;
631 type = hp_work->type;
632
633 root = acpi_pci_find_root(handle);
634
635 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
636
637 switch (type) {
638 case ACPI_NOTIFY_BUS_CHECK:
639 /* bus enumerate */
640 printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__,
641 (char *)buffer.pointer);
642 if (!root)
643 handle_root_bridge_insertion(handle);
644
645 break;
646
647 case ACPI_NOTIFY_DEVICE_CHECK:
648 /* device check */
649 printk(KERN_DEBUG "%s: Device check notify on %s\n", __func__,
650 (char *)buffer.pointer);
651 if (!root)
652 handle_root_bridge_insertion(handle);
653 break;
654
655 case ACPI_NOTIFY_EJECT_REQUEST:
656 /* request device eject */
657 printk(KERN_DEBUG "%s: Device eject notify on %s\n", __func__,
658 (char *)buffer.pointer);
659 if (root)
660 handle_root_bridge_removal(root->device);
661 break;
662 default:
663 printk(KERN_WARNING "notify_handler: unknown event type 0x%x for %s\n",
664 type, (char *)buffer.pointer);
665 break;
666 }
667
668 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
669 kfree(buffer.pointer);
670}
671
672static void handle_hotplug_event_root(acpi_handle handle, u32 type,
673 void *context)
674{
675 alloc_acpi_hp_work(handle, type, context,
676 _handle_hotplug_event_root);
677}
678
679static acpi_status __init
680find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
681{
Tang Chen121b0902013-01-21 13:20:49 -0800682 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800683 char objname[64];
684 struct acpi_buffer buffer = { .length = sizeof(objname),
685 .pointer = objname };
686 int *count = (int *)context;
687
688 if (!acpi_is_root_bridge(handle))
689 return AE_OK;
690
691 (*count)++;
692
693 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
694
Tang Chen121b0902013-01-21 13:20:49 -0800695 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
696 handle_hotplug_event_root, NULL);
697 if (ACPI_FAILURE(status))
698 printk(KERN_DEBUG "acpi root: %s notify handler is not installed, exit status: %u\n",
699 objname, (unsigned int)status);
700 else
701 printk(KERN_DEBUG "acpi root: %s notify handler is installed\n",
702 objname);
Yinghai Lu668192b2013-01-21 13:20:48 -0800703
704 return AE_OK;
705}
706
707void __init acpi_pci_root_hp_init(void)
708{
709 int num = 0;
710
711 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
712 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
713
714 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
715}