blob: 1e2ae6e7a7e47d4e24e1e9af051d447d32178e39 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070038#define _COMPONENT ACPI_PCI_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040039ACPI_MODULE_NAME("pci_bind")
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41struct acpi_pci_data {
Len Brown4be44fc2005-08-05 00:44:28 -040042 struct acpi_pci_id id;
43 struct pci_bus *bus;
44 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Adrian Bunk8713cbe2005-09-02 17:16:48 -040047static void acpi_pci_data_handler(acpi_handle handle, u32 function,
48 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 /* TBD: Anything we need to do here? */
52
Patrick Mocheld550d982006-06-27 00:41:40 -040053 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/**
Rajesh Shah4ce448e2005-04-28 00:25:53 -070057 * acpi_get_pci_id
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * ------------------
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 Brown4be44fc2005-08-05 00:44:28 -040063acpi_status acpi_get_pci_id(acpi_handle handle, struct acpi_pci_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Len Brown4be44fc2005-08-05 00:44:28 -040065 int result = 0;
66 acpi_status status = AE_OK;
67 struct acpi_device *device = NULL;
68 struct acpi_pci_data *data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 if (!id)
Patrick Mocheld550d982006-06-27 00:41:40 -040072 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 result = acpi_bus_get_device(handle, &device);
75 if (result) {
Len Brown64684632006-06-26 23:41:38 -040076 printk(KERN_ERR PREFIX
77 "Invalid ACPI Bus context for device %s\n",
78 acpi_device_bid(device));
Patrick Mocheld550d982006-06-27 00:41:40 -040079 return AE_NOT_EXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81
Len Brown4be44fc2005-08-05 00:44:28 -040082 status = acpi_get_data(handle, acpi_pci_data_handler, (void **)&data);
Rajesh Shah4ce448e2005-04-28 00:25:53 -070083 if (ACPI_FAILURE(status) || !data) {
Thomas Renningera6fc6722006-06-26 23:58:43 -040084 ACPI_EXCEPTION((AE_INFO, status,
85 "Invalid ACPI-PCI context for device %s",
86 acpi_device_bid(device)));
Patrick Mocheld550d982006-06-27 00:41:40 -040087 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89
90 *id = data->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Len Brown4be44fc2005-08-05 00:44:28 -040092 /*
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 Torvalds1da177e2005-04-16 15:20:36 -0700103
Patrick Mocheld550d982006-06-27 00:41:40 -0400104 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
Len Brown4be44fc2005-08-05 00:44:28 -0400106
Rajesh Shah4ce448e2005-04-28 00:25:53 -0700107EXPORT_SYMBOL(acpi_get_pci_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Len Brown4be44fc2005-08-05 00:44:28 -0400109int acpi_pci_bind(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Len Brown4be44fc2005-08-05 00:44:28 -0400111 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 Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (!device || !device->parent)
Patrick Mocheld550d982006-06-27 00:41:40 -0400123 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 pathname = kmalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400126 if (!pathname)
Patrick Mocheld550d982006-06-27 00:41:40 -0400127 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 memset(pathname, 0, ACPI_PATHNAME_MAX);
129 buffer.length = ACPI_PATHNAME_MAX;
130 buffer.pointer = pathname;
131
132 data = kmalloc(sizeof(struct acpi_pci_data), GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400133 if (!data) {
134 kfree(pathname);
Patrick Mocheld550d982006-06-27 00:41:40 -0400135 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137 memset(data, 0, sizeof(struct acpi_pci_data));
138
139 acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400140 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Binding PCI device [%s]...\n",
141 pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /*
144 * Segment & Bus
145 * -------------
146 * These are obtained via the parent device's ACPI-PCI context.
147 */
Len Brown4be44fc2005-08-05 00:44:28 -0400148 status = acpi_get_data(device->parent->handle, acpi_pci_data_handler,
149 (void **)&pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (ACPI_FAILURE(status) || !pdata || !pdata->bus) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400151 ACPI_EXCEPTION((AE_INFO, status,
152 "Invalid ACPI-PCI context for parent device %s",
153 acpi_device_bid(device->parent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 result = -ENODEV;
155 goto end;
156 }
157 data->id.segment = pdata->id.segment;
158 data->id.bus = pdata->bus->number;
159
160 /*
161 * Device & Function
162 * -----------------
163 * These are simply obtained from the device's _ADR method. Note
164 * that a value of zero is valid.
165 */
166 data->id.device = device->pnp.bus_address >> 16;
167 data->id.function = device->pnp.bus_address & 0xFFFF;
168
169 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "...to %02x:%02x:%02x.%02x\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400170 data->id.segment, data->id.bus, data->id.device,
171 data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /*
174 * TBD: Support slot devices (e.g. function=0xFFFF).
175 */
176
177 /*
178 * Locate PCI Device
179 * -----------------
180 * Locate matching device in PCI namespace. If it doesn't exist
181 * this typically means that the device isn't currently inserted
182 * (e.g. docking station, port replicator, etc.).
Rajesh Shahc431ada2005-04-28 00:25:45 -0700183 * We cannot simply search the global pci device list, since
184 * PCI devices are added to the global pci list when the root
185 * bridge start ops are run, which may not have happened yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Rajesh Shahc431ada2005-04-28 00:25:45 -0700187 bus = pci_find_bus(data->id.segment, data->id.bus);
188 if (bus) {
189 list_for_each_entry(dev, &bus->devices, bus_list) {
190 if (dev->devfn == PCI_DEVFN(data->id.device,
Len Brown4be44fc2005-08-05 00:44:28 -0400191 data->id.function)) {
Rajesh Shahc431ada2005-04-28 00:25:45 -0700192 data->dev = dev;
193 break;
194 }
195 }
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (!data->dev) {
Len Brown4be44fc2005-08-05 00:44:28 -0400198 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
199 "Device %02x:%02x:%02x.%02x not present in PCI namespace\n",
200 data->id.segment, data->id.bus,
201 data->id.device, data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 result = -ENODEV;
203 goto end;
204 }
205 if (!data->dev->bus) {
Len Brown64684632006-06-26 23:41:38 -0400206 printk(KERN_ERR PREFIX
207 "Device %02x:%02x:%02x.%02x has invalid 'bus' field\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400208 data->id.segment, data->id.bus,
Len Brown64684632006-06-26 23:41:38 -0400209 data->id.device, data->id.function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 result = -ENODEV;
211 goto end;
212 }
213
214 /*
215 * PCI Bridge?
216 * -----------
217 * If so, set the 'bus' field and install the 'bind' function to
218 * facilitate callbacks for all of its children.
219 */
220 if (data->dev->subordinate) {
Len Brown4be44fc2005-08-05 00:44:28 -0400221 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
222 "Device %02x:%02x:%02x.%02x is a PCI bridge\n",
223 data->id.segment, data->id.bus,
224 data->id.device, data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 data->bus = data->dev->subordinate;
226 device->ops.bind = acpi_pci_bind;
227 device->ops.unbind = acpi_pci_unbind;
228 }
229
230 /*
231 * Attach ACPI-PCI Context
232 * -----------------------
233 * Thus binding the ACPI and PCI devices.
234 */
235 status = acpi_attach_data(device->handle, acpi_pci_data_handler, data);
236 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400237 ACPI_EXCEPTION((AE_INFO, status,
238 "Unable to attach ACPI-PCI context to device %s",
239 acpi_device_bid(device)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 result = -ENODEV;
241 goto end;
242 }
243
244 /*
245 * PCI Routing Table
246 * -----------------
247 * Evaluate and parse _PRT, if exists. This code is independent of
248 * PCI bridges (above) to allow parsing of _PRT objects within the
249 * scope of non-bridge devices. Note that _PRTs within the scope of
250 * a PCI bridge assume the bridge's subordinate bus number.
251 *
252 * TBD: Can _PRTs exist within the scope of non-bridge PCI devices?
253 */
254 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
255 if (ACPI_SUCCESS(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400256 if (data->bus) /* PCI-PCI bridge */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 acpi_pci_irq_add_prt(device->handle, data->id.segment,
Len Brown4be44fc2005-08-05 00:44:28 -0400258 data->bus->number);
259 else /* non-bridge PCI device */
260 acpi_pci_irq_add_prt(device->handle, data->id.segment,
261 data->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 kfree(pathname);
266 if (result)
267 kfree(data);
268
Patrick Mocheld550d982006-06-27 00:41:40 -0400269 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Len Brown4be44fc2005-08-05 00:44:28 -0400272int acpi_pci_unbind(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Len Brown4be44fc2005-08-05 00:44:28 -0400274 int result = 0;
275 acpi_status status = AE_OK;
276 struct acpi_pci_data *data = NULL;
277 char *pathname = NULL;
278 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (!device || !device->parent)
Patrick Mocheld550d982006-06-27 00:41:40 -0400282 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Len Brown4be44fc2005-08-05 00:44:28 -0400284 pathname = (char *)kmalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
285 if (!pathname)
Patrick Mocheld550d982006-06-27 00:41:40 -0400286 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 memset(pathname, 0, ACPI_PATHNAME_MAX);
288
289 buffer.length = ACPI_PATHNAME_MAX;
290 buffer.pointer = pathname;
291 acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer);
292 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Unbinding PCI device [%s]...\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400293 pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 kfree(pathname);
295
Len Brown4be44fc2005-08-05 00:44:28 -0400296 status =
297 acpi_get_data(device->handle, acpi_pci_data_handler,
298 (void **)&data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400300 ACPI_EXCEPTION((AE_INFO, status,
301 "Unable to get data from device %s",
302 acpi_device_bid(device)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 result = -ENODEV;
304 goto end;
305 }
306
307 status = acpi_detach_data(device->handle, acpi_pci_data_handler);
308 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400309 ACPI_EXCEPTION((AE_INFO, status,
310 "Unable to detach data from device %s",
311 acpi_device_bid(device)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 result = -ENODEV;
313 goto end;
314 }
315 if (data->dev->subordinate) {
316 acpi_pci_irq_del_prt(data->id.segment, data->bus->number);
317 }
318 kfree(data);
319
Len Brown4be44fc2005-08-05 00:44:28 -0400320 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Len Brown4be44fc2005-08-05 00:44:28 -0400324int
325acpi_pci_bind_root(struct acpi_device *device,
326 struct acpi_pci_id *id, struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Len Brown4be44fc2005-08-05 00:44:28 -0400328 int result = 0;
329 acpi_status status = AE_OK;
330 struct acpi_pci_data *data = NULL;
331 char *pathname = NULL;
332 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 pathname = (char *)kmalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400336 if (!pathname)
Patrick Mocheld550d982006-06-27 00:41:40 -0400337 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 memset(pathname, 0, ACPI_PATHNAME_MAX);
339
340 buffer.length = ACPI_PATHNAME_MAX;
341 buffer.pointer = pathname;
342
Len Brown4be44fc2005-08-05 00:44:28 -0400343 if (!device || !id || !bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 kfree(pathname);
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
348 data = kmalloc(sizeof(struct acpi_pci_data), GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400349 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 kfree(pathname);
Patrick Mocheld550d982006-06-27 00:41:40 -0400351 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 memset(data, 0, sizeof(struct acpi_pci_data));
354
355 data->id = *id;
356 data->bus = bus;
357 device->ops.bind = acpi_pci_bind;
358 device->ops.unbind = acpi_pci_unbind;
359
360 acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer);
361
362 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Binding PCI root bridge [%s] to "
Len Brown4be44fc2005-08-05 00:44:28 -0400363 "%02x:%02x\n", pathname, id->segment, id->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 status = acpi_attach_data(device->handle, acpi_pci_data_handler, data);
366 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400367 ACPI_EXCEPTION((AE_INFO, status,
368 "Unable to attach ACPI-PCI context to device %s",
369 pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 result = -ENODEV;
371 goto end;
372 }
373
Len Brown4be44fc2005-08-05 00:44:28 -0400374 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 kfree(pathname);
376 if (result != 0)
377 kfree(data);
378
Patrick Mocheld550d982006-06-27 00:41:40 -0400379 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}