blob: c283c29662a713eef603d7f08cdc46d4a7364e91 [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 Brownf52fd662007-02-12 22:42:12 -050039ACPI_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
Alexander Chiangce597bb2009-06-10 19:55:09 +000047static int acpi_pci_bind(struct acpi_device *device);
Adrian Bunke5685b92007-10-24 18:24:42 +020048static int acpi_pci_unbind(struct acpi_device *device);
49
Adrian Bunk8713cbe2005-09-02 17:16:48 -040050static void acpi_pci_data_handler(acpi_handle handle, u32 function,
51 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 /* TBD: Anything we need to do here? */
55
Patrick Mocheld550d982006-06-27 00:41:40 -040056 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/**
Rajesh Shah4ce448e2005-04-28 00:25:53 -070060 * acpi_get_pci_id
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * ------------------
62 * This function is used by the ACPI Interpreter (a.k.a. Core Subsystem)
63 * to resolve PCI information for ACPI-PCI devices defined in the namespace.
64 * This typically occurs when resolving PCI operation region information.
65 */
Len Brown4be44fc2005-08-05 00:44:28 -040066acpi_status acpi_get_pci_id(acpi_handle handle, struct acpi_pci_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 int result = 0;
69 acpi_status status = AE_OK;
70 struct acpi_device *device = NULL;
71 struct acpi_pci_data *data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 if (!id)
Patrick Mocheld550d982006-06-27 00:41:40 -040075 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 result = acpi_bus_get_device(handle, &device);
78 if (result) {
Len Brown64684632006-06-26 23:41:38 -040079 printk(KERN_ERR PREFIX
80 "Invalid ACPI Bus context for device %s\n",
81 acpi_device_bid(device));
Patrick Mocheld550d982006-06-27 00:41:40 -040082 return AE_NOT_EXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
Len Brown4be44fc2005-08-05 00:44:28 -040085 status = acpi_get_data(handle, acpi_pci_data_handler, (void **)&data);
Rajesh Shah4ce448e2005-04-28 00:25:53 -070086 if (ACPI_FAILURE(status) || !data) {
Thomas Renningera6fc6722006-06-26 23:58:43 -040087 ACPI_EXCEPTION((AE_INFO, status,
88 "Invalid ACPI-PCI context for device %s",
89 acpi_device_bid(device)));
Patrick Mocheld550d982006-06-27 00:41:40 -040090 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92
93 *id = data->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Len Brown4be44fc2005-08-05 00:44:28 -040095 /*
96 id->segment = data->id.segment;
97 id->bus = data->id.bus;
98 id->device = data->id.device;
99 id->function = data->id.function;
100 */
101
102 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700103 "Device %s has PCI address %04x:%02x:%02x.%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400104 acpi_device_bid(device), id->segment, id->bus,
105 id->device, id->function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Patrick Mocheld550d982006-06-27 00:41:40 -0400107 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
Len Brown4be44fc2005-08-05 00:44:28 -0400109
Rajesh Shah4ce448e2005-04-28 00:25:53 -0700110EXPORT_SYMBOL(acpi_get_pci_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Alexander Chiangc22d7f52009-06-10 19:55:25 +0000112static int acpi_pci_unbind(struct acpi_device *device)
113{
114 int result = 0;
115 acpi_status status;
116 struct acpi_pci_data *data;
117 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
118
119
120 if (!device || !device->parent)
121 return -EINVAL;
122
123 status = acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer);
124 if (ACPI_FAILURE(status))
125 return -ENODEV;
126
127 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Unbinding PCI device [%s]...\n",
128 (char *) buffer.pointer));
129 kfree(buffer.pointer);
130
131 status =
132 acpi_get_data(device->handle, acpi_pci_data_handler,
133 (void **)&data);
134 if (ACPI_FAILURE(status)) {
135 result = -ENODEV;
136 goto end;
137 }
138
139 status = acpi_detach_data(device->handle, acpi_pci_data_handler);
140 if (ACPI_FAILURE(status)) {
141 ACPI_EXCEPTION((AE_INFO, status,
142 "Unable to detach data from device %s",
143 acpi_device_bid(device)));
144 result = -ENODEV;
145 goto end;
146 }
147 if (data->dev->subordinate) {
148 acpi_pci_irq_del_prt(data->id.segment, data->bus->number);
149 }
150 pci_dev_put(data->dev);
151 kfree(data);
152
153 end:
154 return result;
155}
156
Alexander Chiangce597bb2009-06-10 19:55:09 +0000157static int acpi_pci_bind(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Len Brown4be44fc2005-08-05 00:44:28 -0400159 int result = 0;
Len Brown087da3b2008-12-30 22:44:33 -0500160 acpi_status status;
161 struct acpi_pci_data *data;
162 struct acpi_pci_data *pdata;
163 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
164 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 if (!device || !device->parent)
Patrick Mocheld550d982006-06-27 00:41:40 -0400167 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Burman Yan36bcbec2006-12-19 12:56:11 -0800169 data = kzalloc(sizeof(struct acpi_pci_data), GFP_KERNEL);
Len Brown087da3b2008-12-30 22:44:33 -0500170 if (!data)
Patrick Mocheld550d982006-06-27 00:41:40 -0400171 return -ENOMEM;
Len Brown087da3b2008-12-30 22:44:33 -0500172
173 status = acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer);
174 if (ACPI_FAILURE(status)) {
175 kfree(data);
176 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Len Brown4be44fc2005-08-05 00:44:28 -0400179 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Binding PCI device [%s]...\n",
Len Brown087da3b2008-12-30 22:44:33 -0500180 (char *)buffer.pointer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /*
183 * Segment & Bus
184 * -------------
185 * These are obtained via the parent device's ACPI-PCI context.
186 */
Len Brown4be44fc2005-08-05 00:44:28 -0400187 status = acpi_get_data(device->parent->handle, acpi_pci_data_handler,
188 (void **)&pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (ACPI_FAILURE(status) || !pdata || !pdata->bus) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400190 ACPI_EXCEPTION((AE_INFO, status,
191 "Invalid ACPI-PCI context for parent device %s",
192 acpi_device_bid(device->parent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 result = -ENODEV;
194 goto end;
195 }
196 data->id.segment = pdata->id.segment;
197 data->id.bus = pdata->bus->number;
198
199 /*
200 * Device & Function
201 * -----------------
202 * These are simply obtained from the device's _ADR method. Note
203 * that a value of zero is valid.
204 */
205 data->id.device = device->pnp.bus_address >> 16;
206 data->id.function = device->pnp.bus_address & 0xFFFF;
207
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700208 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "...to %04x:%02x:%02x.%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400209 data->id.segment, data->id.bus, data->id.device,
210 data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /*
213 * TBD: Support slot devices (e.g. function=0xFFFF).
214 */
215
216 /*
217 * Locate PCI Device
218 * -----------------
219 * Locate matching device in PCI namespace. If it doesn't exist
220 * this typically means that the device isn't currently inserted
221 * (e.g. docking station, port replicator, etc.).
222 */
Kenji Kaneshigedacd2542009-05-26 09:08:03 +0900223 data->dev = pci_get_slot(pdata->bus,
224 PCI_DEVFN(data->id.device, data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!data->dev) {
Len Brown4be44fc2005-08-05 00:44:28 -0400226 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700227 "Device %04x:%02x:%02x.%d not present in PCI namespace\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400228 data->id.segment, data->id.bus,
229 data->id.device, data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 result = -ENODEV;
231 goto end;
232 }
233 if (!data->dev->bus) {
Len Brown64684632006-06-26 23:41:38 -0400234 printk(KERN_ERR PREFIX
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700235 "Device %04x:%02x:%02x.%d has invalid 'bus' field\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400236 data->id.segment, data->id.bus,
Len Brown64684632006-06-26 23:41:38 -0400237 data->id.device, data->id.function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 result = -ENODEV;
239 goto end;
240 }
241
242 /*
243 * PCI Bridge?
244 * -----------
245 * If so, set the 'bus' field and install the 'bind' function to
246 * facilitate callbacks for all of its children.
247 */
248 if (data->dev->subordinate) {
Len Brown4be44fc2005-08-05 00:44:28 -0400249 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700250 "Device %04x:%02x:%02x.%d is a PCI bridge\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400251 data->id.segment, data->id.bus,
252 data->id.device, data->id.function));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 data->bus = data->dev->subordinate;
254 device->ops.bind = acpi_pci_bind;
255 device->ops.unbind = acpi_pci_unbind;
256 }
257
258 /*
259 * Attach ACPI-PCI Context
260 * -----------------------
261 * Thus binding the ACPI and PCI devices.
262 */
263 status = acpi_attach_data(device->handle, acpi_pci_data_handler, data);
264 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400265 ACPI_EXCEPTION((AE_INFO, status,
266 "Unable to attach ACPI-PCI context to device %s",
267 acpi_device_bid(device)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 result = -ENODEV;
269 goto end;
270 }
271
272 /*
273 * PCI Routing Table
274 * -----------------
275 * Evaluate and parse _PRT, if exists. This code is independent of
276 * PCI bridges (above) to allow parsing of _PRT objects within the
277 * scope of non-bridge devices. Note that _PRTs within the scope of
278 * a PCI bridge assume the bridge's subordinate bus number.
279 *
280 * TBD: Can _PRTs exist within the scope of non-bridge PCI devices?
281 */
282 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
283 if (ACPI_SUCCESS(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400284 if (data->bus) /* PCI-PCI bridge */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 acpi_pci_irq_add_prt(device->handle, data->id.segment,
Len Brown4be44fc2005-08-05 00:44:28 -0400286 data->bus->number);
287 else /* non-bridge PCI device */
288 acpi_pci_irq_add_prt(device->handle, data->id.segment,
289 data->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
Len Brown4be44fc2005-08-05 00:44:28 -0400292 end:
Len Brown087da3b2008-12-30 22:44:33 -0500293 kfree(buffer.pointer);
Kenji Kaneshigedacd2542009-05-26 09:08:03 +0900294 if (result) {
295 pci_dev_put(data->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 kfree(data);
Kenji Kaneshigedacd2542009-05-26 09:08:03 +0900297 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400298 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Len Brown4be44fc2005-08-05 00:44:28 -0400301int
302acpi_pci_bind_root(struct acpi_device *device,
303 struct acpi_pci_id *id, struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Len Brown4be44fc2005-08-05 00:44:28 -0400305 int result = 0;
Len Brown087da3b2008-12-30 22:44:33 -0500306 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400307 struct acpi_pci_data *data = NULL;
Len Brown087da3b2008-12-30 22:44:33 -0500308 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Len Brown4be44fc2005-08-05 00:44:28 -0400310 if (!device || !id || !bus) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
Burman Yan36bcbec2006-12-19 12:56:11 -0800314 data = kzalloc(sizeof(struct acpi_pci_data), GFP_KERNEL);
Len Brown087da3b2008-12-30 22:44:33 -0500315 if (!data)
Patrick Mocheld550d982006-06-27 00:41:40 -0400316 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 data->id = *id;
319 data->bus = bus;
320 device->ops.bind = acpi_pci_bind;
321 device->ops.unbind = acpi_pci_unbind;
322
Len Brown087da3b2008-12-30 22:44:33 -0500323 status = acpi_get_name(device->handle, ACPI_FULL_PATHNAME, &buffer);
324 if (ACPI_FAILURE(status)) {
325 kfree (data);
326 return -ENODEV;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Binding PCI root bridge [%s] to "
Len Brown087da3b2008-12-30 22:44:33 -0500330 "%04x:%02x\n", (char *)buffer.pointer,
331 id->segment, id->bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 status = acpi_attach_data(device->handle, acpi_pci_data_handler, data);
334 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400335 ACPI_EXCEPTION((AE_INFO, status,
336 "Unable to attach ACPI-PCI context to device %s",
Len Brown087da3b2008-12-30 22:44:33 -0500337 (char *)buffer.pointer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 result = -ENODEV;
339 goto end;
340 }
341
Len Brown4be44fc2005-08-05 00:44:28 -0400342 end:
Len Brown087da3b2008-12-30 22:44:33 -0500343 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (result != 0)
345 kfree(data);
346
Patrick Mocheld550d982006-06-27 00:41:40 -0400347 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}