blob: f6c0998f248ad52ed559332305351ffa3cac96af [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;
Bjorn Helgaasf6c1c8f2012-06-21 23:48:50 -0600103 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Bjorn Helgaasf6c1c8f2012-06-21 23:48:50 -0600105 status = acpi_resource_to_address64(resource, &address);
106 if (ACPI_FAILURE(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return AE_OK;
108
Len Brown4be44fc2005-08-05 00:44:28 -0400109 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700110 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
111 res->start = address.minimum;
112 res->end = address.minimum + address.address_length - 1;
113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 return AE_OK;
116}
117
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600118static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700119 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 acpi_status status;
122
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700123 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400124 status =
125 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700126 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (ACPI_FAILURE(status))
128 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700129 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return AE_ERROR;
131 return AE_OK;
132}
133
Shaohua Li3a9622d2009-10-29 11:04:50 +0800134static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900135
136static acpi_status acpi_pci_run_osc(acpi_handle handle,
137 const u32 *capbuf, u32 *retval)
138{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800139 struct acpi_osc_context context = {
140 .uuid_str = pci_osc_uuid_str,
141 .rev = 1,
142 .cap.length = 12,
143 .cap.pointer = (void *)capbuf,
144 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900145 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900146
Shaohua Li3a9622d2009-10-29 11:04:50 +0800147 status = acpi_run_osc(handle, &context);
148 if (ACPI_SUCCESS(status)) {
149 *retval = *((u32 *)(context.ret.pointer + 8));
150 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900151 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900152 return status;
153}
154
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200155static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
156 u32 support,
157 u32 *control)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900158{
159 acpi_status status;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200160 u32 result, capbuf[3];
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900161
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200162 support &= OSC_PCI_SUPPORT_MASKS;
163 support |= root->osc_support_set;
164
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900165 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200166 capbuf[OSC_SUPPORT_TYPE] = support;
167 if (control) {
168 *control &= OSC_PCI_CONTROL_MASKS;
169 capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set;
170 } else {
Yinghai Lu545d6e12013-03-28 04:28:58 +0000171 /* Run _OSC query only with existing controls. */
172 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set;
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200173 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900174
175 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
176 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200177 root->osc_support_set = support;
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200178 if (control)
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200179 *control = result;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900180 }
181 return status;
182}
183
184static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
185{
186 acpi_status status;
187 acpi_handle tmp;
188
189 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
190 if (ACPI_FAILURE(status))
191 return status;
192 mutex_lock(&osc_lock);
Rafael J. Wysockiab8e8952010-08-21 01:53:27 +0200193 status = acpi_pci_query_osc(root, flags, NULL);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900194 mutex_unlock(&osc_lock);
195 return status;
196}
197
Alex Chiang76d56de2009-07-23 17:03:00 -0600198struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900199{
200 struct acpi_pci_root *root;
Taku Izumicd4faf92012-09-18 15:23:23 +0900201 struct acpi_device *device;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600202
Taku Izumicd4faf92012-09-18 15:23:23 +0900203 if (acpi_bus_get_device(handle, &device) ||
204 acpi_match_device_ids(device, root_device_ids))
205 return NULL;
206
207 root = acpi_driver_data(device);
208
209 return root;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900210}
Alex Chiang76d56de2009-07-23 17:03:00 -0600211EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900212
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000213struct acpi_handle_node {
214 struct list_head node;
215 acpi_handle handle;
216};
217
218/**
219 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
220 * @handle: the handle in question
221 *
222 * Given an ACPI CA handle, the desired PCI device is located in the
223 * list of PCI devices.
224 *
225 * If the device is found, its reference count is increased and this
226 * function returns a pointer to its data structure. The caller must
227 * decrement the reference count by calling pci_dev_put().
228 * If no device is found, %NULL is returned.
229 */
230struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
231{
232 int dev, fn;
233 unsigned long long adr;
234 acpi_status status;
235 acpi_handle phandle;
236 struct pci_bus *pbus;
237 struct pci_dev *pdev = NULL;
238 struct acpi_handle_node *node, *tmp;
239 struct acpi_pci_root *root;
240 LIST_HEAD(device_list);
241
242 /*
243 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
244 */
245 phandle = handle;
246 while (!acpi_is_root_bridge(phandle)) {
247 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
248 if (!node)
249 goto out;
250
251 INIT_LIST_HEAD(&node->node);
252 node->handle = phandle;
253 list_add(&node->node, &device_list);
254
255 status = acpi_get_parent(phandle, &phandle);
256 if (ACPI_FAILURE(status))
257 goto out;
258 }
259
260 root = acpi_pci_find_root(phandle);
261 if (!root)
262 goto out;
263
264 pbus = root->bus;
265
266 /*
267 * Now, walk back down the PCI device tree until we return to our
268 * original handle. Assumes that everything between the PCI root
269 * bridge and the device we're looking for must be a P2P bridge.
270 */
271 list_for_each_entry(node, &device_list, node) {
272 acpi_handle hnd = node->handle;
273 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
274 if (ACPI_FAILURE(status))
275 goto out;
276 dev = (adr >> 16) & 0xffff;
277 fn = adr & 0xffff;
278
279 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600280 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000281 break;
282
283 pbus = pdev->subordinate;
284 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200285
286 /*
287 * This function may be called for a non-PCI device that has a
288 * PCI parent (eg. a disk under a PCI SATA controller). In that
289 * case pdev->subordinate will be NULL for the parent.
290 */
291 if (!pbus) {
292 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
293 pdev = NULL;
294 break;
295 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000296 }
297out:
298 list_for_each_entry_safe(node, tmp, &device_list, node)
299 kfree(node);
300
301 return pdev;
302}
303EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
304
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900305/**
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200306 * acpi_pci_osc_control_set - Request control of PCI root _OSC features.
307 * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
308 * @mask: Mask of _OSC bits to request control of, place to store control mask.
309 * @req: Mask of _OSC bits the control of is essential to the caller.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900310 *
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200311 * Run _OSC query for @mask and if that is successful, compare the returned
312 * mask of control bits with @req. If all of the @req bits are set in the
313 * returned mask, run _OSC request for it.
314 *
315 * The variable at the @mask address may be modified regardless of whether or
316 * not the function returns success. On success it will contain the mask of
317 * _OSC bits the BIOS has granted control of, but its contents are meaningless
318 * on failure.
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900319 **/
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200320acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900321{
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900322 struct acpi_pci_root *root;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200323 acpi_status status;
324 u32 ctrl, capbuf[3];
325 acpi_handle tmp;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900326
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200327 if (!mask)
328 return AE_BAD_PARAMETER;
329
330 ctrl = *mask & OSC_PCI_CONTROL_MASKS;
331 if ((ctrl & req) != req)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900332 return AE_TYPE;
333
334 root = acpi_pci_find_root(handle);
335 if (!root)
336 return AE_NOT_EXIST;
337
Rafael J. Wysockib879dc42010-08-21 01:52:37 +0200338 status = acpi_get_handle(handle, "_OSC", &tmp);
339 if (ACPI_FAILURE(status))
340 return status;
341
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900342 mutex_lock(&osc_lock);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200343
344 *mask = ctrl | root->osc_control_set;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900345 /* No need to evaluate _OSC if the control was already granted. */
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200346 if ((root->osc_control_set & ctrl) == ctrl)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900347 goto out;
348
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200349 /* Need to check the available controls bits before requesting them. */
350 while (*mask) {
351 status = acpi_pci_query_osc(root, root->osc_support_set, mask);
352 if (ACPI_FAILURE(status))
353 goto out;
354 if (ctrl == *mask)
355 break;
356 ctrl = *mask;
357 }
Rafael J. Wysocki2b8fd912010-08-23 23:55:59 +0200358
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200359 if ((ctrl & req) != req) {
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900360 status = AE_SUPPORT;
361 goto out;
362 }
363
364 capbuf[OSC_QUERY_TYPE] = 0;
365 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200366 capbuf[OSC_CONTROL_TYPE] = ctrl;
367 status = acpi_pci_run_osc(handle, capbuf, mask);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900368 if (ACPI_SUCCESS(status))
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200369 root->osc_control_set = *mask;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900370out:
371 mutex_unlock(&osc_lock);
372 return status;
373}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900374EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900375
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100376static int acpi_pci_root_add(struct acpi_device *device,
377 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600379 unsigned long long segment, bus;
380 acpi_status status;
381 int result;
382 struct acpi_pci_root *root;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700383 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700385 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
386 if (!root)
387 return -ENOMEM;
388
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600389 segment = 0;
390 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
391 &segment);
392 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
393 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700394 result = -ENODEV;
395 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600398 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700399 root->secondary.flags = IORESOURCE_BUS;
400 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600401 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700402 /*
403 * We need both the start and end of the downstream bus range
404 * to interpret _CBA (MMCONFIG base address), so it really is
405 * supposed to be in _CRS. If we don't find it there, all we
406 * can do is assume [_BBN-0xFF] or [0-0xFF].
407 */
408 root->secondary.end = 0xFF;
409 printk(KERN_WARNING FW_BUG PREFIX
410 "no secondary bus range in _CRS\n");
Jon Masone545b552011-06-19 18:51:37 -0500411 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
412 NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700413 if (ACPI_SUCCESS(status))
414 root->secondary.start = bus;
415 else if (status == AE_NOT_FOUND)
416 root->secondary.start = 0;
417 else {
418 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
419 result = -ENODEV;
420 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600421 }
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600424 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400425 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600426 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
428 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700429 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Bjorn Helgaasd4761ba2012-10-30 15:24:50 +0900431 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
432 acpi_device_name(device), acpi_device_bid(device),
433 root->segment, &root->secondary);
434
Jiang Liuf4b57a32012-06-22 14:55:16 +0800435 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle);
436
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700437 /*
438 * All supported architectures that use ACPI have support for
439 * PCI domains, so we indicate this in _OSC support capabilities.
440 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700441 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900442 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700443
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600444 /*
445 * TBD: Need PCI interface for enumeration/configuration of roots.
446 */
447
448 mutex_lock(&acpi_pci_root_lock);
449 list_add_tail(&root->node, &acpi_pci_roots);
450 mutex_unlock(&acpi_pci_root_lock);
451
452 /*
453 * Scan the Root Bridge
454 * --------------------
455 * Must do this prior to any attempt to bind the root device, as the
456 * PCI namespace does not get created until this call is made (and
457 * thus the root bridge's pci_dev does not exist).
458 */
459 root->bus = pci_acpi_scan_root(root);
460 if (!root->bus) {
461 printk(KERN_ERR PREFIX
462 "Bus %04x:%02x not present in PCI namespace\n",
463 root->segment, (unsigned int)root->secondary.start);
464 result = -ENODEV;
465 goto out_del_root;
466 }
467
Taku Izumi8c33f512012-10-30 15:27:13 +0900468 /* Indicate support for various _OSC capabilities. */
469 if (pci_ext_cfg_avail())
470 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
471 if (pcie_aspm_support_enabled()) {
472 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
473 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
474 }
475 if (pci_msi_enabled())
476 flags |= OSC_MSI_SUPPORT;
477 if (flags != base_flags) {
478 status = acpi_pci_osc_support(root, flags);
479 if (ACPI_FAILURE(status)) {
480 dev_info(&device->dev, "ACPI _OSC support "
481 "notification failed, disabling PCIe ASPM\n");
482 pcie_no_aspm();
483 flags = base_flags;
484 }
485 }
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600486
Taku Izumi8c33f512012-10-30 15:27:13 +0900487 if (!pcie_ports_disabled
488 && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) {
489 flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
490 | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
491 | OSC_PCI_EXPRESS_PME_CONTROL;
492
493 if (pci_aer_available()) {
494 if (aer_acpi_firmware_first())
495 dev_dbg(&device->dev,
496 "PCIe errors handled by BIOS.\n");
497 else
498 flags |= OSC_PCI_EXPRESS_AER_CONTROL;
499 }
500
501 dev_info(&device->dev,
502 "Requesting ACPI _OSC control (0x%02x)\n", flags);
503
504 status = acpi_pci_osc_control_set(device->handle, &flags,
505 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL);
506 if (ACPI_SUCCESS(status)) {
Taku Izumi8c33f512012-10-30 15:27:13 +0900507 dev_info(&device->dev,
508 "ACPI _OSC control (0x%02x) granted\n", flags);
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600509 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
510 /*
511 * We have ASPM control, but the FADT indicates
512 * that it's unsupported. Clear it.
513 */
514 pcie_clear_aspm(root->bus);
515 }
Taku Izumi8c33f512012-10-30 15:27:13 +0900516 } else {
Taku Izumi8c33f512012-10-30 15:27:13 +0900517 dev_info(&device->dev,
518 "ACPI _OSC request failed (%s), "
519 "returned control mask: 0x%02x\n",
520 acpi_format_exception(status), flags);
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600521 pr_info("ACPI _OSC control for PCIe not granted, "
522 "disabling ASPM\n");
523 pcie_no_aspm();
Taku Izumi8c33f512012-10-30 15:27:13 +0900524 }
525 } else {
526 dev_info(&device->dev,
Bjorn Helgaasb8178f12013-04-01 15:47:39 -0600527 "Unable to request _OSC control "
528 "(_OSC support mask: 0x%02x)\n", flags);
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100529 }
530
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100531 pci_acpi_add_bus_pm_notifier(device, root->bus);
532 if (device->wakeup.flags.run_wake)
533 device_set_run_wake(root->bus->bridge, true);
534
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700535 if (system_state != SYSTEM_BOOTING) {
536 pcibios_resource_survey_bus(root->bus);
Yinghai Lu62a08c52012-10-30 14:31:32 -0600537 pci_assign_unassigned_bus_resources(root->bus);
Yinghai Lu3c449ed2012-11-03 21:39:31 -0700538 }
Yinghai Lu62a08c52012-10-30 14:31:32 -0600539
Yinghai Lu62a08c52012-10-30 14:31:32 -0600540 /* need to after hot-added ioapic is registered */
541 if (system_state != SYSTEM_BOOTING)
542 pci_enable_bridges(root->bus);
543
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600544 pci_bus_add_devices(root->bus);
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100545 return 1;
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100546
547out_del_root:
548 mutex_lock(&acpi_pci_root_lock);
549 list_del(&root->node);
550 mutex_unlock(&acpi_pci_root_lock);
551
Rafael J. Wysocki47525cd2012-12-21 00:36:45 +0100552end:
553 kfree(root);
554 return result;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700555}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100557static void acpi_pci_root_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600559 struct acpi_pci_root *root = acpi_driver_data(device);
Jiang Liuc8e9afb2012-09-18 15:20:34 +0900560
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600561 pci_stop_root_bus(root->bus);
562
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100563 device_set_run_wake(root->bus->bridge, false);
564 pci_acpi_remove_bus_pm_notifier(device);
565
Yinghai Lu9738a1f2012-10-30 14:31:43 -0600566 pci_remove_root_bus(root->bus);
567
568 mutex_lock(&acpi_pci_root_lock);
Taku Izumi6507e6e2012-09-18 15:24:40 +0900569 list_del(&root->node);
570 mutex_unlock(&acpi_pci_root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 kfree(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100574void __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Rafael J. Wysockid3072e62011-01-16 20:44:22 +0100576 acpi_hest_init();
577
Rafael J. Wysocki00c43b92013-01-30 14:27:33 +0100578 if (!acpi_pci_disabled) {
579 pci_acpi_crs_quirks();
580 acpi_scan_add_handler(&pci_root_handler);
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
Yinghai Lu668192b2013-01-21 13:20:48 -0800583/* Support root bridge hotplug */
584
585static void handle_root_bridge_insertion(acpi_handle handle)
586{
587 struct acpi_device *device;
588
589 if (!acpi_bus_get_device(handle, &device)) {
590 printk(KERN_DEBUG "acpi device exists...\n");
591 return;
592 }
593
594 if (acpi_bus_scan(handle))
595 printk(KERN_ERR "cannot add bridge to acpi list\n");
596}
597
598static void handle_root_bridge_removal(struct acpi_device *device)
599{
Yinghai Lub8b66112013-03-11 05:05:16 +0000600 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800601 struct acpi_eject_event *ej_event;
602
603 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
604 if (!ej_event) {
605 /* Inform firmware the hot-remove operation has error */
606 (void) acpi_evaluate_hotplug_ost(device->handle,
607 ACPI_NOTIFY_EJECT_REQUEST,
608 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
609 NULL);
610 return;
611 }
612
613 ej_event->device = device;
614 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
615
Yinghai Lub8b66112013-03-11 05:05:16 +0000616 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event);
617 if (ACPI_FAILURE(status))
618 kfree(ej_event);
Yinghai Lu668192b2013-01-21 13:20:48 -0800619}
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
Yinghai Lub8b66112013-03-11 05:05:16 +0000633 acpi_scan_lock_acquire();
Yinghai Lu668192b2013-01-21 13:20:48 -0800634
Yinghai Lub8b66112013-03-11 05:05:16 +0000635 root = acpi_pci_find_root(handle);
Yinghai Lu668192b2013-01-21 13:20:48 -0800636 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
637
638 switch (type) {
639 case ACPI_NOTIFY_BUS_CHECK:
640 /* bus enumerate */
641 printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__,
642 (char *)buffer.pointer);
643 if (!root)
644 handle_root_bridge_insertion(handle);
645
646 break;
647
648 case ACPI_NOTIFY_DEVICE_CHECK:
649 /* device check */
650 printk(KERN_DEBUG "%s: Device check notify on %s\n", __func__,
651 (char *)buffer.pointer);
652 if (!root)
653 handle_root_bridge_insertion(handle);
654 break;
655
656 case ACPI_NOTIFY_EJECT_REQUEST:
657 /* request device eject */
658 printk(KERN_DEBUG "%s: Device eject notify on %s\n", __func__,
659 (char *)buffer.pointer);
660 if (root)
661 handle_root_bridge_removal(root->device);
662 break;
663 default:
664 printk(KERN_WARNING "notify_handler: unknown event type 0x%x for %s\n",
665 type, (char *)buffer.pointer);
666 break;
667 }
668
Yinghai Lub8b66112013-03-11 05:05:16 +0000669 acpi_scan_lock_release();
Yinghai Lu668192b2013-01-21 13:20:48 -0800670 kfree(hp_work); /* allocated in handle_hotplug_event_bridge */
671 kfree(buffer.pointer);
672}
673
674static void handle_hotplug_event_root(acpi_handle handle, u32 type,
675 void *context)
676{
677 alloc_acpi_hp_work(handle, type, context,
678 _handle_hotplug_event_root);
679}
680
681static acpi_status __init
682find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
683{
Tang Chen121b0902013-01-21 13:20:49 -0800684 acpi_status status;
Yinghai Lu668192b2013-01-21 13:20:48 -0800685 char objname[64];
686 struct acpi_buffer buffer = { .length = sizeof(objname),
687 .pointer = objname };
688 int *count = (int *)context;
689
690 if (!acpi_is_root_bridge(handle))
691 return AE_OK;
692
693 (*count)++;
694
695 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
696
Tang Chen121b0902013-01-21 13:20:49 -0800697 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
698 handle_hotplug_event_root, NULL);
699 if (ACPI_FAILURE(status))
700 printk(KERN_DEBUG "acpi root: %s notify handler is not installed, exit status: %u\n",
701 objname, (unsigned int)status);
702 else
703 printk(KERN_DEBUG "acpi root: %s notify handler is installed\n",
704 objname);
Yinghai Lu668192b2013-01-21 13:20:48 -0800705
706 return AE_OK;
707}
708
709void __init acpi_pci_root_hp_init(void)
710{
711 int num = 0;
712
713 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
714 ACPI_UINT32_MAX, find_root_bridges, NULL, &num, NULL);
715
716 printk(KERN_DEBUG "Found %d acpi root devices\n", num);
717}