blob: 1af808171d4682be716b0e7613980ed0c3fe8dc8 [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>
33#include <linux/pci.h>
Andrew Patterson990a7ac2008-11-10 15:30:45 -070034#include <linux/pci-acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/acpi.h>
36#include <acpi/acpi_bus.h>
37#include <acpi/acpi_drivers.h>
38
Len Browna192a952009-07-28 16:45:54 -040039#define PREFIX "ACPI: "
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050042ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Len Brown4be44fc2005-08-05 00:44:28 -040045static int acpi_pci_root_add(struct acpi_device *device);
46static int acpi_pci_root_remove(struct acpi_device *device, int type);
47static int acpi_pci_root_start(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Thomas Renninger1ba90e32007-07-23 14:44:41 +020049static struct acpi_device_id root_device_ids[] = {
50 {"PNP0A03", 0},
51 {"", 0},
52};
53MODULE_DEVICE_TABLE(acpi, root_device_ids);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static struct acpi_driver acpi_pci_root_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -050056 .name = "pci_root",
Len Brown4be44fc2005-08-05 00:44:28 -040057 .class = ACPI_PCI_ROOT_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020058 .ids = root_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040059 .ops = {
60 .add = acpi_pci_root_add,
61 .remove = acpi_pci_root_remove,
62 .start = acpi_pci_root_start,
63 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static LIST_HEAD(acpi_pci_roots);
67
68static struct acpi_pci_driver *sub_driver;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090069static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71int acpi_pci_register_driver(struct acpi_pci_driver *driver)
72{
73 int n = 0;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060074 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 struct acpi_pci_driver **pptr = &sub_driver;
77 while (*pptr)
78 pptr = &(*pptr)->next;
79 *pptr = driver;
80
81 if (!driver->add)
82 return 0;
83
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060084 list_for_each_entry(root, &acpi_pci_roots, node) {
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040085 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 n++;
87 }
88
89 return n;
90}
Len Brown4be44fc2005-08-05 00:44:28 -040091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092EXPORT_SYMBOL(acpi_pci_register_driver);
93
94void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
95{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060096 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 struct acpi_pci_driver **pptr = &sub_driver;
99 while (*pptr) {
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800100 if (*pptr == driver)
101 break;
102 pptr = &(*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800104 BUG_ON(!*pptr);
105 *pptr = (*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (!driver->remove)
108 return;
109
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600110 list_for_each_entry(root, &acpi_pci_roots, node)
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400111 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
Len Brown4be44fc2005-08-05 00:44:28 -0400113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114EXPORT_SYMBOL(acpi_pci_unregister_driver);
115
Justin Chend91a0072006-12-06 10:17:10 -0700116acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
117{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600118 struct acpi_pci_root *root;
Justin Chend91a0072006-12-06 10:17:10 -0700119
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600120 list_for_each_entry(root, &acpi_pci_roots, node)
Bjorn Helgaas07054952009-06-18 14:47:07 -0600121 if ((root->segment == (u16) seg) && (root->bus_nr == (u16) bus))
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600122 return root->device->handle;
Justin Chend91a0072006-12-06 10:17:10 -0700123 return NULL;
124}
125
126EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
127
Alexander Chiang27558202009-06-10 19:55:14 +0000128/**
129 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
130 * @handle - the ACPI CA node in question.
131 *
132 * Note: we could make this API take a struct acpi_device * instead, but
133 * for now, it's more convenient to operate on an acpi_handle.
134 */
135int acpi_is_root_bridge(acpi_handle handle)
136{
137 int ret;
138 struct acpi_device *device;
139
140 ret = acpi_bus_get_device(handle, &device);
141 if (ret)
142 return 0;
143
144 ret = acpi_match_device_ids(device, root_device_ids);
145 if (ret)
146 return 0;
147 else
148 return 1;
149}
150EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400153get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200155 int *busnr = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct acpi_resource_address64 address;
157
Bob Moore50eca3e2005-09-30 19:03:00 -0400158 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
159 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
160 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return AE_OK;
162
163 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400164 if ((address.address_length > 0) &&
165 (address.resource_type == ACPI_BUS_NUMBER_RANGE))
Bob Moore50eca3e2005-09-30 19:03:00 -0400166 *busnr = address.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 return AE_OK;
169}
170
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600171static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
172 unsigned long long *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 acpi_status status;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600175 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600177 busnum = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400178 status =
179 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600180 get_root_bridge_busnr_callback, &busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (ACPI_FAILURE(status))
182 return status;
183 /* Check if we really get a bus number from _CRS */
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600184 if (busnum == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return AE_ERROR;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600186 *bus = busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return AE_OK;
188}
189
Rui Zhang2786f6e2006-12-21 02:21:13 -0500190static void acpi_pci_bridge_scan(struct acpi_device *device)
191{
192 int status;
193 struct acpi_device *child = NULL;
194
195 if (device->flags.bus_address)
196 if (device->parent && device->parent->ops.bind) {
197 status = device->parent->ops.bind(device);
198 if (!status) {
199 list_for_each_entry(child, &device->children, node)
200 acpi_pci_bridge_scan(child);
201 }
202 }
203}
204
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900205static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
206 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
207
208static acpi_status acpi_pci_run_osc(acpi_handle handle,
209 const u32 *capbuf, u32 *retval)
210{
211 acpi_status status;
212 struct acpi_object_list input;
213 union acpi_object in_params[4];
214 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
215 union acpi_object *out_obj;
216 u32 errors;
217
218 /* Setting up input parameters */
219 input.count = 4;
220 input.pointer = in_params;
221 in_params[0].type = ACPI_TYPE_BUFFER;
222 in_params[0].buffer.length = 16;
223 in_params[0].buffer.pointer = OSC_UUID;
224 in_params[1].type = ACPI_TYPE_INTEGER;
225 in_params[1].integer.value = 1;
226 in_params[2].type = ACPI_TYPE_INTEGER;
227 in_params[2].integer.value = 3;
228 in_params[3].type = ACPI_TYPE_BUFFER;
229 in_params[3].buffer.length = 12;
230 in_params[3].buffer.pointer = (u8 *)capbuf;
231
232 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
233 if (ACPI_FAILURE(status))
234 return status;
235
236 if (!output.length)
237 return AE_NULL_OBJECT;
238
239 out_obj = output.pointer;
240 if (out_obj->type != ACPI_TYPE_BUFFER) {
241 printk(KERN_DEBUG "_OSC evaluation returned wrong type\n");
242 status = AE_TYPE;
243 goto out_kfree;
244 }
245 /* Need to ignore the bit0 in result code */
246 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
247 if (errors) {
248 if (errors & OSC_REQUEST_ERROR)
249 printk(KERN_DEBUG "_OSC request failed\n");
250 if (errors & OSC_INVALID_UUID_ERROR)
251 printk(KERN_DEBUG "_OSC invalid UUID\n");
252 if (errors & OSC_INVALID_REVISION_ERROR)
253 printk(KERN_DEBUG "_OSC invalid revision\n");
254 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
255 if (capbuf[OSC_QUERY_TYPE] & OSC_QUERY_ENABLE)
256 goto out_success;
257 printk(KERN_DEBUG
258 "Firmware did not grant requested _OSC control\n");
259 status = AE_SUPPORT;
260 goto out_kfree;
261 }
262 status = AE_ERROR;
263 goto out_kfree;
264 }
265out_success:
266 *retval = *((u32 *)(out_obj->buffer.pointer + 8));
267 status = AE_OK;
268
269out_kfree:
270 kfree(output.pointer);
271 return status;
272}
273
274static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
275{
276 acpi_status status;
277 u32 support_set, result, capbuf[3];
278
279 /* do _OSC query for all possible controls */
280 support_set = root->osc_support_set | (flags & OSC_SUPPORT_MASKS);
281 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
282 capbuf[OSC_SUPPORT_TYPE] = support_set;
283 capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
284
285 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
286 if (ACPI_SUCCESS(status)) {
287 root->osc_support_set = support_set;
288 root->osc_control_qry = result;
289 root->osc_queried = 1;
290 }
291 return status;
292}
293
294static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
295{
296 acpi_status status;
297 acpi_handle tmp;
298
299 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
300 if (ACPI_FAILURE(status))
301 return status;
302 mutex_lock(&osc_lock);
303 status = acpi_pci_query_osc(root, flags);
304 mutex_unlock(&osc_lock);
305 return status;
306}
307
Alex Chiang76d56de2009-07-23 17:03:00 -0600308struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900309{
310 struct acpi_pci_root *root;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600311
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900312 list_for_each_entry(root, &acpi_pci_roots, node) {
313 if (root->device->handle == handle)
314 return root;
315 }
316 return NULL;
317}
Alex Chiang76d56de2009-07-23 17:03:00 -0600318EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900319
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000320struct acpi_handle_node {
321 struct list_head node;
322 acpi_handle handle;
323};
324
325/**
326 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
327 * @handle: the handle in question
328 *
329 * Given an ACPI CA handle, the desired PCI device is located in the
330 * list of PCI devices.
331 *
332 * If the device is found, its reference count is increased and this
333 * function returns a pointer to its data structure. The caller must
334 * decrement the reference count by calling pci_dev_put().
335 * If no device is found, %NULL is returned.
336 */
337struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
338{
339 int dev, fn;
340 unsigned long long adr;
341 acpi_status status;
342 acpi_handle phandle;
343 struct pci_bus *pbus;
344 struct pci_dev *pdev = NULL;
345 struct acpi_handle_node *node, *tmp;
346 struct acpi_pci_root *root;
347 LIST_HEAD(device_list);
348
349 /*
350 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
351 */
352 phandle = handle;
353 while (!acpi_is_root_bridge(phandle)) {
354 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
355 if (!node)
356 goto out;
357
358 INIT_LIST_HEAD(&node->node);
359 node->handle = phandle;
360 list_add(&node->node, &device_list);
361
362 status = acpi_get_parent(phandle, &phandle);
363 if (ACPI_FAILURE(status))
364 goto out;
365 }
366
367 root = acpi_pci_find_root(phandle);
368 if (!root)
369 goto out;
370
371 pbus = root->bus;
372
373 /*
374 * Now, walk back down the PCI device tree until we return to our
375 * original handle. Assumes that everything between the PCI root
376 * bridge and the device we're looking for must be a P2P bridge.
377 */
378 list_for_each_entry(node, &device_list, node) {
379 acpi_handle hnd = node->handle;
380 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
381 if (ACPI_FAILURE(status))
382 goto out;
383 dev = (adr >> 16) & 0xffff;
384 fn = adr & 0xffff;
385
386 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600387 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000388 break;
389
390 pbus = pdev->subordinate;
391 pci_dev_put(pdev);
Rafael J. Wysocki497fb542009-10-13 01:01:57 +0200392
393 /*
394 * This function may be called for a non-PCI device that has a
395 * PCI parent (eg. a disk under a PCI SATA controller). In that
396 * case pdev->subordinate will be NULL for the parent.
397 */
398 if (!pbus) {
399 dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n");
400 pdev = NULL;
401 break;
402 }
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000403 }
404out:
405 list_for_each_entry_safe(node, tmp, &device_list, node)
406 kfree(node);
407
408 return pdev;
409}
410EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
411
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900412/**
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900413 * acpi_pci_osc_control_set - commit requested control to Firmware
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900414 * @handle: acpi_handle for the target ACPI object
415 * @flags: driver's requested control bits
416 *
417 * Attempt to take control from Firmware on requested control bits.
418 **/
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900419acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900420{
421 acpi_status status;
422 u32 control_req, result, capbuf[3];
423 acpi_handle tmp;
424 struct acpi_pci_root *root;
425
426 status = acpi_get_handle(handle, "_OSC", &tmp);
427 if (ACPI_FAILURE(status))
428 return status;
429
430 control_req = (flags & OSC_CONTROL_MASKS);
431 if (!control_req)
432 return AE_TYPE;
433
434 root = acpi_pci_find_root(handle);
435 if (!root)
436 return AE_NOT_EXIST;
437
438 mutex_lock(&osc_lock);
439 /* No need to evaluate _OSC if the control was already granted. */
440 if ((root->osc_control_set & control_req) == control_req)
441 goto out;
442
443 /* Need to query controls first before requesting them */
444 if (!root->osc_queried) {
445 status = acpi_pci_query_osc(root, root->osc_support_set);
446 if (ACPI_FAILURE(status))
447 goto out;
448 }
449 if ((root->osc_control_qry & control_req) != control_req) {
450 printk(KERN_DEBUG
451 "Firmware did not grant requested _OSC control\n");
452 status = AE_SUPPORT;
453 goto out;
454 }
455
456 capbuf[OSC_QUERY_TYPE] = 0;
457 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
458 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
459 status = acpi_pci_run_osc(handle, capbuf, &result);
460 if (ACPI_SUCCESS(status))
461 root->osc_control_set = result;
462out:
463 mutex_unlock(&osc_lock);
464 return status;
465}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900466EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900467
Sam Ravnborgb5678a32008-02-17 13:23:03 +0100468static int __devinit acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600470 unsigned long long segment, bus;
471 acpi_status status;
472 int result;
473 struct acpi_pci_root *root;
474 acpi_handle handle;
Rui Zhang2786f6e2006-12-21 02:21:13 -0500475 struct acpi_device *child;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700476 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600478 segment = 0;
479 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
480 &segment);
481 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
482 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
483 return -ENODEV;
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600486 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
487 bus = 0;
488 status = try_get_root_bridge_busnr(device->handle, &bus);
489 if (ACPI_FAILURE(status)) {
490 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
491 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
492 printk(KERN_ERR PREFIX
493 "no bus number in _CRS and can't evaluate _BBN\n");
494 return -ENODEV;
495 }
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Burman Yan36bcbec2006-12-19 12:56:11 -0800498 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -0400500 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600502 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400503 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600504 root->segment = segment & 0xFFFF;
505 root->bus_nr = bus & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
507 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700508 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700510 /*
511 * All supported architectures that use ACPI have support for
512 * PCI domains, so we indicate this in _OSC support capabilities.
513 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700514 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900515 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /*
518 * TBD: Need PCI interface for enumeration/configuration of roots.
519 */
520
Len Brown4be44fc2005-08-05 00:44:28 -0400521 /* TBD: Locking */
522 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Len Brown4be44fc2005-08-05 00:44:28 -0400524 printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n",
525 acpi_device_name(device), acpi_device_bid(device),
Bjorn Helgaas07054952009-06-18 14:47:07 -0600526 root->segment, root->bus_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /*
529 * Scan the Root Bridge
530 * --------------------
531 * Must do this prior to any attempt to bind the root device, as the
532 * PCI namespace does not get created until this call is made (and
533 * thus the root bridge's pci_dev does not exist).
534 */
Bjorn Helgaas07054952009-06-18 14:47:07 -0600535 root->bus = pci_acpi_scan_root(device, segment, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400537 printk(KERN_ERR PREFIX
538 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas07054952009-06-18 14:47:07 -0600539 root->segment, root->bus_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 result = -ENODEV;
541 goto end;
542 }
543
544 /*
545 * Attach ACPI-PCI Context
546 * -----------------------
547 * Thus binding the ACPI and PCI devices.
548 */
Alexander Chiang499650d2009-06-10 19:55:30 +0000549 result = acpi_pci_bind_root(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (result)
551 goto end;
552
553 /*
554 * PCI Routing Table
555 * -----------------
556 * Evaluate and parse _PRT, if exists.
557 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400558 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (ACPI_SUCCESS(status))
Alexander Chiang859a3f82009-06-10 19:55:35 +0000560 result = acpi_pci_irq_add_prt(device->handle, root->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Rui Zhang2786f6e2006-12-21 02:21:13 -0500562 /*
563 * Scan and bind all _ADR-Based Devices
564 */
565 list_for_each_entry(child, &device->children, node)
566 acpi_pci_bridge_scan(child);
567
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700568 /* Indicate support for various _OSC capabilities. */
569 if (pci_ext_cfg_avail(root->bus->self))
570 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700571 if (pcie_aspm_enabled())
572 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
573 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700574 if (pci_msi_enabled())
575 flags |= OSC_MSI_SUPPORT;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700576 if (flags != base_flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900577 acpi_pci_osc_support(root, flags);
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700578
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600579 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600581end:
582 if (!list_empty(&root->node))
583 list_del(&root->node);
584 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400585 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Len Brown4be44fc2005-08-05 00:44:28 -0400588static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700589{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600590 struct acpi_pci_root *root = acpi_driver_data(device);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700591
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600592 pci_bus_add_devices(root->bus);
593 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700594}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Len Brown4be44fc2005-08-05 00:44:28 -0400596static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600598 struct acpi_pci_root *root = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Len Brown4be44fc2005-08-05 00:44:28 -0400604static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400610 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Patrick Mocheld550d982006-06-27 00:41:40 -0400612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615subsys_initcall(acpi_pci_root_init);