blob: e95b5ac2e609f8c8a73ec1f5ebaf6d8e0960c06c [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;
Bjorn Helgaas07054952009-06-18 14:47:07 -060066 struct acpi_device *device;
Len Brown4be44fc2005-08-05 00:44:28 -040067 struct pci_bus *bus;
Bjorn Helgaas07054952009-06-18 14:47:07 -060068 u16 segment;
69 u8 bus_nr;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090070
71 u32 osc_support_set; /* _OSC state of support bits */
72 u32 osc_control_set; /* _OSC state of control bits */
73 u32 osc_control_qry; /* the latest _OSC query result */
74
75 u32 osc_queried:1; /* has _OSC control been queried? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78static LIST_HEAD(acpi_pci_roots);
79
80static struct acpi_pci_driver *sub_driver;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +090081static DEFINE_MUTEX(osc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83int acpi_pci_register_driver(struct acpi_pci_driver *driver)
84{
85 int n = 0;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060086 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 struct acpi_pci_driver **pptr = &sub_driver;
89 while (*pptr)
90 pptr = &(*pptr)->next;
91 *pptr = driver;
92
93 if (!driver->add)
94 return 0;
95
Bjorn Helgaasc1aec832009-06-18 14:47:02 -060096 list_for_each_entry(root, &acpi_pci_roots, node) {
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040097 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 n++;
99 }
100
101 return n;
102}
Len Brown4be44fc2005-08-05 00:44:28 -0400103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104EXPORT_SYMBOL(acpi_pci_register_driver);
105
106void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
107{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600108 struct acpi_pci_root *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 struct acpi_pci_driver **pptr = &sub_driver;
111 while (*pptr) {
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800112 if (*pptr == driver)
113 break;
114 pptr = &(*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Akinobu Mitaf10bb252006-12-19 12:56:09 -0800116 BUG_ON(!*pptr);
117 *pptr = (*pptr)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 if (!driver->remove)
120 return;
121
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600122 list_for_each_entry(root, &acpi_pci_roots, node)
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400123 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
Len Brown4be44fc2005-08-05 00:44:28 -0400125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126EXPORT_SYMBOL(acpi_pci_unregister_driver);
127
Justin Chend91a0072006-12-06 10:17:10 -0700128acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
129{
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600130 struct acpi_pci_root *root;
Justin Chend91a0072006-12-06 10:17:10 -0700131
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600132 list_for_each_entry(root, &acpi_pci_roots, node)
Bjorn Helgaas07054952009-06-18 14:47:07 -0600133 if ((root->segment == (u16) seg) && (root->bus_nr == (u16) bus))
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600134 return root->device->handle;
Justin Chend91a0072006-12-06 10:17:10 -0700135 return NULL;
136}
137
138EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400141get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200143 int *busnr = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct acpi_resource_address64 address;
145
Bob Moore50eca3e2005-09-30 19:03:00 -0400146 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
147 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
148 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return AE_OK;
150
151 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400152 if ((address.address_length > 0) &&
153 (address.resource_type == ACPI_BUS_NUMBER_RANGE))
Bob Moore50eca3e2005-09-30 19:03:00 -0400154 *busnr = address.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 return AE_OK;
157}
158
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600159static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
160 unsigned long long *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 acpi_status status;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600163 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600165 busnum = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 status =
167 acpi_walk_resources(handle, METHOD_NAME__CRS,
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600168 get_root_bridge_busnr_callback, &busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (ACPI_FAILURE(status))
170 return status;
171 /* Check if we really get a bus number from _CRS */
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600172 if (busnum == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return AE_ERROR;
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600174 *bus = busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return AE_OK;
176}
177
Rui Zhang2786f6e2006-12-21 02:21:13 -0500178static void acpi_pci_bridge_scan(struct acpi_device *device)
179{
180 int status;
181 struct acpi_device *child = NULL;
182
183 if (device->flags.bus_address)
184 if (device->parent && device->parent->ops.bind) {
185 status = device->parent->ops.bind(device);
186 if (!status) {
187 list_for_each_entry(child, &device->children, node)
188 acpi_pci_bridge_scan(child);
189 }
190 }
191}
192
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900193static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
194 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
195
196static acpi_status acpi_pci_run_osc(acpi_handle handle,
197 const u32 *capbuf, u32 *retval)
198{
199 acpi_status status;
200 struct acpi_object_list input;
201 union acpi_object in_params[4];
202 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
203 union acpi_object *out_obj;
204 u32 errors;
205
206 /* Setting up input parameters */
207 input.count = 4;
208 input.pointer = in_params;
209 in_params[0].type = ACPI_TYPE_BUFFER;
210 in_params[0].buffer.length = 16;
211 in_params[0].buffer.pointer = OSC_UUID;
212 in_params[1].type = ACPI_TYPE_INTEGER;
213 in_params[1].integer.value = 1;
214 in_params[2].type = ACPI_TYPE_INTEGER;
215 in_params[2].integer.value = 3;
216 in_params[3].type = ACPI_TYPE_BUFFER;
217 in_params[3].buffer.length = 12;
218 in_params[3].buffer.pointer = (u8 *)capbuf;
219
220 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
221 if (ACPI_FAILURE(status))
222 return status;
223
224 if (!output.length)
225 return AE_NULL_OBJECT;
226
227 out_obj = output.pointer;
228 if (out_obj->type != ACPI_TYPE_BUFFER) {
229 printk(KERN_DEBUG "_OSC evaluation returned wrong type\n");
230 status = AE_TYPE;
231 goto out_kfree;
232 }
233 /* Need to ignore the bit0 in result code */
234 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
235 if (errors) {
236 if (errors & OSC_REQUEST_ERROR)
237 printk(KERN_DEBUG "_OSC request failed\n");
238 if (errors & OSC_INVALID_UUID_ERROR)
239 printk(KERN_DEBUG "_OSC invalid UUID\n");
240 if (errors & OSC_INVALID_REVISION_ERROR)
241 printk(KERN_DEBUG "_OSC invalid revision\n");
242 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
243 if (capbuf[OSC_QUERY_TYPE] & OSC_QUERY_ENABLE)
244 goto out_success;
245 printk(KERN_DEBUG
246 "Firmware did not grant requested _OSC control\n");
247 status = AE_SUPPORT;
248 goto out_kfree;
249 }
250 status = AE_ERROR;
251 goto out_kfree;
252 }
253out_success:
254 *retval = *((u32 *)(out_obj->buffer.pointer + 8));
255 status = AE_OK;
256
257out_kfree:
258 kfree(output.pointer);
259 return status;
260}
261
262static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
263{
264 acpi_status status;
265 u32 support_set, result, capbuf[3];
266
267 /* do _OSC query for all possible controls */
268 support_set = root->osc_support_set | (flags & OSC_SUPPORT_MASKS);
269 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
270 capbuf[OSC_SUPPORT_TYPE] = support_set;
271 capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
272
273 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
274 if (ACPI_SUCCESS(status)) {
275 root->osc_support_set = support_set;
276 root->osc_control_qry = result;
277 root->osc_queried = 1;
278 }
279 return status;
280}
281
282static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
283{
284 acpi_status status;
285 acpi_handle tmp;
286
287 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
288 if (ACPI_FAILURE(status))
289 return status;
290 mutex_lock(&osc_lock);
291 status = acpi_pci_query_osc(root, flags);
292 mutex_unlock(&osc_lock);
293 return status;
294}
295
296static struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
297{
298 struct acpi_pci_root *root;
Bjorn Helgaasc1aec832009-06-18 14:47:02 -0600299
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900300 list_for_each_entry(root, &acpi_pci_roots, node) {
301 if (root->device->handle == handle)
302 return root;
303 }
304 return NULL;
305}
306
307/**
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900308 * acpi_pci_osc_control_set - commit requested control to Firmware
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900309 * @handle: acpi_handle for the target ACPI object
310 * @flags: driver's requested control bits
311 *
312 * Attempt to take control from Firmware on requested control bits.
313 **/
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900314acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900315{
316 acpi_status status;
317 u32 control_req, result, capbuf[3];
318 acpi_handle tmp;
319 struct acpi_pci_root *root;
320
321 status = acpi_get_handle(handle, "_OSC", &tmp);
322 if (ACPI_FAILURE(status))
323 return status;
324
325 control_req = (flags & OSC_CONTROL_MASKS);
326 if (!control_req)
327 return AE_TYPE;
328
329 root = acpi_pci_find_root(handle);
330 if (!root)
331 return AE_NOT_EXIST;
332
333 mutex_lock(&osc_lock);
334 /* No need to evaluate _OSC if the control was already granted. */
335 if ((root->osc_control_set & control_req) == control_req)
336 goto out;
337
338 /* Need to query controls first before requesting them */
339 if (!root->osc_queried) {
340 status = acpi_pci_query_osc(root, root->osc_support_set);
341 if (ACPI_FAILURE(status))
342 goto out;
343 }
344 if ((root->osc_control_qry & control_req) != control_req) {
345 printk(KERN_DEBUG
346 "Firmware did not grant requested _OSC control\n");
347 status = AE_SUPPORT;
348 goto out;
349 }
350
351 capbuf[OSC_QUERY_TYPE] = 0;
352 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
353 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
354 status = acpi_pci_run_osc(handle, capbuf, &result);
355 if (ACPI_SUCCESS(status))
356 root->osc_control_set = result;
357out:
358 mutex_unlock(&osc_lock);
359 return status;
360}
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +0900361EXPORT_SYMBOL(acpi_pci_osc_control_set);
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900362
Sam Ravnborgb5678a32008-02-17 13:23:03 +0100363static int __devinit acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600365 unsigned long long segment, bus;
366 acpi_status status;
367 int result;
368 struct acpi_pci_root *root;
369 acpi_handle handle;
Rui Zhang2786f6e2006-12-21 02:21:13 -0500370 struct acpi_device *child;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700371 u32 flags, base_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600373 segment = 0;
374 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
375 &segment);
376 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
377 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
378 return -ENODEV;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600381 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
382 bus = 0;
383 status = try_get_root_bridge_busnr(device->handle, &bus);
384 if (ACPI_FAILURE(status)) {
385 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
386 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
387 printk(KERN_ERR PREFIX
388 "no bus number in _CRS and can't evaluate _BBN\n");
389 return -ENODEV;
390 }
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Burman Yan36bcbec2006-12-19 12:56:11 -0800393 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -0400395 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600397 INIT_LIST_HEAD(&root->node);
Patrick Mochel32917e52006-05-19 16:54:39 -0400398 root->device = device;
Bjorn Helgaas07054952009-06-18 14:47:07 -0600399 root->segment = segment & 0xFFFF;
400 root->bus_nr = bus & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
402 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700403 device->driver_data = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 device->ops.bind = acpi_pci_bind;
406
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700407 /*
408 * All supported architectures that use ACPI have support for
409 * PCI domains, so we indicate this in _OSC support capabilities.
410 */
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700411 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900412 acpi_pci_osc_support(root, flags);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * TBD: Need PCI interface for enumeration/configuration of roots.
416 */
417
Len Brown4be44fc2005-08-05 00:44:28 -0400418 /* TBD: Locking */
419 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Len Brown4be44fc2005-08-05 00:44:28 -0400421 printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n",
422 acpi_device_name(device), acpi_device_bid(device),
Bjorn Helgaas07054952009-06-18 14:47:07 -0600423 root->segment, root->bus_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 /*
426 * Scan the Root Bridge
427 * --------------------
428 * Must do this prior to any attempt to bind the root device, as the
429 * PCI namespace does not get created until this call is made (and
430 * thus the root bridge's pci_dev does not exist).
431 */
Bjorn Helgaas07054952009-06-18 14:47:07 -0600432 root->bus = pci_acpi_scan_root(device, segment, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400434 printk(KERN_ERR PREFIX
435 "Bus %04x:%02x not present in PCI namespace\n",
Bjorn Helgaas07054952009-06-18 14:47:07 -0600436 root->segment, root->bus_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 result = -ENODEV;
438 goto end;
439 }
440
441 /*
442 * Attach ACPI-PCI Context
443 * -----------------------
444 * Thus binding the ACPI and PCI devices.
445 */
446 result = acpi_pci_bind_root(device, &root->id, root->bus);
447 if (result)
448 goto end;
449
450 /*
451 * PCI Routing Table
452 * -----------------
453 * Evaluate and parse _PRT, if exists.
454 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400455 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (ACPI_SUCCESS(status))
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400457 result = acpi_pci_irq_add_prt(device->handle, root->id.segment,
Len Brown4be44fc2005-08-05 00:44:28 -0400458 root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Rui Zhang2786f6e2006-12-21 02:21:13 -0500460 /*
461 * Scan and bind all _ADR-Based Devices
462 */
463 list_for_each_entry(child, &device->children, node)
464 acpi_pci_bridge_scan(child);
465
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700466 /* Indicate support for various _OSC capabilities. */
467 if (pci_ext_cfg_avail(root->bus->self))
468 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700469 if (pcie_aspm_enabled())
470 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
471 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
Andrew Patterson07ae95f2008-11-10 15:31:05 -0700472 if (pci_msi_enabled())
473 flags |= OSC_MSI_SUPPORT;
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700474 if (flags != base_flags)
Kenji Kaneshige63f10f02009-02-09 15:59:29 +0900475 acpi_pci_osc_support(root, flags);
Andrew Patterson0ef5f8f2008-11-10 15:30:50 -0700476
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Bjorn Helgaasf5eebbe2009-06-18 14:46:52 -0600479end:
480 if (!list_empty(&root->node))
481 list_del(&root->node);
482 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400483 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700487{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600488 struct acpi_pci_root *root = acpi_driver_data(device);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700489
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600490 pci_bus_add_devices(root->bus);
491 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700492}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Len Brown4be44fc2005-08-05 00:44:28 -0400494static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Bjorn Helgaascaf420c2009-06-18 14:46:57 -0600496 struct acpi_pci_root *root = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 kfree(root);
Patrick Mocheld550d982006-06-27 00:41:40 -0400499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Len Brown4be44fc2005-08-05 00:44:28 -0400502static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400508 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Patrick Mocheld550d982006-06-27 00:41:40 -0400510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513subsys_initcall(acpi_pci_root_init);