blob: 31b961c2f22f483f61222ac75a426ca2b701a367 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050040ACPI_MODULE_NAME("pci_root");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define ACPI_PCI_ROOT_CLASS "pci_bridge"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Len Brown4be44fc2005-08-05 00:44:28 -040043static int acpi_pci_root_add(struct acpi_device *device);
44static int acpi_pci_root_remove(struct acpi_device *device, int type);
45static int acpi_pci_root_start(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Thomas Renninger1ba90e32007-07-23 14:44:41 +020047static struct acpi_device_id root_device_ids[] = {
48 {"PNP0A03", 0},
49 {"", 0},
50};
51MODULE_DEVICE_TABLE(acpi, root_device_ids);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static struct acpi_driver acpi_pci_root_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050054 .name = "pci_root",
Len Brown4be44fc2005-08-05 00:44:28 -040055 .class = ACPI_PCI_ROOT_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020056 .ids = root_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040057 .ops = {
58 .add = acpi_pci_root_add,
59 .remove = acpi_pci_root_remove,
60 .start = acpi_pci_root_start,
61 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static LIST_HEAD(acpi_pci_roots);
65
66static struct acpi_pci_driver *sub_driver;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090067static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69int acpi_pci_register_driver(struct acpi_pci_driver *driver)
70{
71 int n = 0;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060072 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 struct acpi_pci_driver **pptr = &sub_driver;
75 while (*pptr)
76 pptr = &(*pptr)->next;
77 *pptr = driver;
78
79 if (!driver->add)
80 return 0;
81
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060082 list_for_each_entry(root, &acpi_pci_roots, node) {
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040083 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 n++;
85 }
86
87 return n;
88}
Len Brown4be44fc2005-08-05 00:44:28 -040089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090EXPORT_SYMBOL(acpi_pci_register_driver);
91
92void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
93{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060094 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 struct acpi_pci_driver **pptr = &sub_driver;
97 while (*pptr) {
Akinobu Mitaf10bb252006-12-19 12:56:09 -080098 if (*pptr == driver)
99 break;
100 pptr = &(*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800102 BUG_ON(!*pptr);
103 *pptr = (*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 if (!driver->remove)
106 return;
107
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600108 list_for_each_entry(root, &acpi_pci_roots, node)
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400109 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
Len Brown4be44fc2005-08-05 00:44:28 -0400111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112EXPORT_SYMBOL(acpi_pci_unregister_driver);
113
Justin Chend91a0072006-12-06 10:17:10 -0700114acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
115{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600116 struct acpi_pci_root *root;
Justin Chend91a0072006-12-06 10:17:10 -0700117
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600118 list_for_each_entry(root, &acpi_pci_roots, node)
Bjorn Helgaas07054952009-06-18 14:47:07 -0600119 if ((root->segment == (u16) seg) && (root->bus_nr == (u16) bus))
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600120 return root->device->handle;
Justin Chend91a0072006-12-06 10:17:10 -0700121 return NULL;
122}
123
124EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
125
Alexander Chiang27558202009-06-10 19:55:14 +0000126/**
127 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
128 * @handle - the ACPI CA node in question.
129 *
130 * Note: we could make this API take a struct acpi_device * instead, but
131 * for now, it's more convenient to operate on an acpi_handle.
132 */
133int acpi_is_root_bridge(acpi_handle handle)
134{
135 int ret;
136 struct acpi_device *device;
137
138 ret = acpi_bus_get_device(handle, &device);
139 if (ret)
140 return 0;
141
142 ret = acpi_match_device_ids(device, root_device_ids);
143 if (ret)
144 return 0;
145 else
146 return 1;
147}
148EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400151get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200153 int *busnr = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct acpi_resource_address64 address;
155
Bob Moore50eca3e2005-09-30 19:03:00 -0400156 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
157 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
158 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return AE_OK;
160
161 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400162 if ((address.address_length > 0) &&
163 (address.resource_type == ACPI_BUS_NUMBER_RANGE))
Bob Moore50eca3e2005-09-30 19:03:00 -0400164 *busnr = address.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return AE_OK;
167}
168
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600169static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
170 unsigned long long *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 acpi_status status;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600173 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600175 busnum = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400176 status =
177 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600178 get_root_bridge_busnr_callback, &busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (ACPI_FAILURE(status))
180 return status;
181 /* Check if we really get a bus number from _CRS */
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600182 if (busnum == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return AE_ERROR;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600184 *bus = busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return AE_OK;
186}
187
Rui Zhang2786f6e2006-12-21 02:21:13 -0500188static void acpi_pci_bridge_scan(struct acpi_device *device)
189{
190 int status;
191 struct acpi_device *child = NULL;
192
193 if (device->flags.bus_address)
194 if (device->parent && device->parent->ops.bind) {
195 status = device->parent->ops.bind(device);
196 if (!status) {
197 list_for_each_entry(child, &device->children, node)
198 acpi_pci_bridge_scan(child);
199 }
200 }
201}
202
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900203static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
204 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
205
206static acpi_status acpi_pci_run_osc(acpi_handle handle,
207 const u32 *capbuf, u32 *retval)
208{
209 acpi_status status;
210 struct acpi_object_list input;
211 union acpi_object in_params[4];
212 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
213 union acpi_object *out_obj;
214 u32 errors;
215
216 /* Setting up input parameters */
217 input.count = 4;
218 input.pointer = in_params;
219 in_params[0].type = ACPI_TYPE_BUFFER;
220 in_params[0].buffer.length = 16;
221 in_params[0].buffer.pointer = OSC_UUID;
222 in_params[1].type = ACPI_TYPE_INTEGER;
223 in_params[1].integer.value = 1;
224 in_params[2].type = ACPI_TYPE_INTEGER;
225 in_params[2].integer.value = 3;
226 in_params[3].type = ACPI_TYPE_BUFFER;
227 in_params[3].buffer.length = 12;
228 in_params[3].buffer.pointer = (u8 *)capbuf;
229
230 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
231 if (ACPI_FAILURE(status))
232 return status;
233
234 if (!output.length)
235 return AE_NULL_OBJECT;
236
237 out_obj = output.pointer;
238 if (out_obj->type != ACPI_TYPE_BUFFER) {
239 printk(KERN_DEBUG "_OSC evaluation returned wrong type\n");
240 status = AE_TYPE;
241 goto out_kfree;
242 }
243 /* Need to ignore the bit0 in result code */
244 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
245 if (errors) {
246 if (errors & OSC_REQUEST_ERROR)
247 printk(KERN_DEBUG "_OSC request failed\n");
248 if (errors & OSC_INVALID_UUID_ERROR)
249 printk(KERN_DEBUG "_OSC invalid UUID\n");
250 if (errors & OSC_INVALID_REVISION_ERROR)
251 printk(KERN_DEBUG "_OSC invalid revision\n");
252 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
253 if (capbuf[OSC_QUERY_TYPE] & OSC_QUERY_ENABLE)
254 goto out_success;
255 printk(KERN_DEBUG
256 "Firmware did not grant requested _OSC control\n");
257 status = AE_SUPPORT;
258 goto out_kfree;
259 }
260 status = AE_ERROR;
261 goto out_kfree;
262 }
263out_success:
264 *retval = *((u32 *)(out_obj->buffer.pointer + 8));
265 status = AE_OK;
266
267out_kfree:
268 kfree(output.pointer);
269 return status;
270}
271
272static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
273{
274 acpi_status status;
275 u32 support_set, result, capbuf[3];
276
277 /* do _OSC query for all possible controls */
278 support_set = root->osc_support_set | (flags & OSC_SUPPORT_MASKS);
279 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
280 capbuf[OSC_SUPPORT_TYPE] = support_set;
281 capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
282
283 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
284 if (ACPI_SUCCESS(status)) {
285 root->osc_support_set = support_set;
286 root->osc_control_qry = result;
287 root->osc_queried = 1;
288 }
289 return status;
290}
291
292static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
293{
294 acpi_status status;
295 acpi_handle tmp;
296
297 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
298 if (ACPI_FAILURE(status))
299 return status;
300 mutex_lock(&osc_lock);
301 status = acpi_pci_query_osc(root, flags);
302 mutex_unlock(&osc_lock);
303 return status;
304}
305
Alex Chiang76d56de2009-07-23 17:03:00 -0600306struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900307{
308 struct acpi_pci_root *root;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600309
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900310 list_for_each_entry(root, &acpi_pci_roots, node) {
311 if (root->device->handle == handle)
312 return root;
313 }
314 return NULL;
315}
Alex Chiang76d56de2009-07-23 17:03:00 -0600316EXPORT_SYMBOL_GPL(acpi_pci_find_root);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900317
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000318struct acpi_handle_node {
319 struct list_head node;
320 acpi_handle handle;
321};
322
323/**
324 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
325 * @handle: the handle in question
326 *
327 * Given an ACPI CA handle, the desired PCI device is located in the
328 * list of PCI devices.
329 *
330 * If the device is found, its reference count is increased and this
331 * function returns a pointer to its data structure. The caller must
332 * decrement the reference count by calling pci_dev_put().
333 * If no device is found, %NULL is returned.
334 */
335struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
336{
337 int dev, fn;
338 unsigned long long adr;
339 acpi_status status;
340 acpi_handle phandle;
341 struct pci_bus *pbus;
342 struct pci_dev *pdev = NULL;
343 struct acpi_handle_node *node, *tmp;
344 struct acpi_pci_root *root;
345 LIST_HEAD(device_list);
346
347 /*
348 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
349 */
350 phandle = handle;
351 while (!acpi_is_root_bridge(phandle)) {
352 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
353 if (!node)
354 goto out;
355
356 INIT_LIST_HEAD(&node->node);
357 node->handle = phandle;
358 list_add(&node->node, &device_list);
359
360 status = acpi_get_parent(phandle, &phandle);
361 if (ACPI_FAILURE(status))
362 goto out;
363 }
364
365 root = acpi_pci_find_root(phandle);
366 if (!root)
367 goto out;
368
369 pbus = root->bus;
370
371 /*
372 * Now, walk back down the PCI device tree until we return to our
373 * original handle. Assumes that everything between the PCI root
374 * bridge and the device we're looking for must be a P2P bridge.
375 */
376 list_for_each_entry(node, &device_list, node) {
377 acpi_handle hnd = node->handle;
378 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
379 if (ACPI_FAILURE(status))
380 goto out;
381 dev = (adr >> 16) & 0xffff;
382 fn = adr & 0xffff;
383
384 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
Troy Moure412af972009-06-25 17:05:35 -0600385 if (!pdev || hnd == handle)
Alexander Chiang2f7bbce2009-06-10 19:55:20 +0000386 break;
387
388 pbus = pdev->subordinate;
389 pci_dev_put(pdev);
390 }
391out:
392 list_for_each_entry_safe(node, tmp, &device_list, node)
393 kfree(node);
394
395 return pdev;
396}
397EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
398
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900399/**
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900400 * acpi_pci_osc_control_set - commit requested control to Firmware
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900401 * @handle: acpi_handle for the target ACPI object
402 * @flags: driver's requested control bits
403 *
404 * Attempt to take control from Firmware on requested control bits.
405 **/
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900406acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900407{
408 acpi_status status;
409 u32 control_req, result, capbuf[3];
410 acpi_handle tmp;
411 struct acpi_pci_root *root;
412
413 status = acpi_get_handle(handle, "_OSC", &tmp);
414 if (ACPI_FAILURE(status))
415 return status;
416
417 control_req = (flags & OSC_CONTROL_MASKS);
418 if (!control_req)
419 return AE_TYPE;
420
421 root = acpi_pci_find_root(handle);
422 if (!root)
423 return AE_NOT_EXIST;
424
425 mutex_lock(&osc_lock);
426 /* No need to evaluate _OSC if the control was already granted. */
427 if ((root->osc_control_set & control_req) == control_req)
428 goto out;
429
430 /* Need to query controls first before requesting them */
431 if (!root->osc_queried) {
432 status = acpi_pci_query_osc(root, root->osc_support_set);
433 if (ACPI_FAILURE(status))
434 goto out;
435 }
436 if ((root->osc_control_qry & control_req) != control_req) {
437 printk(KERN_DEBUG
438 "Firmware did not grant requested _OSC control\n");
439 status = AE_SUPPORT;
440 goto out;
441 }
442
443 capbuf[OSC_QUERY_TYPE] = 0;
444 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
445 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
446 status = acpi_pci_run_osc(handle, capbuf, &result);
447 if (ACPI_SUCCESS(status))
448 root->osc_control_set = result;
449out:
450 mutex_unlock(&osc_lock);
451 return status;
452}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900453EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900454
Sam Ravnborgb5678a32008-02-17 13:23:03 +0100455static int __devinit acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600457 unsigned long long segment, bus;
458 acpi_status status;
459 int result;
460 struct acpi_pci_root *root;
461 acpi_handle handle;
Rui Zhang2786f6e2006-12-21 02:21:13 -0500462 struct acpi_device *child;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700463 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600465 segment = 0;
466 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
467 &segment);
468 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
469 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
470 return -ENODEV;
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600473 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
474 bus = 0;
475 status = try_get_root_bridge_busnr(device->handle, &bus);
476 if (ACPI_FAILURE(status)) {
477 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
478 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
479 printk(KERN_ERR PREFIX
480 "no bus number in _CRS and can't evaluate _BBN\n");
481 return -ENODEV;
482 }
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Burman Yan36bcbec2006-12-19 12:56:11 -0800485 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -0400487 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600489 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400490 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600491 root->segment = segment & 0xFFFF;
492 root->bus_nr = bus & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
494 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700495 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700497 /*
498 * All supported architectures that use ACPI have support for
499 * PCI domains, so we indicate this in _OSC support capabilities.
500 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700501 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900502 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /*
505 * TBD: Need PCI interface for enumeration/configuration of roots.
506 */
507
Len Brown4be44fc2005-08-05 00:44:28 -0400508 /* TBD: Locking */
509 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Len Brown4be44fc2005-08-05 00:44:28 -0400511 printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n",
512 acpi_device_name(device), acpi_device_bid(device),
Bjorn Helgaas07054952009-06-18 14:47:07 -0600513 root->segment, root->bus_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /*
516 * Scan the Root Bridge
517 * --------------------
518 * Must do this prior to any attempt to bind the root device, as the
519 * PCI namespace does not get created until this call is made (and
520 * thus the root bridge's pci_dev does not exist).
521 */
Bjorn Helgaas07054952009-06-18 14:47:07 -0600522 root->bus = pci_acpi_scan_root(device, segment, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400524 printk(KERN_ERR PREFIX
525 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas07054952009-06-18 14:47:07 -0600526 root->segment, root->bus_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 result = -ENODEV;
528 goto end;
529 }
530
531 /*
532 * Attach ACPI-PCI Context
533 * -----------------------
534 * Thus binding the ACPI and PCI devices.
535 */
Alexander Chiang499650d2009-06-10 19:55:30 +0000536 result = acpi_pci_bind_root(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (result)
538 goto end;
539
540 /*
541 * PCI Routing Table
542 * -----------------
543 * Evaluate and parse _PRT, if exists.
544 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400545 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (ACPI_SUCCESS(status))
Alexander Chiang859a3f82009-06-10 19:55:35 +0000547 result = acpi_pci_irq_add_prt(device->handle, root->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Rui Zhang2786f6e2006-12-21 02:21:13 -0500549 /*
550 * Scan and bind all _ADR-Based Devices
551 */
552 list_for_each_entry(child, &device->children, node)
553 acpi_pci_bridge_scan(child);
554
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700555 /* Indicate support for various _OSC capabilities. */
556 if (pci_ext_cfg_avail(root->bus->self))
557 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700558 if (pcie_aspm_enabled())
559 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
560 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700561 if (pci_msi_enabled())
562 flags |= OSC_MSI_SUPPORT;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700563 if (flags != base_flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900564 acpi_pci_osc_support(root, flags);
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700565
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600568end:
569 if (!list_empty(&root->node))
570 list_del(&root->node);
571 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400572 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700576{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600577 struct acpi_pci_root *root = acpi_driver_data(device);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700578
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600579 pci_bus_add_devices(root->bus);
580 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700581}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Len Brown4be44fc2005-08-05 00:44:28 -0400583static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600585 struct acpi_pci_root *root = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Len Brown4be44fc2005-08-05 00:44:28 -0400591static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400597 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Patrick Mocheld550d982006-06-27 00:41:40 -0400599 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602subsys_initcall(acpi_pci_root_init);