blob: 4fb7472054188fb7c953fee3bd5c8ffb3219836f [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
64struct acpi_pci_root {
Len Brown4be44fc2005-08-05 00:44:28 -040065 struct list_head node;
Patrick Mochel32917e52006-05-19 16:54:39 -040066 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040067 struct acpi_pci_id id;
68 struct pci_bus *bus;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090069
70 u32 osc_support_set; /* _OSC state of support bits */
71 u32 osc_control_set; /* _OSC state of control bits */
72 u32 osc_control_qry; /* the latest _OSC query result */
73
74 u32 osc_queried:1; /* has _OSC control been queried? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
77static LIST_HEAD(acpi_pci_roots);
78
79static struct acpi_pci_driver *sub_driver;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090080static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82int acpi_pci_register_driver(struct acpi_pci_driver *driver)
83{
84 int n = 0;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060085 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 struct acpi_pci_driver **pptr = &sub_driver;
88 while (*pptr)
89 pptr = &(*pptr)->next;
90 *pptr = driver;
91
92 if (!driver->add)
93 return 0;
94
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060095 list_for_each_entry(root, &acpi_pci_roots, node) {
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040096 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 n++;
98 }
99
100 return n;
101}
Len Brown4be44fc2005-08-05 00:44:28 -0400102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103EXPORT_SYMBOL(acpi_pci_register_driver);
104
105void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
106{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600107 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 struct acpi_pci_driver **pptr = &sub_driver;
110 while (*pptr) {
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800111 if (*pptr == driver)
112 break;
113 pptr = &(*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800115 BUG_ON(!*pptr);
116 *pptr = (*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (!driver->remove)
119 return;
120
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600121 list_for_each_entry(root, &acpi_pci_roots, node)
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400122 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
Len Brown4be44fc2005-08-05 00:44:28 -0400124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125EXPORT_SYMBOL(acpi_pci_unregister_driver);
126
Justin Chend91a0072006-12-06 10:17:10 -0700127acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
128{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600129 struct acpi_pci_root *root;
Justin Chend91a0072006-12-06 10:17:10 -0700130
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600131 list_for_each_entry(root, &acpi_pci_roots, node)
132 if ((root->id.segment == (u16) seg) && (root->id.bus == (u16) bus))
133 return root->device->handle;
Justin Chend91a0072006-12-06 10:17:10 -0700134 return NULL;
135}
136
137EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400140get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200142 int *busnr = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct acpi_resource_address64 address;
144
Bob Moore50eca3e2005-09-30 19:03:00 -0400145 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
146 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
147 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return AE_OK;
149
150 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400151 if ((address.address_length > 0) &&
152 (address.resource_type == ACPI_BUS_NUMBER_RANGE))
Bob Moore50eca3e2005-09-30 19:03:00 -0400153 *busnr = address.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return AE_OK;
156}
157
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600158static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
159 unsigned long long *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 acpi_status status;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600162 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600164 busnum = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400165 status =
166 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600167 get_root_bridge_busnr_callback, &busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (ACPI_FAILURE(status))
169 return status;
170 /* Check if we really get a bus number from _CRS */
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600171 if (busnum == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return AE_ERROR;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600173 *bus = busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return AE_OK;
175}
176
Rui Zhang2786f6e2006-12-21 02:21:13 -0500177static void acpi_pci_bridge_scan(struct acpi_device *device)
178{
179 int status;
180 struct acpi_device *child = NULL;
181
182 if (device->flags.bus_address)
183 if (device->parent && device->parent->ops.bind) {
184 status = device->parent->ops.bind(device);
185 if (!status) {
186 list_for_each_entry(child, &device->children, node)
187 acpi_pci_bridge_scan(child);
188 }
189 }
190}
191
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900192static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
193 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
194
195static acpi_status acpi_pci_run_osc(acpi_handle handle,
196 const u32 *capbuf, u32 *retval)
197{
198 acpi_status status;
199 struct acpi_object_list input;
200 union acpi_object in_params[4];
201 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
202 union acpi_object *out_obj;
203 u32 errors;
204
205 /* Setting up input parameters */
206 input.count = 4;
207 input.pointer = in_params;
208 in_params[0].type = ACPI_TYPE_BUFFER;
209 in_params[0].buffer.length = 16;
210 in_params[0].buffer.pointer = OSC_UUID;
211 in_params[1].type = ACPI_TYPE_INTEGER;
212 in_params[1].integer.value = 1;
213 in_params[2].type = ACPI_TYPE_INTEGER;
214 in_params[2].integer.value = 3;
215 in_params[3].type = ACPI_TYPE_BUFFER;
216 in_params[3].buffer.length = 12;
217 in_params[3].buffer.pointer = (u8 *)capbuf;
218
219 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
220 if (ACPI_FAILURE(status))
221 return status;
222
223 if (!output.length)
224 return AE_NULL_OBJECT;
225
226 out_obj = output.pointer;
227 if (out_obj->type != ACPI_TYPE_BUFFER) {
228 printk(KERN_DEBUG "_OSC evaluation returned wrong type\n");
229 status = AE_TYPE;
230 goto out_kfree;
231 }
232 /* Need to ignore the bit0 in result code */
233 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
234 if (errors) {
235 if (errors & OSC_REQUEST_ERROR)
236 printk(KERN_DEBUG "_OSC request failed\n");
237 if (errors & OSC_INVALID_UUID_ERROR)
238 printk(KERN_DEBUG "_OSC invalid UUID\n");
239 if (errors & OSC_INVALID_REVISION_ERROR)
240 printk(KERN_DEBUG "_OSC invalid revision\n");
241 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
242 if (capbuf[OSC_QUERY_TYPE] & OSC_QUERY_ENABLE)
243 goto out_success;
244 printk(KERN_DEBUG
245 "Firmware did not grant requested _OSC control\n");
246 status = AE_SUPPORT;
247 goto out_kfree;
248 }
249 status = AE_ERROR;
250 goto out_kfree;
251 }
252out_success:
253 *retval = *((u32 *)(out_obj->buffer.pointer + 8));
254 status = AE_OK;
255
256out_kfree:
257 kfree(output.pointer);
258 return status;
259}
260
261static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
262{
263 acpi_status status;
264 u32 support_set, result, capbuf[3];
265
266 /* do _OSC query for all possible controls */
267 support_set = root->osc_support_set | (flags & OSC_SUPPORT_MASKS);
268 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
269 capbuf[OSC_SUPPORT_TYPE] = support_set;
270 capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
271
272 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
273 if (ACPI_SUCCESS(status)) {
274 root->osc_support_set = support_set;
275 root->osc_control_qry = result;
276 root->osc_queried = 1;
277 }
278 return status;
279}
280
281static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
282{
283 acpi_status status;
284 acpi_handle tmp;
285
286 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
287 if (ACPI_FAILURE(status))
288 return status;
289 mutex_lock(&osc_lock);
290 status = acpi_pci_query_osc(root, flags);
291 mutex_unlock(&osc_lock);
292 return status;
293}
294
295static struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
296{
297 struct acpi_pci_root *root;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600298
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900299 list_for_each_entry(root, &acpi_pci_roots, node) {
300 if (root->device->handle == handle)
301 return root;
302 }
303 return NULL;
304}
305
306/**
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900307 * acpi_pci_osc_control_set - commit requested control to Firmware
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900308 * @handle: acpi_handle for the target ACPI object
309 * @flags: driver's requested control bits
310 *
311 * Attempt to take control from Firmware on requested control bits.
312 **/
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900313acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900314{
315 acpi_status status;
316 u32 control_req, result, capbuf[3];
317 acpi_handle tmp;
318 struct acpi_pci_root *root;
319
320 status = acpi_get_handle(handle, "_OSC", &tmp);
321 if (ACPI_FAILURE(status))
322 return status;
323
324 control_req = (flags & OSC_CONTROL_MASKS);
325 if (!control_req)
326 return AE_TYPE;
327
328 root = acpi_pci_find_root(handle);
329 if (!root)
330 return AE_NOT_EXIST;
331
332 mutex_lock(&osc_lock);
333 /* No need to evaluate _OSC if the control was already granted. */
334 if ((root->osc_control_set & control_req) == control_req)
335 goto out;
336
337 /* Need to query controls first before requesting them */
338 if (!root->osc_queried) {
339 status = acpi_pci_query_osc(root, root->osc_support_set);
340 if (ACPI_FAILURE(status))
341 goto out;
342 }
343 if ((root->osc_control_qry & control_req) != control_req) {
344 printk(KERN_DEBUG
345 "Firmware did not grant requested _OSC control\n");
346 status = AE_SUPPORT;
347 goto out;
348 }
349
350 capbuf[OSC_QUERY_TYPE] = 0;
351 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
352 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
353 status = acpi_pci_run_osc(handle, capbuf, &result);
354 if (ACPI_SUCCESS(status))
355 root->osc_control_set = result;
356out:
357 mutex_unlock(&osc_lock);
358 return status;
359}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900360EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900361
Sam Ravnborgb5678a32008-02-17 13:23:03 +0100362static int __devinit acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600364 unsigned long long segment, bus;
365 acpi_status status;
366 int result;
367 struct acpi_pci_root *root;
368 acpi_handle handle;
Rui Zhang2786f6e2006-12-21 02:21:13 -0500369 struct acpi_device *child;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700370 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600372 segment = 0;
373 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
374 &segment);
375 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
376 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
377 return -ENODEV;
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600380 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
381 bus = 0;
382 status = try_get_root_bridge_busnr(device->handle, &bus);
383 if (ACPI_FAILURE(status)) {
384 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
385 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
386 printk(KERN_ERR PREFIX
387 "no bus number in _CRS and can't evaluate _BBN\n");
388 return -ENODEV;
389 }
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Burman Yan36bcbec2006-12-19 12:56:11 -0800392 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -0400394 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600396 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400397 root->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
399 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700400 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 device->ops.bind = acpi_pci_bind;
403
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700404 /*
405 * All supported architectures that use ACPI have support for
406 * PCI domains, so we indicate this in _OSC support capabilities.
407 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700408 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900409 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /*
412 * Device & Function
413 * -----------------
414 * Obtained from _ADR (which has already been evaluated for us).
415 */
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600416 root->id.segment = segment & 0xFFFF;
417 root->id.bus = bus & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 root->id.device = device->pnp.bus_address >> 16;
419 root->id.function = device->pnp.bus_address & 0xFFFF;
420
421 /*
422 * TBD: Need PCI interface for enumeration/configuration of roots.
423 */
424
Len Brown4be44fc2005-08-05 00:44:28 -0400425 /* TBD: Locking */
426 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n",
429 acpi_device_name(device), acpi_device_bid(device),
430 root->id.segment, root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /*
433 * Scan the Root Bridge
434 * --------------------
435 * Must do this prior to any attempt to bind the root device, as the
436 * PCI namespace does not get created until this call is made (and
437 * thus the root bridge's pci_dev does not exist).
438 */
439 root->bus = pci_acpi_scan_root(device, root->id.segment, root->id.bus);
440 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400441 printk(KERN_ERR PREFIX
442 "Bus %04x:%02x not present in PCI namespace\n",
443 root->id.segment, root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 result = -ENODEV;
445 goto end;
446 }
447
448 /*
449 * Attach ACPI-PCI Context
450 * -----------------------
451 * Thus binding the ACPI and PCI devices.
452 */
453 result = acpi_pci_bind_root(device, &root->id, root->bus);
454 if (result)
455 goto end;
456
457 /*
458 * PCI Routing Table
459 * -----------------
460 * Evaluate and parse _PRT, if exists.
461 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400462 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (ACPI_SUCCESS(status))
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400464 result = acpi_pci_irq_add_prt(device->handle, root->id.segment,
Len Brown4be44fc2005-08-05 00:44:28 -0400465 root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Rui Zhang2786f6e2006-12-21 02:21:13 -0500467 /*
468 * Scan and bind all _ADR-Based Devices
469 */
470 list_for_each_entry(child, &device->children, node)
471 acpi_pci_bridge_scan(child);
472
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700473 /* Indicate support for various _OSC capabilities. */
474 if (pci_ext_cfg_avail(root->bus->self))
475 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700476 if (pcie_aspm_enabled())
477 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
478 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700479 if (pci_msi_enabled())
480 flags |= OSC_MSI_SUPPORT;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700481 if (flags != base_flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900482 acpi_pci_osc_support(root, flags);
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700483
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600486end:
487 if (!list_empty(&root->node))
488 list_del(&root->node);
489 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400490 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Len Brown4be44fc2005-08-05 00:44:28 -0400493static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700494{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600495 struct acpi_pci_root *root = acpi_driver_data(device);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700496
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600497 pci_bus_add_devices(root->bus);
498 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700499}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Len Brown4be44fc2005-08-05 00:44:28 -0400501static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600503 struct acpi_pci_root *root = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Len Brown4be44fc2005-08-05 00:44:28 -0400509static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400515 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Patrick Mocheld550d982006-06-27 00:41:40 -0400517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520subsys_initcall(acpi_pci_root_init);