Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Patterson | 990a7ac | 2008-11-10 15:30:45 -0700 | [diff] [blame^] | 34 | #include <linux/pci-acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/acpi.h> |
| 36 | #include <acpi/acpi_bus.h> |
| 37 | #include <acpi/acpi_drivers.h> |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #define _COMPONENT ACPI_PCI_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 40 | ACPI_MODULE_NAME("pci_root"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define ACPI_PCI_ROOT_CLASS "pci_bridge" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge" |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 43 | static int acpi_pci_root_add(struct acpi_device *device); |
| 44 | static int acpi_pci_root_remove(struct acpi_device *device, int type); |
| 45 | static int acpi_pci_root_start(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 47 | static struct acpi_device_id root_device_ids[] = { |
| 48 | {"PNP0A03", 0}, |
| 49 | {"", 0}, |
| 50 | }; |
| 51 | MODULE_DEVICE_TABLE(acpi, root_device_ids); |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static struct acpi_driver acpi_pci_root_driver = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 54 | .name = "pci_root", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | .class = ACPI_PCI_ROOT_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 56 | .ids = root_device_ids, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 57 | .ops = { |
| 58 | .add = acpi_pci_root_add, |
| 59 | .remove = acpi_pci_root_remove, |
| 60 | .start = acpi_pci_root_start, |
| 61 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | struct acpi_pci_root { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 65 | struct list_head node; |
Patrick Mochel | 32917e5 | 2006-05-19 16:54:39 -0400 | [diff] [blame] | 66 | struct acpi_device * device; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 67 | struct acpi_pci_id id; |
| 68 | struct pci_bus *bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | }; |
| 70 | |
| 71 | static LIST_HEAD(acpi_pci_roots); |
| 72 | |
| 73 | static struct acpi_pci_driver *sub_driver; |
| 74 | |
| 75 | int acpi_pci_register_driver(struct acpi_pci_driver *driver) |
| 76 | { |
| 77 | int n = 0; |
| 78 | struct list_head *entry; |
| 79 | |
| 80 | struct acpi_pci_driver **pptr = &sub_driver; |
| 81 | while (*pptr) |
| 82 | pptr = &(*pptr)->next; |
| 83 | *pptr = driver; |
| 84 | |
| 85 | if (!driver->add) |
| 86 | return 0; |
| 87 | |
| 88 | list_for_each(entry, &acpi_pci_roots) { |
| 89 | struct acpi_pci_root *root; |
| 90 | root = list_entry(entry, struct acpi_pci_root, node); |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 91 | driver->add(root->device->handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | n++; |
| 93 | } |
| 94 | |
| 95 | return n; |
| 96 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | EXPORT_SYMBOL(acpi_pci_register_driver); |
| 99 | |
| 100 | void acpi_pci_unregister_driver(struct acpi_pci_driver *driver) |
| 101 | { |
| 102 | struct list_head *entry; |
| 103 | |
| 104 | struct acpi_pci_driver **pptr = &sub_driver; |
| 105 | while (*pptr) { |
Akinobu Mita | f10bb25 | 2006-12-19 12:56:09 -0800 | [diff] [blame] | 106 | if (*pptr == driver) |
| 107 | break; |
| 108 | pptr = &(*pptr)->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
Akinobu Mita | f10bb25 | 2006-12-19 12:56:09 -0800 | [diff] [blame] | 110 | BUG_ON(!*pptr); |
| 111 | *pptr = (*pptr)->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | if (!driver->remove) |
| 114 | return; |
| 115 | |
| 116 | list_for_each(entry, &acpi_pci_roots) { |
| 117 | struct acpi_pci_root *root; |
| 118 | root = list_entry(entry, struct acpi_pci_root, node); |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 119 | driver->remove(root->device->handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
| 121 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | EXPORT_SYMBOL(acpi_pci_unregister_driver); |
| 124 | |
Justin Chen | d91a007 | 2006-12-06 10:17:10 -0700 | [diff] [blame] | 125 | acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus) |
| 126 | { |
| 127 | struct acpi_pci_root *tmp; |
| 128 | |
| 129 | list_for_each_entry(tmp, &acpi_pci_roots, node) { |
| 130 | if ((tmp->id.segment == (u16) seg) && (tmp->id.bus == (u16) bus)) |
| 131 | return tmp->device->handle; |
| 132 | } |
| 133 | return NULL; |
| 134 | } |
| 135 | |
| 136 | EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle); |
| 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 139 | get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 141 | int *busnr = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | struct acpi_resource_address64 address; |
| 143 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 144 | if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 && |
| 145 | resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 && |
| 146 | resource->type != ACPI_RESOURCE_TYPE_ADDRESS64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | return AE_OK; |
| 148 | |
| 149 | acpi_resource_to_address64(resource, &address); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 150 | if ((address.address_length > 0) && |
| 151 | (address.resource_type == ACPI_BUS_NUMBER_RANGE)) |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 152 | *busnr = address.minimum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
| 154 | return AE_OK; |
| 155 | } |
| 156 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 157 | static acpi_status try_get_root_bridge_busnr(acpi_handle handle, int *busnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
| 159 | acpi_status status; |
| 160 | |
| 161 | *busnum = -1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 162 | status = |
| 163 | acpi_walk_resources(handle, METHOD_NAME__CRS, |
| 164 | get_root_bridge_busnr_callback, busnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | if (ACPI_FAILURE(status)) |
| 166 | return status; |
| 167 | /* Check if we really get a bus number from _CRS */ |
| 168 | if (*busnum == -1) |
| 169 | return AE_ERROR; |
| 170 | return AE_OK; |
| 171 | } |
| 172 | |
Rui Zhang | 2786f6e | 2006-12-21 02:21:13 -0500 | [diff] [blame] | 173 | static void acpi_pci_bridge_scan(struct acpi_device *device) |
| 174 | { |
| 175 | int status; |
| 176 | struct acpi_device *child = NULL; |
| 177 | |
| 178 | if (device->flags.bus_address) |
| 179 | if (device->parent && device->parent->ops.bind) { |
| 180 | status = device->parent->ops.bind(device); |
| 181 | if (!status) { |
| 182 | list_for_each_entry(child, &device->children, node) |
| 183 | acpi_pci_bridge_scan(child); |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | |
Sam Ravnborg | b5678a3 | 2008-02-17 13:23:03 +0100 | [diff] [blame] | 188 | static int __devinit acpi_pci_root_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 190 | int result = 0; |
| 191 | struct acpi_pci_root *root = NULL; |
| 192 | struct acpi_pci_root *tmp; |
| 193 | acpi_status status = AE_OK; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 194 | unsigned long long value = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 195 | acpi_handle handle = NULL; |
Rui Zhang | 2786f6e | 2006-12-21 02:21:13 -0500 | [diff] [blame] | 196 | struct acpi_device *child; |
Andrew Patterson | 990a7ac | 2008-11-10 15:30:45 -0700 | [diff] [blame^] | 197 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 201 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 203 | root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | if (!root) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 205 | return -ENOMEM; |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 206 | INIT_LIST_HEAD(&root->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Patrick Mochel | 32917e5 | 2006-05-19 16:54:39 -0400 | [diff] [blame] | 208 | root->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME); |
| 210 | strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 211 | device->driver_data = root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | device->ops.bind = acpi_pci_bind; |
| 214 | |
Andrew Patterson | 990a7ac | 2008-11-10 15:30:45 -0700 | [diff] [blame^] | 215 | /* |
| 216 | * All supported architectures that use ACPI have support for |
| 217 | * PCI domains, so we indicate this in _OSC support capabilities. |
| 218 | */ |
| 219 | flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT; |
| 220 | pci_acpi_osc_support(device->handle, flags); |
| 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | /* |
| 223 | * Segment |
| 224 | * ------- |
| 225 | * Obtained via _SEG, if exists, otherwise assumed to be zero (0). |
| 226 | */ |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 227 | status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | &value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | switch (status) { |
| 230 | case AE_OK: |
| 231 | root->id.segment = (u16) value; |
| 232 | break; |
| 233 | case AE_NOT_FOUND: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 235 | "Assuming segment 0 (no _SEG)\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | root->id.segment = 0; |
| 237 | break; |
| 238 | default: |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 239 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SEG")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | result = -ENODEV; |
| 241 | goto end; |
| 242 | } |
| 243 | |
| 244 | /* |
| 245 | * Bus |
| 246 | * --- |
| 247 | * Obtained via _BBN, if exists, otherwise assumed to be zero (0). |
| 248 | */ |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 249 | status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 250 | &value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | switch (status) { |
| 252 | case AE_OK: |
| 253 | root->id.bus = (u16) value; |
| 254 | break; |
| 255 | case AE_NOT_FOUND: |
| 256 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Assuming bus 0 (no _BBN)\n")); |
| 257 | root->id.bus = 0; |
| 258 | break; |
| 259 | default: |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 260 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BBN")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | result = -ENODEV; |
| 262 | goto end; |
| 263 | } |
| 264 | |
| 265 | /* Some systems have wrong _BBN */ |
| 266 | list_for_each_entry(tmp, &acpi_pci_roots, node) { |
| 267 | if ((tmp->id.segment == root->id.segment) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 268 | && (tmp->id.bus == root->id.bus)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | int bus = 0; |
| 270 | acpi_status status; |
| 271 | |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 272 | printk(KERN_ERR PREFIX |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 273 | "Wrong _BBN value, reboot" |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 274 | " and use option 'pci=noacpi'\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 276 | status = try_get_root_bridge_busnr(device->handle, &bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | if (ACPI_FAILURE(status)) |
| 278 | break; |
| 279 | if (bus != root->id.bus) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | printk(KERN_INFO PREFIX |
| 281 | "PCI _CRS %d overrides _BBN 0\n", bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | root->id.bus = bus; |
| 283 | } |
| 284 | break; |
| 285 | } |
| 286 | } |
| 287 | /* |
| 288 | * Device & Function |
| 289 | * ----------------- |
| 290 | * Obtained from _ADR (which has already been evaluated for us). |
| 291 | */ |
| 292 | root->id.device = device->pnp.bus_address >> 16; |
| 293 | root->id.function = device->pnp.bus_address & 0xFFFF; |
| 294 | |
| 295 | /* |
| 296 | * TBD: Need PCI interface for enumeration/configuration of roots. |
| 297 | */ |
| 298 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 299 | /* TBD: Locking */ |
| 300 | list_add_tail(&root->node, &acpi_pci_roots); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n", |
| 303 | acpi_device_name(device), acpi_device_bid(device), |
| 304 | root->id.segment, root->id.bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
| 306 | /* |
| 307 | * Scan the Root Bridge |
| 308 | * -------------------- |
| 309 | * Must do this prior to any attempt to bind the root device, as the |
| 310 | * PCI namespace does not get created until this call is made (and |
| 311 | * thus the root bridge's pci_dev does not exist). |
| 312 | */ |
| 313 | root->bus = pci_acpi_scan_root(device, root->id.segment, root->id.bus); |
| 314 | if (!root->bus) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 315 | printk(KERN_ERR PREFIX |
| 316 | "Bus %04x:%02x not present in PCI namespace\n", |
| 317 | root->id.segment, root->id.bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | result = -ENODEV; |
| 319 | goto end; |
| 320 | } |
| 321 | |
| 322 | /* |
| 323 | * Attach ACPI-PCI Context |
| 324 | * ----------------------- |
| 325 | * Thus binding the ACPI and PCI devices. |
| 326 | */ |
| 327 | result = acpi_pci_bind_root(device, &root->id, root->bus); |
| 328 | if (result) |
| 329 | goto end; |
| 330 | |
| 331 | /* |
| 332 | * PCI Routing Table |
| 333 | * ----------------- |
| 334 | * Evaluate and parse _PRT, if exists. |
| 335 | */ |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 336 | status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | if (ACPI_SUCCESS(status)) |
Patrick Mochel | 2d1e0a0 | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 338 | result = acpi_pci_irq_add_prt(device->handle, root->id.segment, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 339 | root->id.bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Rui Zhang | 2786f6e | 2006-12-21 02:21:13 -0500 | [diff] [blame] | 341 | /* |
| 342 | * Scan and bind all _ADR-Based Devices |
| 343 | */ |
| 344 | list_for_each_entry(child, &device->children, node) |
| 345 | acpi_pci_bridge_scan(child); |
| 346 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 347 | end: |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 348 | if (result) { |
| 349 | if (!list_empty(&root->node)) |
| 350 | list_del(&root->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | kfree(root); |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 354 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 357 | static int acpi_pci_root_start(struct acpi_device *device) |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 358 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 359 | struct acpi_pci_root *root; |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 360 | |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 361 | |
| 362 | list_for_each_entry(root, &acpi_pci_roots, node) { |
Patrick Mochel | 432bfab | 2006-05-19 16:54:51 -0400 | [diff] [blame] | 363 | if (root->device == device) { |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 364 | pci_bus_add_devices(root->bus); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 365 | return 0; |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 366 | } |
| 367 | } |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 368 | return -ENODEV; |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 369 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 371 | static int acpi_pci_root_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 373 | struct acpi_pci_root *root = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
| 376 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 377 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 379 | root = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | kfree(root); |
| 382 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 383 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 386 | static int __init acpi_pci_root_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | if (acpi_pci_disabled) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 389 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 392 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 394 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | subsys_initcall(acpi_pci_root_init); |