blob: 4eac59393edc5b13e3c25283f08e6cf899fb61d7 [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>
30#include <linux/proc_fs.h>
31#include <linux/spinlock.h>
32#include <linux/pm.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010033#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/pci.h>
Andrew Patterson990a7ac2008-11-10 15:30:45 -070035#include <linux/pci-acpi.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>
40
Len Browna192a952009-07-28 16:45:54 -040041#define PREFIX "ACPI: "
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050044ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Len Brown4be44fc2005-08-05 00:44:28 -040047static int acpi_pci_root_add(struct acpi_device *device);
48static int acpi_pci_root_remove(struct acpi_device *device, int type);
49static int acpi_pci_root_start(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Márton Némethc97adf92010-01-10 17:15:36 +010051static const struct acpi_device_id root_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020052 {"PNP0A03", 0},
53 {"", 0},
54};
55MODULE_DEVICE_TABLE(acpi, root_device_ids);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct acpi_driver acpi_pci_root_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -050058 .name = "pci_root",
Len Brown4be44fc2005-08-05 00:44:28 -040059 .class = ACPI_PCI_ROOT_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020060 .ids = root_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040061 .ops = {
62 .add = acpi_pci_root_add,
63 .remove = acpi_pci_root_remove,
64 .start = acpi_pci_root_start,
65 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static LIST_HEAD(acpi_pci_roots);
69
70static struct acpi_pci_driver *sub_driver;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090071static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73int acpi_pci_register_driver(struct acpi_pci_driver *driver)
74{
75 int n = 0;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060076 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 struct acpi_pci_driver **pptr = &sub_driver;
79 while (*pptr)
80 pptr = &(*pptr)->next;
81 *pptr = driver;
82
83 if (!driver->add)
84 return 0;
85
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060086 list_for_each_entry(root, &acpi_pci_roots, node) {
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040087 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 n++;
89 }
90
91 return n;
92}
Len Brown4be44fc2005-08-05 00:44:28 -040093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094EXPORT_SYMBOL(acpi_pci_register_driver);
95
96void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
97{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060098 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 struct acpi_pci_driver **pptr = &sub_driver;
101 while (*pptr) {
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800102 if (*pptr == driver)
103 break;
104 pptr = &(*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800106 BUG_ON(!*pptr);
107 *pptr = (*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 if (!driver->remove)
110 return;
111
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600112 list_for_each_entry(root, &acpi_pci_roots, node)
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400113 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
Len Brown4be44fc2005-08-05 00:44:28 -0400115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116EXPORT_SYMBOL(acpi_pci_unregister_driver);
117
Justin Chend91a0072006-12-06 10:17:10 -0700118acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
119{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600120 struct acpi_pci_root *root;
Justin Chend91a0072006-12-06 10:17:10 -0700121
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600122 list_for_each_entry(root, &acpi_pci_roots, node)
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700123 if ((root->segment == (u16) seg) &&
124 (root->secondary.start == (u16) bus))
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600125 return root->device->handle;
Justin Chend91a0072006-12-06 10:17:10 -0700126 return NULL;
127}
128
129EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
130
Alexander Chiang27558202009-06-10 19:55:14 +0000131/**
132 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
133 * @handle - the ACPI CA node in question.
134 *
135 * Note: we could make this API take a struct acpi_device * instead, but
136 * for now, it's more convenient to operate on an acpi_handle.
137 */
138int acpi_is_root_bridge(acpi_handle handle)
139{
140 int ret;
141 struct acpi_device *device;
142
143 ret = acpi_bus_get_device(handle, &device);
144 if (ret)
145 return 0;
146
147 ret = acpi_match_device_ids(device, root_device_ids);
148 if (ret)
149 return 0;
150 else
151 return 1;
152}
153EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400156get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700158 struct resource *res = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct acpi_resource_address64 address;
160
Bob Moore50eca3e2005-09-30 19:03:00 -0400161 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
162 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
163 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return AE_OK;
165
166 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400167 if ((address.address_length > 0) &&
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700168 (address.resource_type == ACPI_BUS_NUMBER_RANGE)) {
169 res->start = address.minimum;
170 res->end = address.minimum + address.address_length - 1;
171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 return AE_OK;
174}
175
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600176static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700177 struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 acpi_status status;
180
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700181 res->start = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400182 status =
183 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700184 get_root_bridge_busnr_callback, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (ACPI_FAILURE(status))
186 return status;
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700187 if (res->start == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return AE_ERROR;
189 return AE_OK;
190}
191
Rui Zhang2786f6e2006-12-21 02:21:13 -0500192static void acpi_pci_bridge_scan(struct acpi_device *device)
193{
194 int status;
195 struct acpi_device *child = NULL;
196
197 if (device->flags.bus_address)
198 if (device->parent && device->parent->ops.bind) {
199 status = device->parent->ops.bind(device);
200 if (!status) {
201 list_for_each_entry(child, &device->children, node)
202 acpi_pci_bridge_scan(child);
203 }
204 }
205}
206
Shaohua Li3a9622d2009-10-29 11:04:50 +0800207static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900208
209static acpi_status acpi_pci_run_osc(acpi_handle handle,
210 const u32 *capbuf, u32 *retval)
211{
Shaohua Li3a9622d2009-10-29 11:04:50 +0800212 struct acpi_osc_context context = {
213 .uuid_str = pci_osc_uuid_str,
214 .rev = 1,
215 .cap.length = 12,
216 .cap.pointer = (void *)capbuf,
217 };
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900218 acpi_status status;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900219
Shaohua Li3a9622d2009-10-29 11:04:50 +0800220 status = acpi_run_osc(handle, &context);
221 if (ACPI_SUCCESS(status)) {
222 *retval = *((u32 *)(context.ret.pointer + 8));
223 kfree(context.ret.pointer);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900224 }
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900225 return status;
226}
227
228static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
229{
230 acpi_status status;
231 u32 support_set, result, capbuf[3];
232
233 /* do _OSC query for all possible controls */
Shaohua Li3a9622d2009-10-29 11:04:50 +0800234 support_set = root->osc_support_set | (flags & OSC_PCI_SUPPORT_MASKS);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900235 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
236 capbuf[OSC_SUPPORT_TYPE] = support_set;
Shaohua Li3a9622d2009-10-29 11:04:50 +0800237 capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900238
239 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
240 if (ACPI_SUCCESS(status)) {
241 root->osc_support_set = support_set;
242 root->osc_control_qry = result;
243 root->osc_queried = 1;
244 }
245 return status;
246}
247
248static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
249{
250 acpi_status status;
251 acpi_handle tmp;
252
253 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
254 if (ACPI_FAILURE(status))
255 return status;
256 mutex_lock(&osc_lock);
257 status = acpi_pci_query_osc(root, flags);
258 mutex_unlock(&osc_lock);
259 return status;
260}
261
Alex Chiang76d56de2009-07-23 17:03:00 -0600262struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900263{
264 struct acpi_pci_root *root;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600265
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900266 list_for_each_entry(root, &acpi_pci_roots, node) {
267 if (root->device->handle == handle)
268 return root;
269 }
270 return NULL;
271}
Alex Chiang76d56de2009-07-23 17:03:00 -0600272EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900273
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000274struct acpi_handle_node {
275 struct list_head node;
276 acpi_handle handle;
277};
278
279/**
280 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
281 * @handle: the handle in question
282 *
283 * Given an ACPI CA handle, the desired PCI device is located in the
284 * list of PCI devices.
285 *
286 * If the device is found, its reference count is increased and this
287 * function returns a pointer to its data structure. The caller must
288 * decrement the reference count by calling pci_dev_put().
289 * If no device is found, %NULL is returned.
290 */
291struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
292{
293 int dev, fn;
294 unsigned long long adr;
295 acpi_status status;
296 acpi_handle phandle;
297 struct pci_bus *pbus;
298 struct pci_dev *pdev = NULL;
299 struct acpi_handle_node *node, *tmp;
300 struct acpi_pci_root *root;
301 LIST_HEAD(device_list);
302
303 /*
304 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
305 */
306 phandle = handle;
307 while (!acpi_is_root_bridge(phandle)) {
308 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
309 if (!node)
310 goto out;
311
312 INIT_LIST_HEAD(&node->node);
313 node->handle = phandle;
314 list_add(&node->node, &device_list);
315
316 status = acpi_get_parent(phandle, &phandle);
317 if (ACPI_FAILURE(status))
318 goto out;
319 }
320
321 root = acpi_pci_find_root(phandle);
322 if (!root)
323 goto out;
324
325 pbus = root->bus;
326
327 /*
328 * Now, walk back down the PCI device tree until we return to our
329 * original handle. Assumes that everything between the PCI root
330 * bridge and the device we're looking for must be a P2P bridge.
331 */
332 list_for_each_entry(node, &device_list, node) {
333 acpi_handle hnd = node->handle;
334 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
335 if (ACPI_FAILURE(status))
336 goto out;
337 dev = (adr >> 16) & 0xffff;
338 fn = adr & 0xffff;
339
340 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600341 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000342 break;
343
344 pbus = pdev->subordinate;
345 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200346
347 /*
348 * This function may be called for a non-PCI device that has a
349 * PCI parent (eg. a disk under a PCI SATA controller). In that
350 * case pdev->subordinate will be NULL for the parent.
351 */
352 if (!pbus) {
353 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
354 pdev = NULL;
355 break;
356 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000357 }
358out:
359 list_for_each_entry_safe(node, tmp, &device_list, node)
360 kfree(node);
361
362 return pdev;
363}
364EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
365
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900366/**
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900367 * acpi_pci_osc_control_set - commit requested control to Firmware
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900368 * @handle: acpi_handle for the target ACPI object
369 * @flags: driver's requested control bits
370 *
371 * Attempt to take control from Firmware on requested control bits.
372 **/
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900373acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900374{
375 acpi_status status;
376 u32 control_req, result, capbuf[3];
377 acpi_handle tmp;
378 struct acpi_pci_root *root;
379
380 status = acpi_get_handle(handle, "_OSC", &tmp);
381 if (ACPI_FAILURE(status))
382 return status;
383
Shaohua Li3a9622d2009-10-29 11:04:50 +0800384 control_req = (flags & OSC_PCI_CONTROL_MASKS);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900385 if (!control_req)
386 return AE_TYPE;
387
388 root = acpi_pci_find_root(handle);
389 if (!root)
390 return AE_NOT_EXIST;
391
392 mutex_lock(&osc_lock);
393 /* No need to evaluate _OSC if the control was already granted. */
394 if ((root->osc_control_set & control_req) == control_req)
395 goto out;
396
397 /* Need to query controls first before requesting them */
398 if (!root->osc_queried) {
399 status = acpi_pci_query_osc(root, root->osc_support_set);
400 if (ACPI_FAILURE(status))
401 goto out;
402 }
403 if ((root->osc_control_qry & control_req) != control_req) {
404 printk(KERN_DEBUG
405 "Firmware did not grant requested _OSC control\n");
406 status = AE_SUPPORT;
407 goto out;
408 }
409
410 capbuf[OSC_QUERY_TYPE] = 0;
411 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
412 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
413 status = acpi_pci_run_osc(handle, capbuf, &result);
414 if (ACPI_SUCCESS(status))
415 root->osc_control_set = result;
416out:
417 mutex_unlock(&osc_lock);
418 return status;
419}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900420EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900421
Sam Ravnborgb5678a32008-02-17 13:23:03 +0100422static int __devinit acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600424 unsigned long long segment, bus;
425 acpi_status status;
426 int result;
427 struct acpi_pci_root *root;
428 acpi_handle handle;
Rui Zhang2786f6e2006-12-21 02:21:13 -0500429 struct acpi_device *child;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700430 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700432 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
433 if (!root)
434 return -ENOMEM;
435
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600436 segment = 0;
437 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
438 &segment);
439 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
440 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700441 result = -ENODEV;
442 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600445 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700446 root->secondary.flags = IORESOURCE_BUS;
447 status = try_get_root_bridge_busnr(device->handle, &root->secondary);
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600448 if (ACPI_FAILURE(status)) {
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700449 /*
450 * We need both the start and end of the downstream bus range
451 * to interpret _CBA (MMCONFIG base address), so it really is
452 * supposed to be in _CRS. If we don't find it there, all we
453 * can do is assume [_BBN-0xFF] or [0-0xFF].
454 */
455 root->secondary.end = 0xFF;
456 printk(KERN_WARNING FW_BUG PREFIX
457 "no secondary bus range in _CRS\n");
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600458 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700459 if (ACPI_SUCCESS(status))
460 root->secondary.start = bus;
461 else if (status == AE_NOT_FOUND)
462 root->secondary.start = 0;
463 else {
464 printk(KERN_ERR PREFIX "can't evaluate _BBN\n");
465 result = -ENODEV;
466 goto end;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600467 }
468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600470 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400471 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600472 root->segment = segment & 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
474 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700475 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700477 /*
478 * All supported architectures that use ACPI have support for
479 * PCI domains, so we indicate this in _OSC support capabilities.
480 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700481 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900482 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /*
485 * TBD: Need PCI interface for enumeration/configuration of roots.
486 */
487
Len Brown4be44fc2005-08-05 00:44:28 -0400488 /* TBD: Locking */
489 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700491 printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400492 acpi_device_name(device), acpi_device_bid(device),
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700493 root->segment, &root->secondary);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /*
496 * Scan the Root Bridge
497 * --------------------
498 * Must do this prior to any attempt to bind the root device, as the
499 * PCI namespace does not get created until this call is made (and
500 * thus the root bridge's pci_dev does not exist).
501 */
Bjorn Helgaas57283772010-03-11 12:20:11 -0700502 root->bus = pci_acpi_scan_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400504 printk(KERN_ERR PREFIX
505 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas6ad95512010-03-11 12:20:06 -0700506 root->segment, (unsigned int)root->secondary.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 result = -ENODEV;
508 goto end;
509 }
510
511 /*
512 * Attach ACPI-PCI Context
513 * -----------------------
514 * Thus binding the ACPI and PCI devices.
515 */
Alexander Chiang499650d2009-06-10 19:55:30 +0000516 result = acpi_pci_bind_root(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (result)
518 goto end;
519
520 /*
521 * PCI Routing Table
522 * -----------------
523 * Evaluate and parse _PRT, if exists.
524 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400525 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (ACPI_SUCCESS(status))
Alexander Chiang859a3f82009-06-10 19:55:35 +0000527 result = acpi_pci_irq_add_prt(device->handle, root->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Rui Zhang2786f6e2006-12-21 02:21:13 -0500529 /*
530 * Scan and bind all _ADR-Based Devices
531 */
532 list_for_each_entry(child, &device->children, node)
533 acpi_pci_bridge_scan(child);
534
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700535 /* Indicate support for various _OSC capabilities. */
536 if (pci_ext_cfg_avail(root->bus->self))
537 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700538 if (pcie_aspm_enabled())
539 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
540 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700541 if (pci_msi_enabled())
542 flags |= OSC_MSI_SUPPORT;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700543 if (flags != base_flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900544 acpi_pci_osc_support(root, flags);
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700545
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100546 pci_acpi_add_bus_pm_notifier(device, root->bus);
547 if (device->wakeup.flags.run_wake)
548 device_set_run_wake(root->bus->bridge, true);
549
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600550 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600552end:
553 if (!list_empty(&root->node))
554 list_del(&root->node);
555 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400556 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Len Brown4be44fc2005-08-05 00:44:28 -0400559static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700560{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600561 struct acpi_pci_root *root = acpi_driver_data(device);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700562
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600563 pci_bus_add_devices(root->bus);
564 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700565}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Len Brown4be44fc2005-08-05 00:44:28 -0400567static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600569 struct acpi_pci_root *root = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100571 device_set_run_wake(root->bus->bridge, false);
572 pci_acpi_remove_bus_pm_notifier(device);
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400575 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Len Brown4be44fc2005-08-05 00:44:28 -0400578static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Bjorn Helgaas7bc5e3f2010-02-23 10:24:41 -0700583 pci_acpi_crs_quirks();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400585 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Patrick Mocheld550d982006-06-27 00:41:40 -0400587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590subsys_initcall(acpi_pci_root_init);