Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * pci_bind.c - ACPI PCI Device Binding ($Revision: 2 $) |
| 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> |
| 34 | #include <linux/acpi.h> |
| 35 | #include <acpi/acpi_bus.h> |
| 36 | #include <acpi/acpi_drivers.h> |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define _COMPONENT ACPI_PCI_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 39 | ACPI_MODULE_NAME("pci_bind"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | struct acpi_pci_data { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 42 | struct acpi_pci_id id; |
| 43 | struct pci_bus *bus; |
| 44 | struct pci_dev *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
Adrian Bunk | 8713cbe | 2005-09-02 17:16:48 -0400 | [diff] [blame] | 47 | static void acpi_pci_data_handler(acpi_handle handle, u32 function, |
| 48 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* TBD: Anything we need to do here? */ |
| 52 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 53 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | /** |
Rajesh Shah | 4ce448e | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 57 | * acpi_get_pci_id |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * ------------------ |
| 59 | * This function is used by the ACPI Interpreter (a.k.a. Core Subsystem) |
| 60 | * to resolve PCI information for ACPI-PCI devices defined in the namespace. |
| 61 | * This typically occurs when resolving PCI operation region information. |
| 62 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 63 | acpi_status acpi_get_pci_id(acpi_handle handle, struct acpi_pci_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 65 | int result = 0; |
| 66 | acpi_status status = AE_OK; |
| 67 | struct acpi_device *device = NULL; |
| 68 | struct acpi_pci_data *data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | if (!id) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 72 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | result = acpi_bus_get_device(handle, &device); |
| 75 | if (result) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 76 | printk(KERN_ERR PREFIX |
| 77 | "Invalid ACPI Bus context for device %s\n", |
| 78 | acpi_device_bid(device)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 79 | return AE_NOT_EXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 82 | status = acpi_get_data(handle, acpi_pci_data_handler, (void **)&data); |
Rajesh Shah | 4ce448e | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 83 | if (ACPI_FAILURE(status) || !data) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 84 | ACPI_EXCEPTION((AE_INFO, status, |
| 85 | "Invalid ACPI-PCI context for device %s", |
| 86 | acpi_device_bid(device))); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 87 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | *id = data->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | /* |
| 93 | id->segment = data->id.segment; |
| 94 | id->bus = data->id.bus; |
| 95 | id->device = data->id.device; |
| 96 | id->function = data->id.function; |
| 97 | */ |
| 98 | |
| 99 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 100 | "Device %s has PCI address %02x:%02x:%02x.%02x\n", |
| 101 | acpi_device_bid(device), id->segment, id->bus, |
| 102 | id->device, id->function)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 104 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | |
Rajesh Shah | 4ce448e | 2005-04-28 00:25:53 -0700 | [diff] [blame] | 107 | EXPORT_SYMBOL(acpi_get_pci_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 109 | int acpi_pci_bind(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 111 | int result = 0; |
| 112 | acpi_status status = AE_OK; |
| 113 | struct acpi_pci_data *data = NULL; |
| 114 | struct acpi_pci_data *pdata = NULL; |
| 115 | char *pathname = NULL; |
| 116 | struct acpi_buffer buffer = { 0, NULL }; |
| 117 | acpi_handle handle = NULL; |
| 118 | struct pci_dev *dev; |
| 119 | struct pci_bus *bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | if (!device || !device->parent) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 123 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 125 | pathname = kzalloc(ACPI_PATHNAME_MAX, GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | if (!pathname) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 127 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | buffer.length = ACPI_PATHNAME_MAX; |
| 129 | buffer.pointer = pathname; |
| 130 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 131 | data = kzalloc(sizeof(struct acpi_pci_data), GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 132 | if (!data) { |
| 133 | kfree(pathname); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 134 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Binding PCI device [%s]...\n", |
| 139 | pathname)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | /* |
| 142 | * Segment & Bus |
| 143 | * ------------- |
| 144 | * These are obtained via the parent device's ACPI-PCI context. |
| 145 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 146 | status = acpi_get_data(device->parent->handle, acpi_pci_data_handler, |
| 147 | (void **)&pdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | if (ACPI_FAILURE(status) || !pdata || !pdata->bus) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 149 | ACPI_EXCEPTION((AE_INFO, status, |
| 150 | "Invalid ACPI-PCI context for parent device %s", |
| 151 | acpi_device_bid(device->parent))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | result = -ENODEV; |
| 153 | goto end; |
| 154 | } |
| 155 | data->id.segment = pdata->id.segment; |
| 156 | data->id.bus = pdata->bus->number; |
| 157 | |
| 158 | /* |
| 159 | * Device & Function |
| 160 | * ----------------- |
| 161 | * These are simply obtained from the device's _ADR method. Note |
| 162 | * that a value of zero is valid. |
| 163 | */ |
| 164 | data->id.device = device->pnp.bus_address >> 16; |
| 165 | data->id.function = device->pnp.bus_address & 0xFFFF; |
| 166 | |
| 167 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "...to %02x:%02x:%02x.%02x\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 168 | data->id.segment, data->id.bus, data->id.device, |
| 169 | data->id.function)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | /* |
| 172 | * TBD: Support slot devices (e.g. function=0xFFFF). |
| 173 | */ |
| 174 | |
| 175 | /* |
| 176 | * Locate PCI Device |
| 177 | * ----------------- |
| 178 | * Locate matching device in PCI namespace. If it doesn't exist |
| 179 | * this typically means that the device isn't currently inserted |
| 180 | * (e.g. docking station, port replicator, etc.). |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 181 | * We cannot simply search the global pci device list, since |
| 182 | * PCI devices are added to the global pci list when the root |
| 183 | * bridge start ops are run, which may not have happened yet. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | */ |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 185 | bus = pci_find_bus(data->id.segment, data->id.bus); |
| 186 | if (bus) { |
| 187 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 188 | if (dev->devfn == PCI_DEVFN(data->id.device, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | data->id.function)) { |
Rajesh Shah | c431ada | 2005-04-28 00:25:45 -0700 | [diff] [blame] | 190 | data->dev = dev; |
| 191 | break; |
| 192 | } |
| 193 | } |
| 194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | if (!data->dev) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 196 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 197 | "Device %02x:%02x:%02x.%02x not present in PCI namespace\n", |
| 198 | data->id.segment, data->id.bus, |
| 199 | data->id.device, data->id.function)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | result = -ENODEV; |
| 201 | goto end; |
| 202 | } |
| 203 | if (!data->dev->bus) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 204 | printk(KERN_ERR PREFIX |
| 205 | "Device %02x:%02x:%02x.%02x has invalid 'bus' field\n", |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 206 | data->id.segment, data->id.bus, |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 207 | data->id.device, data->id.function); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | result = -ENODEV; |
| 209 | goto end; |
| 210 | } |
| 211 | |
| 212 | /* |
| 213 | * PCI Bridge? |
| 214 | * ----------- |
| 215 | * If so, set the 'bus' field and install the 'bind' function to |
| 216 | * facilitate callbacks for all of its children. |
| 217 | */ |
| 218 | if (data->dev->subordinate) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 220 | "Device %02x:%02x:%02x.%02x is a PCI bridge\n", |
| 221 | data->id.segment, data->id.bus, |
| 222 | data->id.device, data->id.function)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | data->bus = data->dev->subordinate; |
| 224 | device->ops.bind = acpi_pci_bind; |
| 225 | device->ops.unbind = acpi_pci_unbind; |
| 226 | } |
| 227 | |
| 228 | /* |
| 229 | * Attach ACPI-PCI Context |
| 230 | * ----------------------- |
| 231 | * Thus binding the ACPI and PCI devices. |
| 232 | */ |
| 233 | status = acpi_attach_data(device->handle, acpi_pci_data_handler, data); |
| 234 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 235 | ACPI_EXCEPTION((AE_INFO, status, |
| 236 | "Unable to attach ACPI-PCI context to device %s", |
| 237 | acpi_device_bid(device))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | result = -ENODEV; |
| 239 | goto end; |
| 240 | } |
| 241 | |
| 242 | /* |
| 243 | * PCI Routing Table |
| 244 | * ----------------- |
| 245 | * Evaluate and parse _PRT, if exists. This code is independent of |
| 246 | * PCI bridges (above) to allow parsing of _PRT objects within the |
| 247 | * scope of non-bridge devices. Note that _PRTs within the scope of |
| 248 | * a PCI bridge assume the bridge's subordinate bus number. |
| 249 | * |
| 250 | * TBD: Can _PRTs exist within the scope of non-bridge PCI devices? |
| 251 | */ |
| 252 | status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle); |
| 253 | if (ACPI_SUCCESS(status)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | if (data->bus) /* PCI-PCI bridge */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | acpi_pci_irq_add_prt(device->handle, data->id.segment, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | data->bus->number); |
| 257 | else /* non-bridge PCI device */ |
| 258 | acpi_pci_irq_add_prt(device->handle, data->id.segment, |
| 259 | data->id.bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 262 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | kfree(pathname); |
| 264 | if (result) |
| 265 | kfree(data); |
| 266 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 267 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 270 | int acpi_pci_unbind(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 272 | int result = 0; |
| 273 | acpi_status status = AE_OK; |
| 274 | struct acpi_pci_data *data = NULL; |
| 275 | char *pathname = NULL; |
| 276 | struct acpi_buffer buffer = { 0, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | if (!device || !device->parent) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 280 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 282 | pathname = kzalloc(ACPI_PATHNAME_MAX, GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 283 | if (!pathname) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 284 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
| 286 | buffer.length = ACPI_PATHNAME_MAX; |
| 287 | buffer.pointer = pathname; |
| 288 | acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer); |
| 289 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Unbinding PCI device [%s]...\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 290 | pathname)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | kfree(pathname); |
| 292 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 293 | status = |
| 294 | acpi_get_data(device->handle, acpi_pci_data_handler, |
| 295 | (void **)&data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | result = -ENODEV; |
| 298 | goto end; |
| 299 | } |
| 300 | |
| 301 | status = acpi_detach_data(device->handle, acpi_pci_data_handler); |
| 302 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 303 | ACPI_EXCEPTION((AE_INFO, status, |
| 304 | "Unable to detach data from device %s", |
| 305 | acpi_device_bid(device))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | result = -ENODEV; |
| 307 | goto end; |
| 308 | } |
| 309 | if (data->dev->subordinate) { |
| 310 | acpi_pci_irq_del_prt(data->id.segment, data->bus->number); |
| 311 | } |
| 312 | kfree(data); |
| 313 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 314 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 315 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 318 | int |
| 319 | acpi_pci_bind_root(struct acpi_device *device, |
| 320 | struct acpi_pci_id *id, struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 322 | int result = 0; |
| 323 | acpi_status status = AE_OK; |
| 324 | struct acpi_pci_data *data = NULL; |
| 325 | char *pathname = NULL; |
| 326 | struct acpi_buffer buffer = { 0, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 328 | pathname = kzalloc(ACPI_PATHNAME_MAX, GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 329 | if (!pathname) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 330 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 332 | buffer.length = ACPI_PATHNAME_MAX; |
| 333 | buffer.pointer = pathname; |
| 334 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | if (!device || !id || !bus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | kfree(pathname); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 337 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 340 | data = kzalloc(sizeof(struct acpi_pci_data), GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 341 | if (!data) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | kfree(pathname); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 343 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
| 346 | data->id = *id; |
| 347 | data->bus = bus; |
| 348 | device->ops.bind = acpi_pci_bind; |
| 349 | device->ops.unbind = acpi_pci_unbind; |
| 350 | |
| 351 | acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer); |
| 352 | |
| 353 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Binding PCI root bridge [%s] to " |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 354 | "%02x:%02x\n", pathname, id->segment, id->bus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | status = acpi_attach_data(device->handle, acpi_pci_data_handler, data); |
| 357 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 358 | ACPI_EXCEPTION((AE_INFO, status, |
| 359 | "Unable to attach ACPI-PCI context to device %s", |
| 360 | pathname)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | result = -ENODEV; |
| 362 | goto end; |
| 363 | } |
| 364 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 365 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | kfree(pathname); |
| 367 | if (result != 0) |
| 368 | kfree(data); |
| 369 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 370 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |